ant-design/components/date-picker/index.jsx

170 lines
4.9 KiB
React
Raw Normal View History

2015-06-19 12:29:22 +08:00
import React from 'react';
import RcCalendar from 'rc-calendar';
2015-10-20 16:47:55 +08:00
import MonthCalendar from 'rc-calendar/lib/MonthCalendar';
import RcDatePicker from 'rc-calendar/lib/Picker';
2015-06-19 12:29:22 +08:00
import GregorianCalendar from 'gregorian-calendar';
import RangePicker from './RangePicker';
import PickerMixin from './PickerMixin';
2016-03-30 09:41:18 +08:00
import Calendar from './Calendar';
import TimePicker from 'rc-time-picker';
import classNames from 'classnames';
2015-10-23 11:52:05 +08:00
2015-11-30 14:41:01 +08:00
function createPicker(TheCalendar, defaultFormat) {
2015-08-25 17:27:38 +08:00
return React.createClass({
2015-10-23 11:52:05 +08:00
getDefaultProps() {
return {
2015-11-30 14:41:01 +08:00
format: defaultFormat || 'yyyy-MM-dd',
2015-10-23 11:52:05 +08:00
transitionName: 'slide-up',
2015-11-11 12:21:00 +08:00
popupStyle: {},
2016-02-18 19:15:23 +08:00
onChange() {
},
onOk() {
},
2015-10-28 19:48:32 +08:00
locale: {},
2015-10-31 15:15:55 +08:00
align: {
offset: [0, -9],
},
2016-02-19 17:07:26 +08:00
open: false,
2015-10-23 11:52:05 +08:00
};
},
2015-08-25 17:27:38 +08:00
getInitialState() {
return {
2015-11-03 13:50:36 +08:00
value: this.parseDateFromValue(this.props.value || this.props.defaultValue)
2015-08-25 17:27:38 +08:00
};
},
2016-01-05 14:42:06 +08:00
mixins: [PickerMixin],
2015-08-25 17:27:38 +08:00
componentWillReceiveProps(nextProps) {
2015-09-01 10:59:12 +08:00
if ('value' in nextProps) {
2015-08-25 17:27:38 +08:00
this.setState({
2015-10-23 11:52:05 +08:00
value: this.parseDateFromValue(nextProps.value)
2015-08-25 17:27:38 +08:00
});
}
},
2015-10-23 15:55:48 +08:00
handleChange(value) {
if (!('value' in this.props)) {
2016-02-19 17:07:26 +08:00
this.setState({ value });
}
2015-11-03 13:50:36 +08:00
const timeValue = value ? new Date(value.getTime()) : null;
this.props.onChange(timeValue, value ? this.getFormatter().format(value) : '');
2015-08-25 17:27:38 +08:00
},
render() {
2016-03-30 09:41:18 +08:00
const props = this.props;
const locale = this.getLocale();
// 以下两行代码
// 给没有初始值的日期选择框提供本地化信息
// 否则会以周日开始排
let defaultCalendarValue = new GregorianCalendar(locale);
defaultCalendarValue.setTime(Date.now());
2015-11-19 17:20:00 +08:00
2016-03-30 09:41:18 +08:00
const placeholder = ('placeholder' in props)
? props.placeholder : locale.lang.placeholder;
2016-03-30 09:41:18 +08:00
const timePicker = props.showTime ? (<TimePicker
2016-02-18 19:15:23 +08:00
prefixCls="ant-time-picker"
placeholder={locale.lang.timePlaceholder}
transitionName="slide-up" />)
: null;
2016-03-30 09:41:18 +08:00
const disabledTime = props.showTime ? props.disabledTime : null;
const calendarClassName = classNames({
2016-03-30 09:41:18 +08:00
['ant-calendar-time']: props.showTime,
2016-01-13 17:30:24 +08:00
['ant-calendar-month']: MonthCalendar === TheCalendar,
});
2016-02-18 19:15:23 +08:00
let pickerChangeHandler = {
onChange: this.handleChange,
};
let calendarHandler = {
onOk: this.handleChange,
};
2016-03-30 09:41:18 +08:00
if (props.showTime) {
pickerChangeHandler.onChange = (value) => {
// Click clear button
if (value === null) {
this.handleChange(value);
}
};
2016-02-18 19:15:23 +08:00
} else {
calendarHandler = {};
}
2015-10-23 10:51:56 +08:00
const calendar = (
2015-09-01 16:18:46 +08:00
<TheCalendar
2016-03-30 09:41:18 +08:00
disabledDate={props.disabledDate}
disabledTime={disabledTime}
locale={locale.lang}
timePicker={timePicker}
2015-10-23 11:52:05 +08:00
defaultValue={defaultCalendarValue}
2015-11-19 17:20:00 +08:00
dateInputPlaceholder={placeholder}
2015-08-25 17:27:38 +08:00
prefixCls="ant-calendar"
className={calendarClassName}
2016-02-19 17:07:26 +08:00
{...calendarHandler} />
2015-08-25 17:27:38 +08:00
);
2016-03-30 09:41:18 +08:00
const pickerClass = classNames({
'ant-calendar-picker': true,
'ant-calendar-picker-open': this.state.open,
});
2015-11-03 13:50:36 +08:00
2016-03-30 09:41:18 +08:00
const inputClass = classNames({
'ant-calendar-picker-input': true,
'ant-input': true,
'ant-input-lg': props.size === 'large',
'ant-input-sm': props.size === 'small',
});
// default width for showTime
const pickerStyle = {};
2016-03-30 09:41:18 +08:00
if (props.showTime) {
pickerStyle.width = 180;
}
return (
2016-03-30 09:41:18 +08:00
<span className={pickerClass} style={{ ...pickerStyle, ...props.style }}>
<RcDatePicker
2016-03-30 09:41:18 +08:00
transitionName={props.transitionName}
disabled={props.disabled}
calendar={calendar}
value={this.state.value}
prefixCls="ant-calendar-picker-container"
2016-03-30 09:41:18 +08:00
style={props.popupStyle}
align={props.align}
getCalendarContainer={props.getCalendarContainer}
onOpen={this.toggleOpen}
onClose={this.toggleOpen}
2016-02-18 19:15:23 +08:00
{...pickerChangeHandler}
>
{
({ value }) => {
return (
<span>
2016-02-18 19:15:23 +08:00
<input
2016-03-30 09:41:18 +08:00
disabled={props.disabled}
onChange={this.handleInputChange}
value={value && this.getFormatter().format(value)}
placeholder={placeholder}
2016-03-30 09:41:18 +08:00
className={inputClass} />
<span className="ant-calendar-picker-icon" />
</span>
);
}
2015-10-20 16:47:55 +08:00
}
</RcDatePicker>
</span>
);
2015-08-25 17:27:38 +08:00
}
});
}
const DatePicker = createPicker(RcCalendar);
const MonthPicker = createPicker(MonthCalendar, 'yyyy-MM');
2015-08-24 14:30:08 +08:00
DatePicker.Calendar = Calendar;
DatePicker.RangePicker = RangePicker;
DatePicker.MonthPicker = MonthPicker;
2015-08-24 14:30:08 +08:00
export default DatePicker;