Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
d2b71cff
Commit
d2b71cff
authored
Jan 11, 2019
by
Hugo Häggmark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reverted move of defaults for GaugePanelOptions
parent
5ceedc4a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
60 additions
and
67 deletions
+60
-67
packages/grafana-ui/src/components/ThresholdsEditor/ThresholdsEditor.test.tsx
+5
-28
packages/grafana-ui/src/components/ThresholdsEditor/ThresholdsEditor.tsx
+27
-11
packages/grafana-ui/src/types/gauge.ts
+1
-18
public/app/plugins/panel/gauge/GaugePanelOptions.tsx
+22
-3
public/app/plugins/panel/gauge/ValueMappings.test.tsx
+3
-3
public/app/plugins/panel/gauge/module.tsx
+2
-4
No files found.
packages/grafana-ui/src/components/ThresholdsEditor/ThresholdsEditor.test.tsx
View file @
d2b71cff
import
React
from
'react'
;
import
{
shallow
}
from
'enzyme'
;
import
{
ThresholdsEditor
}
from
'./ThresholdsEditor'
;
import
{
BasicGaugeColor
,
PanelOptionsProps
,
GaugeOptions
}
from
'../../types'
;
const
defaultProps
=
{
options
:
{
baseColor
:
BasicGaugeColor
.
Green
,
minValue
:
0
,
maxValue
:
100
,
prefix
:
''
,
showThresholdMarkers
:
true
,
showThresholdLabels
:
false
,
suffix
:
''
,
decimals
:
0
,
stat
:
'avg'
,
unit
:
'none'
,
mappings
:
[],
thresholds
:
[],
},
};
import
{
ThresholdsEditor
,
Props
}
from
'./ThresholdsEditor'
;
import
{
BasicGaugeColor
}
from
'../../types'
;
const
setup
=
(
propOverrides
?:
object
)
=>
{
const
props
:
P
anelOptionsProps
<
GaugeOptions
>
=
{
const
props
:
P
rops
=
{
onChange
:
jest
.
fn
(),
options
:
{
...
defaultProps
.
options
,
thresholds
:
[],
},
thresholds
:
[],
};
Object
.
assign
(
props
,
propOverrides
);
...
...
@@ -46,10 +26,7 @@ describe('Add threshold', () => {
it
(
'should add another threshold above a first'
,
()
=>
{
const
instance
=
setup
({
options
:
{
...
defaultProps
.
options
,
thresholds
:
[{
index
:
0
,
value
:
50
,
color
:
'rgb(127, 115, 64)'
}],
},
thresholds
:
[{
index
:
0
,
value
:
50
,
color
:
'rgb(127, 115, 64)'
}],
});
instance
.
onAddThreshold
(
1
);
...
...
packages/grafana-ui/src/components/ThresholdsEditor/ThresholdsEditor.tsx
View file @
d2b71cff
import
React
,
{
PureComponent
}
from
'react'
;
import
tinycolor
,
{
ColorInput
}
from
'tinycolor2'
;
import
{
Threshold
,
PanelOptionsProps
,
GaugeOptions
,
BasicGaugeColor
}
from
'../../types'
;
import
{
Threshold
,
BasicGaugeColor
}
from
'../../types'
;
import
{
ColorPicker
}
from
'../ColorPicker/ColorPicker'
;
export
interface
Props
{
thresholds
:
Threshold
[];
onChange
:
(
thresholds
:
Threshold
[])
=>
void
;
}
interface
State
{
thresholds
:
Threshold
[];
baseColor
:
string
;
}
export
class
ThresholdsEditor
extends
PureComponent
<
P
anelOptionsProps
<
GaugeOptions
>
,
State
>
{
constructor
(
props
:
P
anelOptionsProps
<
GaugeOptions
>
)
{
export
class
ThresholdsEditor
extends
PureComponent
<
P
rops
,
State
>
{
constructor
(
props
:
P
rops
)
{
super
(
props
);
this
.
state
=
{
thresholds
:
props
.
options
.
thresholds
,
baseColor
:
props
.
options
.
baseColor
};
this
.
state
=
{
thresholds
:
props
.
thresholds
,
baseColor
:
BasicGaugeColor
.
Green
};
}
onAddThreshold
=
(
index
:
number
)
=>
{
const
{
maxValue
,
minValue
}
=
this
.
props
.
options
;
const
maxValue
=
100
;
// hardcoded for now before we add the base threshold
const
minValue
=
0
;
// hardcoded for now before we add the base threshold
const
{
thresholds
}
=
this
.
state
;
const
newThresholds
=
thresholds
.
map
(
threshold
=>
{
if
(
threshold
.
index
>=
index
)
{
threshold
=
{
...
threshold
,
index
:
threshold
.
index
+
1
};
threshold
=
{
...
threshold
,
index
:
threshold
.
index
+
1
,
};
}
return
threshold
;
...
...
@@ -49,7 +58,14 @@ export class ThresholdsEditor extends PureComponent<PanelOptionsProps<GaugeOptio
this
.
setState
(
{
thresholds
:
this
.
sortThresholds
([...
newThresholds
,
{
index
,
value
:
value
as
number
,
color
}]),
thresholds
:
this
.
sortThresholds
([
...
newThresholds
,
{
index
,
value
:
value
as
number
,
color
,
},
]),
},
()
=>
this
.
updateGauge
()
);
...
...
@@ -95,7 +111,7 @@ export class ThresholdsEditor extends PureComponent<PanelOptionsProps<GaugeOptio
);
};
onChangeBaseColor
=
(
color
:
string
)
=>
this
.
props
.
onChange
(
{
...
this
.
props
.
options
,
baseColor
:
color
}
);
onChangeBaseColor
=
(
color
:
string
)
=>
this
.
props
.
onChange
(
this
.
state
.
thresholds
);
onBlur
=
()
=>
{
this
.
setState
(
prevState
=>
({
thresholds
:
this
.
sortThresholds
(
prevState
.
thresholds
)
}));
...
...
@@ -103,7 +119,7 @@ export class ThresholdsEditor extends PureComponent<PanelOptionsProps<GaugeOptio
};
updateGauge
=
()
=>
{
this
.
props
.
onChange
(
{
...
this
.
props
.
options
,
thresholds
:
this
.
state
.
thresholds
}
);
this
.
props
.
onChange
(
this
.
state
.
thresholds
);
};
sortThresholds
=
(
thresholds
:
Threshold
[])
=>
{
...
...
@@ -163,14 +179,14 @@ export class ThresholdsEditor extends PureComponent<PanelOptionsProps<GaugeOptio
<
div
className=
"indicator-section"
style=
{
{
height
:
'100%'
}
}
>
<
div
onClick=
{
()
=>
this
.
onAddThreshold
(
0
)
}
style=
{
{
height
:
'100%'
,
backgroundColor
:
this
.
props
.
options
.
baseColor
}
}
style=
{
{
height
:
'100%'
,
backgroundColor
:
BasicGaugeColor
.
Green
}
}
/>
</
div
>
);
}
renderBase
()
{
const
{
baseColor
}
=
this
.
props
.
options
;
const
baseColor
=
BasicGaugeColor
.
Green
;
return
(
<
div
className=
"threshold-row threshold-row-base"
>
...
...
packages/grafana-ui/src/types/gauge.ts
View file @
d2b71cff
import
{
BasicGaugeColor
,
RangeMap
,
Threshold
,
ValueMap
}
from
'./panel'
;
import
{
RangeMap
,
Threshold
,
ValueMap
}
from
'./panel'
;
export
interface
GaugeOptions
{
baseColor
:
string
;
...
...
@@ -14,20 +14,3 @@ export interface GaugeOptions {
thresholds
:
Threshold
[];
unit
:
string
;
}
export
const
GaugePanelOptionsDefaultProps
=
{
options
:
{
baseColor
:
BasicGaugeColor
.
Green
,
minValue
:
0
,
maxValue
:
100
,
prefix
:
''
,
showThresholdMarkers
:
true
,
showThresholdLabels
:
false
,
suffix
:
''
,
decimals
:
0
,
stat
:
'avg'
,
unit
:
'none'
,
mappings
:
[],
thresholds
:
[],
},
};
public/app/plugins/panel/gauge/GaugePanelOptions.tsx
View file @
d2b71cff
import
React
,
{
PureComponent
}
from
'react'
;
import
{
GaugeOptions
,
GaugePanelOptionsDefaultProps
,
PanelOptionsProps
,
ThresholdsEditor
}
from
'@grafana/ui'
;
import
{
BasicGaugeColor
,
GaugeOptions
,
PanelOptionsProps
,
ThresholdsEditor
,
Threshold
}
from
'@grafana/ui'
;
import
ValueOptions
from
'app/plugins/panel/gauge/ValueOptions'
;
import
ValueMappings
from
'app/plugins/panel/gauge/ValueMappings'
;
import
GaugeOptionsEditor
from
'./GaugeOptionsEditor'
;
export
const
defaultProps
=
{
options
:
{
baseColor
:
BasicGaugeColor
.
Green
,
minValue
:
0
,
maxValue
:
100
,
prefix
:
''
,
showThresholdMarkers
:
true
,
showThresholdLabels
:
false
,
suffix
:
''
,
decimals
:
0
,
stat
:
'avg'
,
unit
:
'none'
,
mappings
:
[],
thresholds
:
[],
},
};
export
default
class
GaugePanelOptions
extends
PureComponent
<
PanelOptionsProps
<
GaugeOptions
>>
{
static
defaultProps
=
GaugePanelOptionsDefaultProps
;
static
defaultProps
=
defaultProps
;
onThresholdsChanged
=
(
thresholds
:
Threshold
[])
=>
this
.
props
.
onChange
({
...
this
.
props
.
options
,
thresholds
});
render
()
{
const
{
onChange
,
options
}
=
this
.
props
;
...
...
@@ -15,7 +34,7 @@ export default class GaugePanelOptions extends PureComponent<PanelOptionsProps<G
<
div
className=
"form-section"
>
<
ValueOptions
onChange=
{
onChange
}
options=
{
options
}
/>
<
GaugeOptionsEditor
onChange=
{
onChange
}
options=
{
options
}
/>
<
ThresholdsEditor
onChange=
{
onChange
}
options=
{
option
s
}
/>
<
ThresholdsEditor
onChange=
{
this
.
onThresholdsChanged
}
thresholds=
{
options
.
threshold
s
}
/>
</
div
>
<
div
className=
"form-section"
>
...
...
public/app/plugins/panel/gauge/ValueMappings.test.tsx
View file @
d2b71cff
import
React
from
'react'
;
import
{
shallow
}
from
'enzyme'
;
import
{
GaugeOptions
,
MappingType
,
PanelOptionsProps
}
from
'@grafana/ui'
;
import
{
GaugePanelOptionsDefaultProps
}
from
'@grafana/ui/src/types/gauge
'
;
import
{
defaultProps
}
from
'app/plugins/panel/gauge/GaugePanelOptions
'
;
import
ValueMappings
from
'./ValueMappings'
;
...
...
@@ -9,7 +9,7 @@ const setup = (propOverrides?: object) => {
const
props
:
PanelOptionsProps
<
GaugeOptions
>
=
{
onChange
:
jest
.
fn
(),
options
:
{
...
GaugePanelOptionsD
efaultProps
.
options
,
...
d
efaultProps
.
options
,
mappings
:
[
{
id
:
1
,
operator
:
''
,
type
:
MappingType
.
ValueToText
,
value
:
'20'
,
text
:
'Ok'
},
{
id
:
2
,
operator
:
''
,
type
:
MappingType
.
RangeToText
,
from
:
'21'
,
to
:
'30'
,
text
:
'Meh'
},
...
...
@@ -67,7 +67,7 @@ describe('Next id to add', () => {
});
it
(
'should default to 1'
,
()
=>
{
const
{
instance
}
=
setup
({
options
:
{
...
GaugePanelOptionsD
efaultProps
.
options
}
});
const
{
instance
}
=
setup
({
options
:
{
...
d
efaultProps
.
options
}
});
expect
(
instance
.
state
.
nextIdToAdd
).
toEqual
(
1
);
});
...
...
public/app/plugins/panel/gauge/module.tsx
View file @
d2b71cff
import
{
GaugePanelOptionsDefaultProps
}
from
'@grafana/ui'
;
import
GaugePanelOptions
from
'./GaugePanelOptions'
;
import
GaugePanelOptions
,
{
defaultProps
}
from
'./GaugePanelOptions'
;
import
{
GaugePanel
}
from
'./GaugePanel'
;
export
{
GaugePanel
as
Panel
,
GaugePanelOptions
as
PanelOptions
,
GaugePanelOptionsD
efaultProps
as
PanelDefaults
};
export
{
GaugePanel
as
Panel
,
GaugePanelOptions
as
PanelOptions
,
d
efaultProps
as
PanelDefaults
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment