import React from 'react'; import Calendar from 'rc-calendar'; import MonthCalendar from 'rc-calendar/lib/MonthCalendar'; import Datepicker from 'rc-calendar/lib/Picker'; import GregorianCalendar from 'gregorian-calendar'; import defaultLocale from './locale'; import CalendarLocale from 'rc-calendar/lib/locale/zh-cn'; import DateTimeFormat from 'gregorian-calendar-format'; import objectAssign from 'object-assign'; // 转换 locale 为 rc-calender 接收的格式 function getCalendarLocale(locale) { locale.format = locale.format || {}; [ 'eras', 'months', 'shortMonths', 'weekdays', 'shortWeekdays', 'veryShortWeekdays', 'ampms', 'datePatterns', 'timePatterns', 'dateTimePattern' ].forEach(function(key) { locale.format[key] = locale[key]; }); return locale; } function createPicker(TheCalendar) { return React.createClass({ getDefaultProps() { return { format: 'yyyy-MM-dd', placeholder: '请选择日期', transitionName: 'slide-up', calendarStyle: {}, onSelect: null, // 向前兼容 onChange() {}, // onChange 可用于 Validator locale: {} }; }, getInitialState() { return { value: this.parseDateFromValue(this.props.value) }; }, componentWillReceiveProps(nextProps) { if ('value' in nextProps) { this.setState({ value: this.parseDateFromValue(nextProps.value) }); } }, getLocale() { // 统一合并为完整的 Locale let locale = objectAssign({}, defaultLocale, this.props.locale); locale.lang = objectAssign({}, defaultLocale.lang, this.props.locale.lang); return locale; }, getFormatter() { const formats = this.formats = this.formats || {}; const format = this.props.format; if (formats[format]) { return formats[format]; } formats[format] = new DateTimeFormat(format); return formats[format]; }, parseDateFromValue(value) { if (value) { if (typeof value === 'string') { return new DateTimeFormat(this.props.format).parse(value, this.getLocale()); } else if (value instanceof Date) { let date = new GregorianCalendar(this.getLocale()); date.setTime(value); return date; } } return null; }, // remove input readonly warning handleInputChange() {}, handleChange(value) { this.setState({ value }); const timeValue = value ? new Date(value.getTime()) : null; // onSelect 为向前兼容. if (this.props.onSelect) { require('util-deprecate')(this.props.onSelect, 'onSelect property of Datepicker is deprecated, use onChange instead')(timeValue); } this.props.onChange(timeValue); }, render() { // 以下两行代码 // 给没有初始值的日期选择框提供本地化信息 // 否则会以周日开始排 let defaultCalendarValue = new GregorianCalendar(this.getLocale()); defaultCalendarValue.setTime(Date.now()); const calendar = ( ); let sizeClass = ''; if (this.props.size === 'large') { sizeClass = ' ant-input-lg'; } else if (this.props.size === 'small') { sizeClass = ' ant-input-sm'; } let defaultValue = this.parseDateFromValue(this.props.defaultValue); return ( { ({value}) => { return ([, ]); } } ); } }); } const AntDatePicker = createPicker(Calendar); const AntMonthPicker = createPicker(MonthCalendar); const AntCalendar = React.createClass({ getDefaultProps() { return { locale: CalendarLocale, prefixCls: 'ant-calendar', }; }, render() { return ; } }); AntDatePicker.Calendar = AntCalendar; AntDatePicker.MonthPicker = AntMonthPicker; export default AntDatePicker;