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

139 lines
4.4 KiB
React
Raw Normal View History

2015-12-11 11:11:24 +08:00
import React from 'react';
import GregorianCalendar from 'gregorian-calendar';
import RangeCalendar from 'rc-calendar/lib/RangeCalendar';
import DatePicker from 'rc-calendar/lib/Picker';
2015-12-11 11:11:24 +08:00
import classNames from 'classnames';
export default React.createClass({
getDefaultProps() {
return {
defaultValue: [],
2015-12-25 18:04:01 +08:00
startPlaceholder: '开始日期',
endPlaceholder: '结束日期',
2015-12-11 11:11:24 +08:00
};
},
getInitialState() {
2016-03-30 10:52:15 +08:00
const { value, defaultValue, parseDateFromValue } = this.props;
2015-12-11 11:11:24 +08:00
const start = (value && value[0]) || defaultValue[0];
const end = (value && value[1]) || defaultValue[1];
return {
value: [
2016-03-30 10:52:15 +08:00
parseDateFromValue(start),
parseDateFromValue(end)
2015-12-11 11:11:24 +08:00
]
};
},
componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
2016-01-02 17:03:56 +08:00
const value = nextProps.value || [];
2016-03-30 10:52:15 +08:00
const start = nextProps.parseDateFromValue(value[0]);
const end = nextProps.parseDateFromValue(value[1]);
2015-12-11 11:11:24 +08:00
this.setState({
value: [start, end]
});
}
},
handleChange(value) {
2016-03-30 10:52:15 +08:00
const props = this.props;
if (!('value' in props)) {
2016-02-19 17:07:26 +08:00
this.setState({ value });
}
const startDate = value[0] ? new Date(value[0].getTime()) : null;
const endDate = value[1] ? new Date(value[1].getTime()) : null;
2016-03-30 10:52:15 +08:00
const startDateString = value[0] ? props.getFormatter().format(value[0]) : '';
const endDateString = value[1] ? props.getFormatter().format(value[1]) : '';
props.props.onChange([startDate, endDate], [startDateString, endDateString]);
2015-12-11 11:11:24 +08:00
},
render() {
2016-03-30 10:52:15 +08:00
const props = this.props;
const locale = props.locale;
2015-12-11 11:11:24 +08:00
// 以下两行代码
// 给没有初始值的日期选择框提供本地化信息
// 否则会以周日开始排
let defaultCalendarValue = new GregorianCalendar(locale);
defaultCalendarValue.setTime(Date.now());
2016-03-30 10:52:15 +08:00
const { disabledDate, showTime, startPlaceholder, endPlaceholder, getCalendarContainer,
2016-02-18 19:15:23 +08:00
transitionName, disabled, popupStyle, align, style, onOk } = this.props;
2015-12-11 11:11:24 +08:00
const state = this.state;
const calendarClassName = classNames({
2016-03-30 09:41:18 +08:00
['ant-calendar-time']: showTime,
});
2016-02-18 19:15:23 +08:00
let pickerChangeHandler = {
onChange: this.handleChange,
};
let calendarHandler = {
onOk: this.handleChange,
};
2016-03-30 10:52:15 +08:00
if (props.timePicker) {
pickerChangeHandler.onChange = (value) => {
// Click clear button
if (value === null || value.length === 0) {
this.handleChange(value);
}
};
2016-02-18 19:15:23 +08:00
} else {
calendarHandler = {};
}
const calendar = (
2016-02-18 19:15:23 +08:00
<RangeCalendar
prefixCls="ant-calendar"
className={calendarClassName}
2016-03-30 10:52:15 +08:00
timePicker={props.timePicker}
disabledDate={disabledDate}
dateInputPlaceholder={[startPlaceholder, endPlaceholder]}
locale={locale.lang}
2016-02-02 17:49:44 +08:00
onOk={onOk}
2016-01-19 18:51:45 +08:00
defaultValue={[defaultCalendarValue, defaultCalendarValue]}
2016-02-18 19:15:23 +08:00
{...calendarHandler}
/>
);
2015-12-11 11:11:24 +08:00
2016-03-30 10:52:15 +08:00
return (<span className={props.pickerClass} style={style}>
<DatePicker
2015-12-11 11:11:24 +08:00
transitionName={transitionName}
disabled={disabled}
calendar={calendar}
value={state.value}
prefixCls="ant-calendar-picker-container"
style={popupStyle}
align={align}
getCalendarContainer={getCalendarContainer}
2016-03-30 10:52:15 +08:00
onOpen={props.toggleOpen}
onClose={props.toggleOpen}
2016-02-18 19:15:23 +08:00
{...pickerChangeHandler}
>
2015-12-11 11:11:24 +08:00
{
2016-01-05 14:42:06 +08:00
({ value }) => {
2015-12-11 11:11:24 +08:00
const start = value[0];
const end = value[1];
return (
2016-03-30 10:52:15 +08:00
<span className={props.pickerInputClass} disabled={disabled}>
2016-02-18 19:15:23 +08:00
<input
disabled={disabled}
2016-03-30 10:52:15 +08:00
onChange={props.handleInputChange}
value={start && props.getFormatter().format(start)}
placeholder={startPlaceholder}
className="ant-calendar-range-picker-input" />
2015-12-25 15:27:24 +08:00
<span className="ant-calendar-range-picker-separator"> ~ </span>
2016-02-18 19:15:23 +08:00
<input
disabled={disabled}
2016-03-30 10:52:15 +08:00
onChange={props.handleInputChange}
value={end && props.getFormatter().format(end)}
placeholder={endPlaceholder}
className="ant-calendar-range-picker-input" />
<span className="ant-calendar-picker-icon" />
</span>
);
2015-12-11 11:11:24 +08:00
}
}
</DatePicker>
2015-12-11 11:11:24 +08:00
</span>);
}
});