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
dbba523d
Commit
dbba523d
authored
Dec 12, 2018
by
Peter Holmberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mixing color when
parent
4dbfcde7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
16 deletions
+23
-16
public/app/plugins/panel/gauge/Thresholds.tsx
+23
-16
No files found.
public/app/plugins/panel/gauge/Thresholds.tsx
View file @
dbba523d
import
React
,
{
PureComponent
}
from
'react'
;
import
classNames
from
'classnames/bind'
;
import
tinycolor
from
'tinycolor2'
;
import
{
ColorPicker
}
from
'app/core/components/colorpicker/ColorPicker'
;
import
{
OptionModuleProps
}
from
'./module'
;
import
{
Threshold
}
from
'app/types'
;
...
...
@@ -21,7 +22,7 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
this
.
state
=
{
thresholds
:
this
.
props
.
options
.
thresholds
||
[
{
index
:
0
,
label
:
'Min'
,
value
:
0
,
canRemove
:
false
,
color
:
BasicGaugeColor
.
Green
},
{
index
:
1
,
label
:
'Max'
,
value
:
100
,
canRemove
:
false
},
{
index
:
1
,
label
:
'Max'
,
value
:
100
,
canRemove
:
false
,
color
:
BasicGaugeColor
.
Red
},
],
};
}
...
...
@@ -39,12 +40,13 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
// Setting value to a value between the new threshold.
const
value
=
newThresholds
[
index
].
value
-
(
newThresholds
[
index
].
value
-
newThresholds
[
index
-
1
].
value
)
/
2
;
const
color
=
tinycolor
.
mix
(
thresholds
[
index
-
1
].
color
,
thresholds
[
index
].
color
,
50
).
toRgbString
();
this
.
setState
(
{
thresholds
:
this
.
sortThresholds
([
...
newThresholds
,
{
index
:
index
,
label
:
''
,
value
:
value
,
canRemove
:
true
,
color
:
BasicGaugeColor
.
Orange
},
{
index
:
index
,
label
:
''
,
value
:
value
,
canRemove
:
true
,
color
:
color
},
]),
},
()
=>
this
.
updateGauge
()
...
...
@@ -127,7 +129,6 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
const
{
thresholds
}
=
this
.
state
;
const
min
=
thresholds
[
0
];
const
max
=
thresholds
[
1
];
return
[
<
div
className=
"threshold-row threshold-row-min"
key=
"min"
>
...
...
@@ -154,18 +155,6 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
<
div
className=
"threshold-row-add-label"
>
Add new threshold by clicking the line.
</
div
>
</
div
>
</
div
>,
<
div
className=
"threshold-row threshold-row-max"
key=
"max"
>
<
div
className=
"threshold-row-inner"
>
<
div
className=
"threshold-row-color"
/>
<
input
className=
"threshold-row-input"
onBlur=
{
this
.
onBlur
}
onChange=
{
event
=>
this
.
onChangeThresholdValue
(
event
,
max
)
}
value=
{
max
.
value
}
/>
<
div
className=
"threshold-row-label"
>
{
max
.
label
}
</
div
>
</
div
>
</
div
>,
];
}
...
...
@@ -173,6 +162,10 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
const
{
thresholds
}
=
this
.
state
;
return
thresholds
.
map
((
threshold
,
index
)
=>
{
if
(
index
===
thresholds
.
length
-
1
)
{
return
null
;
}
const
rowStyle
=
classNames
({
'threshold-row'
:
true
,
'threshold-row-min'
:
index
===
0
,
...
...
@@ -183,7 +176,8 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
<
div
className=
{
rowStyle
}
key=
{
`${threshold.index}-${index}`
}
>
<
div
className=
"threshold-row-inner"
>
<
div
className=
"threshold-row-color"
>
{
threshold
.
color
&&
(
{
threshold
.
color
&&
index
!==
thresholds
.
length
-
1
&&
(
<
div
className=
"threshold-row-color-inner"
>
<
ColorPicker
color=
{
threshold
.
color
}
...
...
@@ -288,6 +282,7 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
render
()
{
const
{
thresholds
}
=
this
.
state
;
const
max
=
thresholds
[
thresholds
.
length
-
1
];
return
(
<
div
className=
"section gf-form-group"
>
...
...
@@ -296,6 +291,18 @@ export default class Thresholds extends PureComponent<OptionModuleProps, State>
<
div
className=
"color-indicators"
>
{
this
.
renderIndicator
()
}
</
div
>
<
div
className=
"threshold-rows"
>
{
thresholds
.
length
>
2
?
this
.
renderThresholds
()
:
this
.
renderNoThresholds
()
}
<
div
className=
"threshold-row threshold-row-max"
>
<
div
className=
"threshold-row-inner"
>
<
div
className=
"threshold-row-color"
/>
<
input
className=
"threshold-row-input"
onBlur=
{
this
.
onBlur
}
onChange=
{
event
=>
this
.
onChangeThresholdValue
(
event
,
max
)
}
value=
{
max
.
value
}
/>
<
div
className=
"threshold-row-label"
>
{
max
.
label
}
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
...
...
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