You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.1 KiB

'use strict';
10 years ago
import React from 'react';
import Calendar from 'rc-calendar';
const Datepicker = Calendar.Picker;
import GregorianCalendar from 'gregorian-calendar';
import zhCn from 'gregorian-calendar/lib/locale/zh-cn';
import CalendarLocale from 'rc-calendar/lib/locale/zh-cn';
import DateTimeFormat from 'gregorian-calendar-format';
10 years ago
// 和顶部文案保持一致
10 years ago
import Locale from 'gregorian-calendar-format/lib/locale/zh-cn';
Locale.shortMonths = ['1月', '2月', '3月', '4月', '5月', '6月',
'7月', '8月', '9月', '10月', '11月', '12月'];
10 years ago
// 以下两行代码
// 给没有初始值的日期选择框提供本地化信息
10 years ago
let defaultCalendarValue = new GregorianCalendar(zhCn);
10 years ago
defaultCalendarValue.setTime(Date.now());
10 years ago
export default React.createClass({
getInitialState() {
return {
value: ''
};
},
10 years ago
getDefaultProps() {
10 years ago
return {
format: 'yyyy-MM-dd',
placeholder: '请选择日期'
10 years ago
};
},
10 years ago
componentDidMount() {
let state = {};
if (this.props.value) {
10 years ago
let value = new GregorianCalendar(zhCn);
value.setTime(new Date(this.props.value));
state.value = value;
}
state.disabled = this.props.disabled || function() {};
this.setState(state);
},
10 years ago
handleChange() {
this.props.onSelect(new Date(this.state.value.getTime()));
},
10 years ago
render() {
let calendar = (
<Calendar
disabledDate={this.state.disabled}
10 years ago
locale={CalendarLocale}
orient={['top', 'left']}
10 years ago
defaultValue={defaultCalendarValue}
10 years ago
showTime={this.props.showTime}
prefixCls="ant-calendar"
showOk={this.props.showTime}
10 years ago
showClear={false} />
10 years ago
);
return (
<Datepicker
trigger={<span className="ant-calendar-picker-icon" />}
10 years ago
calendar={calendar}
formatter={new DateTimeFormat(this.props.format)}
value={this.state.value}
prefixCls="ant-calendar-picker"
10 years ago
onChange={this.props.onSelect}>
<input placeholder={this.props.placeholder} className="ant-calendar-picker-input" />
</Datepicker>
10 years ago
);
}
});