import React, {PropTypes} from 'react'; import CommonMixin from '../mixin/CommonMixin'; import Header from './Header'; import Combobox from './Combobox'; function noop() { } function generateOptions(length, disabledOptions, hideDisabledOptions) { const arr = []; for (let value = 0; value < length; value++) { if ((disabledOptions && disabledOptions.indexOf(value) < 0) || !hideDisabledOptions) { arr.push(value); } } return arr; } const Panel = React.createClass({ propTypes: { prefixCls: PropTypes.string, value: PropTypes.object, locale: PropTypes.object, placeholder: PropTypes.string, gregorianCalendarLocale: PropTypes.object, formatter: PropTypes.object, disabledHours: PropTypes.array, disabledMinutes: PropTypes.array, disabledSeconds: PropTypes.array, hideDisabledOptions: PropTypes.bool, onChange: PropTypes.func, onEsc: PropTypes.func, allowEmpty: PropTypes.bool, showHour: PropTypes.bool, showSecond: PropTypes.bool, onClear: PropTypes.func, }, mixins: [CommonMixin], getDefaultProps() { return { disabledHours: null, disabledMinutes: null, disabledSeconds: null, hideDisabledOptions: false, onChange: noop, onClear: noop, }; }, getInitialState() { return { value: this.props.value, selectionRange: [], }; }, componentWillReceiveProps(nextProps) { const value = nextProps.value; if (value) { this.setState({ value, }); } }, onChange(newValue) { this.setState({ value: newValue }); this.props.onChange(newValue); }, onClear() { this.props.onClear(); }, onCurrentSelectPanelChange(currentSelectPanel) { this.setState({ currentSelectPanel }); }, render() { const { locale, prefixCls, placeholder, disabledHours, disabledMinutes, disabledSeconds, hideDisabledOptions, allowEmpty, showHour, showSecond, formatter, gregorianCalendarLocale } = this.props; const value = this.state.value; const hourOptions = generateOptions(24, disabledHours, hideDisabledOptions); const minuteOptions = generateOptions(60, disabledMinutes, hideDisabledOptions); const secondOptions = generateOptions(60, disabledSeconds, hideDisabledOptions); return (
); }, }); export default Panel;