d2-ui
Version:
144 lines (128 loc) • 3.83 kB
JavaScript
'use strict' /* @flow */
import React from 'react'
import ReactCSS from 'reactcss'
import shallowCompare from 'react-addons-shallow-compare'
export class Hue extends ReactCSS.Component {
shouldComponentUpdate = shallowCompare.bind(this, this, arguments[0], arguments[1])
classes(): any {
return {
'default': {
hue: {
Absolute: '0 0 0 0',
background: 'linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%)',
borderRadius: this.props.radius,
boxShadow: this.props.shadow,
},
container: {
margin: '0 2px',
position: 'relative',
height: '100%',
},
pointer: {
position: 'absolute',
left: (this.props.hsl.h * 100) / 360 + '%',
},
slider: {
marginTop: '1px',
width: '4px',
borderRadius: '1px',
height: '8px',
boxShadow: '0 0 2px rgba(0, 0, 0, .6)',
background: '#fff',
transform: 'translateX(-2px)',
},
},
'direction-vertical': {
hue: {
background: 'linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%)',
},
pointer: {
left: '0',
top: -((this.props.hsl.h * 100) / 360) + 100 + '%',
},
},
}
}
componentWillUnmount() {
this.unbindEventListeners()
}
handleChange = (e: any, skip: boolean) => {
!skip && e.preventDefault()
var container = this.refs.container
var containerWidth = container.clientWidth
var containerHeight = container.clientHeight
var x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX
var y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY
var left = x - (container.getBoundingClientRect().left + window.pageXOffset)
var top = y - (container.getBoundingClientRect().top + window.pageYOffset)
if (this.props.direction === 'vertical') {
var h
if (top < 0) {
h = 359
} else if (top > containerHeight) {
h = 0
} else {
var percent = -(top * 100 / containerHeight) + 100
h = (360 * percent / 100)
}
if (this.props.hsl.h !== h) {
this.props.onChange({
h: h,
s: this.props.hsl.s,
l: this.props.hsl.l,
a: this.props.hsl.a,
source: 'rgb',
})
}
} else {
var h
if (left < 0) {
h = 0
} else if (left > containerWidth) {
h = 359
} else {
var percent = left * 100 / containerWidth
h = (360 * percent / 100)
}
if (this.props.hsl.h !== h) {
this.props.onChange({
h: h,
s: this.props.hsl.s,
l: this.props.hsl.l,
a: this.props.hsl.a,
source: 'rgb',
})
}
}
}
handleMouseDown = (e: any) => {
this.handleChange(e, true)
window.addEventListener('mousemove', this.handleChange)
window.addEventListener('mouseup', this.handleMouseUp)
}
handleMouseUp = () => {
this.unbindEventListeners()
}
unbindEventListeners() {
window.removeEventListener('mousemove', this.handleChange)
window.removeEventListener('mouseup', this.handleMouseUp)
}
render(): any {
var pointer = <div is="slider" />
if (this.props.pointer) {
pointer = <this.props.pointer {...this.props} />
}
return (
<div is="hue">
<div is="container" ref="container" onMouseDown={ this.handleMouseDown }
onTouchMove={ this.handleChange }
onTouchStart={ this.handleChange }>
<div is="pointer" ref="pointer">
{ pointer }
</div>
</div>
</div>
)
}
}
export default Hue