mirror of https://github.com/sgoudham/carbon.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.0 KiB
JavaScript
80 lines
2.0 KiB
JavaScript
import React from 'react'
|
|
import enhanceWithClickOutside from 'react-click-outside'
|
|
import { BlockPicker } from 'react-color'
|
|
|
|
class ColorPicker extends React.Component {
|
|
constructor() {
|
|
super()
|
|
this.state = { isVisible: false }
|
|
this.toggle = this.toggle.bind(this)
|
|
this.handlePickColor = this.handlePickColor.bind(this)
|
|
}
|
|
|
|
toggle() {
|
|
this.setState({ isVisible: !this.state.isVisible })
|
|
}
|
|
|
|
handleClickOutside() {
|
|
this.setState({ isVisible: false })
|
|
}
|
|
|
|
handlePickColor(color) {
|
|
this.setState({ isVisible: false })
|
|
this.props.onChange(color.hex)
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="colorpicker-container">
|
|
<div className="colorpicker-display">
|
|
<div className="colorpicker-label">
|
|
<span>BG</span>
|
|
</div>
|
|
<div className="bg-color" style={{background: this.props.bg}} onClick={this.toggle}></div>
|
|
</div>
|
|
<div className="colorpicker-picker" hidden={!this.state.isVisible}>
|
|
<BlockPicker color={this.props.bg} onChangeComplete={this.handlePickColor} />
|
|
</div>
|
|
<style jsx>{`
|
|
.colorpicker-container {
|
|
height: 100%;
|
|
}
|
|
|
|
.colorpicker-display {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 72px;
|
|
border: 0.5px solid #000;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.colorpicker-label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
user-select: none;
|
|
cursor: default;
|
|
height: 100%;
|
|
width: 36px;
|
|
}
|
|
|
|
.bg-color {
|
|
cursor: pointer;
|
|
height: 100%;
|
|
width: 36px;
|
|
border-radius: 0px 2px 2px 0px;
|
|
}
|
|
|
|
.colorpicker-picker {
|
|
position: absolute;
|
|
margin-left: -32px;
|
|
margin-top: 9px;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default enhanceWithClickOutside(ColorPicker)
|