mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-14 17:43:29 +01:00
Switch to chrome color picker
This commit is contained in:
parent
db8fc64eb9
commit
3d51095e6e
2 changed files with 7 additions and 8 deletions
|
@ -30,6 +30,7 @@
|
|||
"react": "^15.4.0",
|
||||
"react-addons-pure-render-mixin": "^15.4.0",
|
||||
"react-collapse": "^2.3.3",
|
||||
"react-color": "^2.10.0",
|
||||
"react-dom": "^15.4.0",
|
||||
"react-file-reader-input": "^1.1.0",
|
||||
"react-height": "^2.1.1",
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
import React from 'react'
|
||||
import inputStyle from './input.js'
|
||||
import ColorPicker from 'react-colorpickr'
|
||||
import 'react-colorpickr/dist/colorpickr.css'
|
||||
import { getColor } from 'react-colorpickr/dist/colorfunc'
|
||||
import { ChromePicker } from 'react-color';
|
||||
|
||||
function formatColor(color) {
|
||||
if(color.a !== 1) {
|
||||
return `rgba(${color.r}, ${color.g}, ${color.b}, ${color.a})`
|
||||
}
|
||||
return `rgb(${color.r}, ${color.g}, ${color.b})`
|
||||
const rgb = color.rgb
|
||||
return `rgba(${rgb.r}, ${rgb.g}, ${rgb.b}, ${rgb.a})`
|
||||
}
|
||||
|
||||
/*** Number fields with support for min, max and units and documentation*/
|
||||
|
@ -26,8 +24,8 @@ static propTypes = {
|
|||
position: 'absolute',
|
||||
left: 200
|
||||
}}>
|
||||
<ColorPicker
|
||||
value={this.props.value}
|
||||
<ChromePicker
|
||||
color={getColor(this.props.value)}
|
||||
onChange={c => this.props.onChange(formatColor(c))}
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue