react-toolbox/components/clock/minutes.jsx

62 lines
1.3 KiB
JavaScript

/* global React */
import { addons } from 'react/addons';
import utils from '../utils';
import Face from './face';
import Hand from './hand';
const minutes = utils.range(0, 60, 5);
const step = 360 / 60;
export default React.createClass({
mixins: [addons.PureRenderMixin],
displayName: 'Minutes',
propTypes: {
selected: React.PropTypes.number,
onChange: React.PropTypes.func
},
getDefaultProps () {
return {
selected: 0,
onChange: null
};
},
onHandMove (degrees) {
this.props.onChange(degrees / step);
},
onMouseDown (event) {
this.refs.hand.mouseStart(event);
},
onTouchStart (event) {
this.refs.hand.touchStart(event);
},
render () {
return (
<div>
<Face
onTouchStart={this.onTouchStart}
onMouseDown={this.onMouseDown}
numbers={minutes}
spacing={this.props.spacing}
radius={this.props.radius}
twoDigits={true}
active={this.props.selected} />
<Hand ref='hand'
className={minutes.indexOf(this.props.selected) === -1 ? 'smallKnob' : ''}
angle={this.props.selected * step}
length={this.props.radius - this.props.spacing}
onMove={this.onHandMove}
origin={this.props.center}
step={step} />
</div>
);
}
});