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.
carbon/components/Colorpicker.js

80 lines
2.0 KiB
JavaScript

7 years ago
import React from 'react'
import enhanceWithClickOutside from 'react-click-outside'
import { TwitterPicker } from 'react-color'
7 years ago
class ColorPicker extends React.Component {
7 years ago
constructor() {
super()
this.state = { isVisible: false }
7 years ago
this.toggle = this.toggle.bind(this)
this.handlePickColor = this.handlePickColor.bind(this)
}
toggle() {
this.setState({ isVisible: !this.state.isVisible })
}
handleClickOutside() {
7 years ago
this.setState({ isVisible: false })
}
7 years ago
handlePickColor(color) {
7 years ago
this.setState({ isVisible: false })
this.props.onChange(color.hex)
7 years ago
}
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>
7 years ago
</div>
<div className="colorpicker-picker" hidden={!this.state.isVisible}>
<TwitterPicker color={this.props.bg} onChangeComplete={this.handlePickColor} />
7 years ago
</div>
<style jsx>{`
.colorpicker-container {
7 years ago
height: 100%;
7 years ago
}
.colorpicker-display {
display: flex;
height: 100%;
width: 72px;
7 years ago
border: 0.5px solid #000;
7 years ago
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: 10px;
7 years ago
}
`}</style>
</div>
)
}
}
export default enhanceWithClickOutside(ColorPicker)