import * as React from 'react'; import DateTimeFormat from 'gregorian-calendar-format'; import RcTimePicker from 'rc-time-picker/lib/TimePicker'; import defaultLocale from './locale/zh_CN'; import classNames from 'classnames'; import GregorianCalendar from 'gregorian-calendar'; import assign from 'object-assign'; // TimePicker export interface TimePickerProps { size: 'large' | 'default' | 'small'; /** 默认时间 */ value?: string | Date; /** 初始默认时间 */ defaultValue?: string | Date; /** 展示的时间格式 : "HH:mm:ss"、"HH:mm"、"mm:ss" */ format?: string; /** 时间发生变化的回调 */ onChange?: (date: Date, dateString: string) => void; /** 禁用全部操作 */ disabled?: boolean; /** 没有值的时候显示的内容 */ placeholder?: string; /** 国际化配置 */ locale?: {}; /** 隐藏禁止选择的选项 */ hideDisabledOptions?: boolean; /** 禁止选择部分小时选项 */ disabledHours?: Function; /** 禁止选择部分分钟选项 */ disabledMinutes?: Function; /** 禁止选择部分秒选项 */ disabledSeconds?: Function; style?: React.CSSProperties; } export interface TimePickerContext { antLocale?: { TimePicker?: any, }; } export default class TimePicker extends React.Component { static defaultProps = { format: 'HH:mm:ss', prefixCls: 'ant-time-picker', onChange() { }, locale: {}, align: { offset: [0, -2], }, disabled: false, disabledHours: undefined, disabledMinutes: undefined, disabledSeconds: undefined, hideDisabledOptions: false, placement: 'bottomLeft', transitionName: 'slide-up', }; static contextTypes = { antLocale: React.PropTypes.object, }; context: TimePickerContext; getFormatter() { return new DateTimeFormat(this.props.format as string, this.getLocale().format); } /** * 获得输入框的 className */ getSizeClass() { let sizeClass = ''; if (this.props.size === 'large') { sizeClass = ' ant-input-lg'; } else if (this.props.size === 'small') { sizeClass = ' ant-input-sm'; } return sizeClass; } /** * 获得输入框的默认值 */ parseTimeFromValue(value) { if (value) { if (typeof value === 'string') { return this.getFormatter().parse(value, { locale: this.getLocale().calendar, obeyCount: true, }); } else if (value instanceof Date) { let date = new GregorianCalendar(this.getLocale().calendar); date.setTime(+value); return date; } } return value; } handleChange = (value) => { this.props.onChange( value ? new Date(value.getTime()) : null, value ? this.getFormatter().format(value) : '' ); } getLocale() { let locale = defaultLocale; if (this.context.antLocale && this.context.antLocale.TimePicker) { locale = this.context.antLocale.TimePicker; } // 统一合并为完整的 Locale return assign({}, locale, this.props.locale); } render() { const locale = this.getLocale(); const props = assign({}, this.props); props.placeholder = ('placeholder' in this.props) ? props.placeholder : locale.placeholder; if (props.defaultValue) { props.defaultValue = this.parseTimeFromValue(props.defaultValue); } else { delete props.defaultValue; } if (props.value) { props.value = this.parseTimeFromValue(props.value); } let className = classNames({ [props.className]: !!props.className, [`${props.prefixCls}-${props.size}`]: !!props.size, }); if (props.format.indexOf('ss') < 0) { props.showSecond = false; } if (props.format.indexOf('HH') < 0) { props.showHour = false; } return ( ); } }