react-toolbox/components/clock/index.jsx

125 lines
3.1 KiB
React
Raw Normal View History

import React from 'react';
import PureRenderMixin from 'react-addons-pure-render-mixin';
2015-10-11 22:17:12 +03:00
import style from './style';
2015-09-09 23:34:56 +03:00
import time from '../utils/time';
import Hours from './hours';
import Minutes from './minutes';
2015-09-06 20:29:51 +03:00
2015-09-09 23:34:56 +03:00
export default React.createClass({
mixins: [PureRenderMixin],
2015-09-06 20:29:51 +03:00
displayName: 'Clock',
propTypes: {
className: React.PropTypes.string,
display: React.PropTypes.oneOf(['hours', 'minutes']),
format: React.PropTypes.oneOf(['24hr', 'ampm']),
initialTime: React.PropTypes.object,
onChange: React.PropTypes.func
},
getDefaultProps () {
return {
className: '',
2015-09-06 23:11:39 +03:00
display: 'hours',
2015-09-06 20:29:51 +03:00
format: '24hr',
initialTime: new Date()
};
},
getInitialState () {
return {
center: {x: null, y: null},
radius: 0,
time: this.props.initialTime
};
},
componentDidMount () {
2015-09-06 21:17:16 +03:00
window.addEventListener('resize', this.calculateShape);
this.calculateShape();
2015-09-06 20:29:51 +03:00
},
componentWillUnmount () {
2015-09-06 21:17:16 +03:00
window.removeEventListener('resize', this.calculateShape);
2015-09-06 20:29:51 +03:00
},
onHourChange (hours) {
2015-09-06 21:17:16 +03:00
if (this.state.time.getHours() !== hours) {
const newTime = time.setHours(this.state.time, this.adaptHourToFormat(hours));
this.setState({time: newTime});
if (this.props.onChange) this.props.onChange(newTime);
2015-09-06 21:17:16 +03:00
}
2015-09-06 20:29:51 +03:00
},
onMinuteChange (minutes) {
2015-09-06 21:17:16 +03:00
if (this.state.time.getMinutes() !== minutes) {
const newTime = time.setMinutes(this.state.time, minutes);
this.setState({time: newTime});
if (this.props.onChange) this.props.onChange(newTime);
2015-09-06 21:17:16 +03:00
}
2015-09-06 20:29:51 +03:00
},
toggleTimeMode () {
const newTime = time.toggleTimeMode(this.state.time);
this.setState({time: newTime});
if (this.props.onChange) this.props.onChange(newTime);
},
adaptHourToFormat (hour) {
2015-09-06 20:29:51 +03:00
if (this.props.format === 'ampm') {
if (time.getTimeMode(this.state.time) === 'pm') {
2015-09-06 20:29:51 +03:00
return hour < 12 ? hour + 12 : hour;
} else {
return hour === 12 ? 0 : hour;
}
} else {
return hour;
}
},
2015-09-06 21:17:16 +03:00
calculateShape () {
2015-10-11 22:17:12 +03:00
let { top, left, width } = this.refs.wrapper.getBoundingClientRect();
2015-09-06 20:29:51 +03:00
this.setState({
2015-09-06 21:17:16 +03:00
center: { x: left + width / 2, y: top + width / 2 },
radius: width / 2
2015-09-06 20:29:51 +03:00
});
},
renderHours () {
return (
<Hours
center={this.state.center}
format={this.props.format}
onChange={this.onHourChange}
radius={this.state.radius}
selected={this.state.time.getHours()}
2015-10-12 04:26:03 +03:00
spacing={this.state.radius * 0.18}
2015-10-11 22:17:12 +03:00
/>
2015-09-06 20:29:51 +03:00
);
},
renderMinutes () {
return (
<Minutes
center={this.state.center}
onChange={this.onMinuteChange}
radius={this.state.radius}
selected={this.state.time.getMinutes()}
2015-10-12 04:26:03 +03:00
spacing={this.state.radius * 0.18}
2015-10-11 22:17:12 +03:00
/>
2015-09-06 20:29:51 +03:00
);
},
render () {
return (
2015-10-11 22:17:12 +03:00
<div data-react-toolbox='clock' className={style.root}>
<div ref="wrapper" className={style.wrapper} style={{height: this.state.radius * 2}}>
2015-09-06 20:29:51 +03:00
{ this.props.display === 'hours' ? this.renderHours() : '' }
{ this.props.display === 'minutes' ? this.renderMinutes() : '' }
</div>
</div>
);
}
});