X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=src%2FCombobox.jsx;h=1eed4d295e90efabb1400cb869ec19aa8db4f87f;hb=d18ecfb67877d8bdfc54e47a214d3afab52b7bda;hp=013617cbe75af9fb3c12432030f5057f2f9bbd10;hpb=e59f4eae17cbfd7eed19cd385ec64312ffe266c4;p=github%2Ffretlink%2Ftime-picker.git diff --git a/src/Combobox.jsx b/src/Combobox.jsx index 013617c..1eed4d2 100644 --- a/src/Combobox.jsx +++ b/src/Combobox.jsx @@ -1,4 +1,5 @@ -import React, { PropTypes } from 'react'; +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; import Select from './Select'; const formatOption = (option, disabledOptions) => { @@ -18,8 +19,8 @@ const formatOption = (option, disabledOptions) => { }; }; -const Combobox = React.createClass({ - propTypes: { +class Combobox extends Component { + static propTypes = { format: PropTypes.string, defaultOpenValue: PropTypes.object, prefixCls: PropTypes.string, @@ -35,43 +36,75 @@ const Combobox = React.createClass({ disabledMinutes: PropTypes.func, disabledSeconds: PropTypes.func, onCurrentSelectPanelChange: PropTypes.func, - }, + use12Hours: PropTypes.bool, + }; - onItemChange(type, itemValue) { - const { onChange, defaultOpenValue } = this.props; + onItemChange = (type, itemValue) => { + const { onChange, defaultOpenValue, use12Hours } = this.props; const value = (this.props.value || defaultOpenValue).clone(); + if (type === 'hour') { - value.hour(itemValue); + if (use12Hours) { + if (this.isAM()) { + value.hour(+itemValue % 12); + } else { + value.hour((+itemValue % 12) + 12); + } + } else { + value.hour(+itemValue); + } } else if (type === 'minute') { - value.minute(itemValue); + value.minute(+itemValue); + } else if (type === 'ampm') { + const ampm = itemValue.toUpperCase(); + if (use12Hours) { + if (ampm === 'PM' && value.hour() < 12) { + value.hour((value.hour() % 12) + 12); + } + + if (ampm === 'AM') { + if (value.hour() >= 12) { + value.hour(value.hour() - 12); + } + } + } } else { - value.second(itemValue); + value.second(+itemValue); } onChange(value); - }, + } - onEnterSelectPanel(range) { + onEnterSelectPanel = (range) => { this.props.onCurrentSelectPanelChange(range); - }, + } getHourSelect(hour) { - const { prefixCls, hourOptions, disabledHours, showHour } = this.props; + const { prefixCls, hourOptions, disabledHours, showHour, use12Hours } = this.props; if (!showHour) { return null; } const disabledOptions = disabledHours(); + let hourOptionsAdj; + let hourAdj; + if (use12Hours) { + hourOptionsAdj = [12].concat(hourOptions.filter(h => h < 12 && h > 0)); + hourAdj = (hour % 12) || 12; + } else { + hourOptionsAdj = hourOptions; + hourAdj = hour; + } return ( + ); + } + + isAM() { + const value = (this.props.value || this.props.defaultOpenValue); + return value.hour() >= 0 && value.hour() < 12; + } render() { const { prefixCls, defaultOpenValue } = this.props; @@ -121,9 +183,10 @@ const Combobox = React.createClass({ {this.getHourSelect(value.hour())} {this.getMinuteSelect(value.minute())} {this.getSecondSelect(value.second())} + {this.getAMPMSelect(value.hour())} ); - }, -}); + } +} export default Combobox;