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
9fd9bba1
Commit
9fd9bba1
authored
Jan 22, 2019
by
Dominik Prokop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented new spectrum palette
parent
ba4b774c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
239 additions
and
70 deletions
+239
-70
packages/grafana-ui/src/components/ColorPicker/ColorInput.tsx
+94
-0
packages/grafana-ui/src/components/ColorPicker/ColorPicker.tsx
+1
-3
packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx
+3
-4
packages/grafana-ui/src/components/ColorPicker/SpectrumPalette.story.tsx
+57
-0
packages/grafana-ui/src/components/ColorPicker/SpectrumPalette.tsx
+84
-63
No files found.
packages/grafana-ui/src/components/ColorPicker/ColorInput.tsx
0 → 100644
View file @
9fd9bba1
import
React
from
'react'
;
import
{
ColorPickerProps
}
from
'./ColorPicker'
;
import
tinycolor
from
'tinycolor2'
;
import
{
debounce
}
from
'lodash'
;
interface
ColorInputState
{
previousColor
:
string
;
value
:
string
;
}
interface
ColorInputProps
extends
ColorPickerProps
{
style
?:
React
.
CSSProperties
;
}
class
ColorInput
extends
React
.
PureComponent
<
ColorInputProps
,
ColorInputState
>
{
constructor
(
props
:
ColorInputProps
)
{
super
(
props
);
this
.
state
=
{
previousColor
:
props
.
color
,
value
:
props
.
color
,
};
this
.
updateColor
=
debounce
(
this
.
updateColor
,
100
);
}
static
getDerivedStateFromProps
(
props
:
ColorPickerProps
,
state
:
ColorInputState
)
{
const
newColor
=
tinycolor
(
props
.
color
);
if
(
newColor
.
isValid
()
&&
props
.
color
!==
state
.
previousColor
)
{
return
{
...
state
,
previousColor
:
props
.
color
,
value
:
newColor
.
toString
(),
};
}
return
state
;
}
updateColor
=
(
color
:
string
)
=>
{
this
.
props
.
onChange
(
color
);
};
handleChange
=
(
event
:
React
.
SyntheticEvent
<
HTMLInputElement
>
)
=>
{
const
newColor
=
tinycolor
(
event
.
currentTarget
.
value
);
this
.
setState
({
value
:
event
.
currentTarget
.
value
,
});
if
(
newColor
.
isValid
())
{
this
.
updateColor
(
newColor
.
toString
());
}
};
handleBlur
=
()
=>
{
const
newColor
=
tinycolor
(
this
.
state
.
value
);
if
(
!
newColor
.
isValid
())
{
this
.
setState
({
value
:
this
.
props
.
color
,
});
}
};
render
()
{
const
{
value
}
=
this
.
state
;
return
(
<
div
style=
{
{
display
:
'flex'
,
...
this
.
props
.
style
,
}
}
>
<
div
style=
{
{
background
:
this
.
props
.
color
,
width
:
'35px'
,
height
:
'35px'
,
flexGrow
:
0
,
borderRadius
:
'3px 0 0 3px'
,
}
}
/>
<
div
style=
{
{
flexGrow
:
1
,
}
}
>
<
input
className=
"gf-form-input"
value=
{
value
}
onChange=
{
this
.
handleChange
}
onBlur=
{
this
.
handleBlur
}
/>
</
div
>
</
div
>
);
}
}
export
default
ColorInput
;
packages/grafana-ui/src/components/ColorPicker/ColorPicker.tsx
View file @
9fd9bba1
...
@@ -29,10 +29,9 @@ export const colorPickerFactory = <T extends ColorPickerProps>(
...
@@ -29,10 +29,9 @@ export const colorPickerFactory = <T extends ColorPickerProps>(
if
(
enableNamedColors
)
{
if
(
enableNamedColors
)
{
return
onChange
(
color
);
return
onChange
(
color
);
}
}
return
onChange
(
getColorFromHexRgbOrName
(
color
));
return
onChange
(
getColorFromHexRgbOrName
(
color
));
};
};
render
()
{
render
()
{
const
popoverElement
=
React
.
createElement
(
popover
,
{
const
popoverElement
=
React
.
createElement
(
popover
,
{
...
this
.
props
,
...
this
.
props
,
...
@@ -40,7 +39,6 @@ export const colorPickerFactory = <T extends ColorPickerProps>(
...
@@ -40,7 +39,6 @@ export const colorPickerFactory = <T extends ColorPickerProps>(
});
});
const
{
theme
,
withArrow
,
children
}
=
this
.
props
;
const
{
theme
,
withArrow
,
children
}
=
this
.
props
;
// TODO: hoist that this shit
const
renderArrow
:
RenderPopperArrowFn
=
({
arrowProps
,
placement
})
=>
{
const
renderArrow
:
RenderPopperArrowFn
=
({
arrowProps
,
placement
})
=>
{
return
(
return
(
<
div
<
div
...
...
packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx
View file @
9fd9bba1
import
React
from
'react'
;
import
React
from
'react'
;
import
NamedColorsPicker
from
'./NamedColorsPalette'
;
import
NamedColorsPicker
from
'./NamedColorsPalette'
;
import
{
getColorName
}
from
'../..//utils/colorsPalette'
;
import
{
getColorName
}
from
'../..//utils/colorsPalette'
;
import
{
SpectrumPalette
}
from
'./SpectrumPalette'
;
import
{
ColorPickerProps
}
from
'./ColorPicker'
;
import
{
ColorPickerProps
}
from
'./ColorPicker'
;
import
{
GrafanaTheme
,
Themeable
}
from
'../../types'
;
import
{
GrafanaTheme
,
Themeable
}
from
'../../types'
;
import
{
PopperContentProps
}
from
'../Tooltip/PopperController'
;
import
{
PopperContentProps
}
from
'../Tooltip/PopperController'
;
import
SpectrumPalette
from
'./SpectrumPalette'
;
export
interface
Props
extends
ColorPickerProps
,
Themeable
,
PopperContentProps
{}
export
interface
Props
extends
ColorPickerProps
,
Themeable
,
PopperContentProps
{}
...
@@ -24,7 +23,7 @@ export class ColorPickerPopover extends React.Component<Props, State> {
...
@@ -24,7 +23,7 @@ export class ColorPickerPopover extends React.Component<Props, State> {
}
}
handleSpectrumColorSelect
=
(
color
:
any
)
=>
{
handleSpectrumColorSelect
=
(
color
:
any
)
=>
{
this
.
props
.
onChange
(
color
.
toRgbString
()
);
this
.
props
.
onChange
(
color
);
};
};
renderPicker
=
()
=>
{
renderPicker
=
()
=>
{
...
@@ -32,7 +31,7 @@ export class ColorPickerPopover extends React.Component<Props, State> {
...
@@ -32,7 +31,7 @@ export class ColorPickerPopover extends React.Component<Props, State> {
const
{
color
,
onChange
,
theme
}
=
this
.
props
;
const
{
color
,
onChange
,
theme
}
=
this
.
props
;
return
activePicker
===
'spectrum'
?
(
return
activePicker
===
'spectrum'
?
(
<
SpectrumPalette
color=
{
color
}
onC
olorSelect=
{
this
.
handleSpectrumColorSelect
}
options=
{
{}
}
/>
<
SpectrumPalette
color=
{
color
}
onC
hange=
{
this
.
handleSpectrumColorSelect
}
/>
)
:
(
)
:
(
<
NamedColorsPicker
color=
{
getColorName
(
color
)
}
onChange=
{
onChange
}
theme=
{
theme
}
/>
<
NamedColorsPicker
color=
{
getColorName
(
color
)
}
onChange=
{
onChange
}
theme=
{
theme
}
/>
);
);
...
...
packages/grafana-ui/src/components/ColorPicker/SpectrumPalette.story.tsx
0 → 100644
View file @
9fd9bba1
import
React
,
{
FunctionComponent
}
from
'react'
;
import
{
storiesOf
}
from
'@storybook/react'
;
import
SpectrumPalette
from
'./SpectrumPalette'
;
const
CenteredStory
:
FunctionComponent
<
{}
>
=
({
children
})
=>
{
return
(
<
div
style=
{
{
height
:
'100vh '
,
display
:
'flex'
,
alignItems
:
'center'
,
justifyContent
:
'center'
,
}
}
>
{
children
}
</
div
>
);
};
interface
StateHolderProps
<
T
>
{
initialState
:
T
;
children
:
(
currentState
:
T
,
updateState
:
(
nextState
:
T
)
=>
void
)
=>
JSX
.
Element
;
}
export
class
UseState
<
T
>
extends
React
.
Component
<
StateHolderProps
<
T
>
,
{
value
:
T
}
>
{
constructor
(
props
:
StateHolderProps
<
T
>
)
{
super
(
props
);
this
.
state
=
{
value
:
props
.
initialState
,
};
}
handleStateUpdate
=
(
nextState
:
T
)
=>
{
this
.
setState
({
value
:
nextState
});
};
render
()
{
return
this
.
props
.
children
(
this
.
state
.
value
,
this
.
handleStateUpdate
);
}
}
storiesOf
(
'UI/SpectrumPalette'
,
module
)
.
addDecorator
(
story
=>
<
CenteredStory
>
{
story
()
}
</
CenteredStory
>)
.
add
(
'Named colors swatch - support for named colors'
,
()
=>
{
return
(
<
UseState
initialState=
"red"
>
{
(
selectedColor
,
updateSelectedColor
)
=>
{
return
(
<
SpectrumPalette
color=
{
selectedColor
}
onChange=
{
updateSelectedColor
}
/>
);
}
}
</
UseState
>
);
});
packages/grafana-ui/src/components/ColorPicker/SpectrumPalette.tsx
View file @
9fd9bba1
import
React
from
'react'
;
import
React
from
'react'
;
import
_
from
'lodash'
;
import
{
CustomPicker
,
ColorResult
}
from
'react-color'
;
import
$
from
'jquery'
;
import
'../../vendor/spectrum'
;
export
interface
Props
{
import
{
Saturation
,
Hue
,
Alpha
}
from
'react-color/lib/components/common'
;
import
{
getColorFromHexRgbOrName
}
from
'../../utils/colorsPalette'
;
import
tinycolor
from
'tinycolor2'
;
import
ColorInput
from
'./ColorInput'
;
export
interface
SpectrumPaletteProps
{
color
:
string
;
color
:
string
;
options
:
object
;
onChange
:
(
color
:
string
)
=>
void
;
onColorSelect
:
(
color
:
string
)
=>
void
;
}
}
export
class
SpectrumPalette
extends
React
.
Component
<
Props
,
any
>
{
// @ts-ignore
elem
:
any
;
const
SpectrumPicker
=
CustomPicker
(({
rgb
,
hsl
,
onChange
,
renderers
})
=>
{
isMoving
:
boolean
;
return
(
<
div
constructor
(
props
:
Props
)
{
style=
{
{
super
(
props
);
display
:
'flex'
,
this
.
onSpectrumMove
=
this
.
onSpectrumMove
.
bind
(
this
);
width
:
'100%'
,
this
.
setComponentElem
=
this
.
setComponentElem
.
bind
(
this
);
flexDirection
:
'column'
,
}
}
}
>
setComponentElem
(
elem
:
any
)
{
<
div
this
.
elem
=
$
(
elem
);
style=
{
{
}
display
:
'flex'
,
}
}
>
<
div
style=
{
{
display
:
'flex'
,
flexGrow
:
1
,
flexDirection
:
'column'
,
}
}
>
<
div
style=
{
{
position
:
'relative'
,
height
:
'100px'
,
width
:
'100%'
,
}
}
>
{
/*
// @ts-ignore */
}
<
Saturation
onChange=
{
onChange
}
hsl=
{
hsl
}
hsv=
{
tinycolor
(
hsl
).
toHsv
()
}
/>
</
div
>
<
div
style=
{
{
width
:
'100%'
,
height
:
'16px'
,
marginTop
:
'16px'
,
position
:
'relative'
,
background
:
'white'
,
}
}
>
{
/*
// @ts-ignore */
}
<
Alpha
rgb=
{
rgb
}
hsl=
{
hsl
}
a=
{
rgb
.
a
}
onChange=
{
onChange
}
/>
</
div
>
</
div
>
onSpectrumMove
(
color
:
any
)
{
<
div
this
.
isMoving
=
true
;
style=
{
{
this
.
props
.
onColorSelect
(
color
);
position
:
'relative'
,
}
width
:
'16px'
,
height
:
'100px'
,
componentDidMount
()
{
marginLeft
:
'16px'
,
const
spectrumOptions
=
_
.
assignIn
(
}
}
{
>
flat
:
true
,
{
/*
showAlpha
:
true
,
// @ts-ignore */
}
showButtons
:
false
,
<
Hue
onChange=
{
onChange
}
hsl=
{
hsl
}
direction=
"vertical"
/>
color
:
this
.
props
.
color
,
</
div
>
appendTo
:
this
.
elem
,
</
div
>
move
:
this
.
onSpectrumMove
,
</
div
>
},
this
.
props
.
options
);
);
});
this
.
elem
.
spectrum
(
spectrumOptions
);
const
SpectrumPalette
:
React
.
FunctionComponent
<
SpectrumPaletteProps
>
=
({
color
,
onChange
})
=>
{
this
.
elem
.
spectrum
(
'show'
);
return
(
this
.
elem
.
spectrum
(
'set'
,
this
.
props
.
color
);
<
div
>
}
<
SpectrumPicker
color=
{
tinycolor
(
getColorFromHexRgbOrName
(
color
)).
toRgb
()
}
componentWillUpdate
(
nextProps
:
any
)
{
onChange=
{
(
a
:
ColorResult
)
=>
{
// If user move pointer over spectrum field this produce 'move' event and component
onChange
(
tinycolor
(
a
.
rgb
).
toString
());
// may update props.color. We don't want to update spectrum color in this case, so we can use
}
}
// isMoving flag for tracking moving state. Flag should be cleared in componentDidUpdate() which
/>
// is called after updating occurs (when user finished moving).
<
ColorInput
color=
{
color
}
onChange=
{
onChange
}
style=
{
{
marginTop
:
'16px'
}
}
/>
if
(
!
this
.
isMoving
)
{
</
div
>
this
.
elem
.
spectrum
(
'set'
,
nextProps
.
color
);
);
}
};
}
componentDidUpdate
()
{
if
(
this
.
isMoving
)
{
this
.
isMoving
=
false
;
}
}
componentWillUnmount
()
{
this
.
elem
.
spectrum
(
'destroy'
);
}
render
()
{
export
default
SpectrumPalette
;
return
<
div
className=
"spectrum-container"
ref=
{
this
.
setComponentElem
}
/>;
}
}
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