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

161 lines
5.0 KiB
TypeScript
Raw Normal View History

2016-07-07 20:25:03 +08:00
import * as React from 'react';
2015-12-11 11:11:24 +08:00
import GregorianCalendar from 'gregorian-calendar';
import RangeCalendar from 'rc-calendar/lib/RangeCalendar';
2016-03-31 20:42:35 +08:00
import RcDatePicker from 'rc-calendar/lib/Picker';
2015-12-11 11:11:24 +08:00
import classNames from 'classnames';
import Icon from '../icon';
2015-12-11 11:11:24 +08:00
export default class RangePicker extends React.Component<any, any> {
2016-03-31 20:42:35 +08:00
static defaultProps = {
defaultValue: [],
2016-07-13 11:14:24 +08:00
};
2016-03-31 20:42:35 +08:00
constructor(props) {
super(props);
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];
2016-03-31 20:42:35 +08:00
this.state = {
2015-12-11 11:11:24 +08:00
value: [
2016-03-30 10:52:15 +08:00
parseDateFromValue(start),
2016-05-11 09:32:33 +08:00
parseDateFromValue(end),
],
2015-12-11 11:11:24 +08:00
};
2016-03-31 20:42:35 +08:00
}
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({
2016-05-11 09:32:33 +08:00
value: [start, end],
2015-12-11 11:11:24 +08:00
});
}
2016-03-31 20:42:35 +08:00
}
clearSelection = (e) => {
e.preventDefault();
e.stopPropagation();
this.setState({ value: [] });
this.handleChange([]);
}
2016-03-31 20:42:35 +08:00
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.onChange([startDate, endDate], [startDateString, endDateString]);
2016-03-31 20:42:35 +08:00
}
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());
const { disabledDate, showTime, 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({
'ant-calendar-time': showTime,
});
// 需要选择时间时,点击 ok 时才触发 onChange
2016-02-18 19:15:23 +08:00
let pickerChangeHandler = {
onChange: this.handleChange,
};
let calendarHandler: Object = {
2016-02-18 19:15:23 +08:00
onOk: this.handleChange,
};
2016-03-30 10:52:15 +08:00
if (props.timePicker) {
pickerChangeHandler.onChange = (value) => {
this.handleChange(value);
};
2016-02-18 19:15:23 +08:00
} else {
calendarHandler = {};
}
const startPlaceholder = ('startPlaceholder' in this.props)
? props.startPlaceholder : locale.lang.rangePlaceholder[0];
const endPlaceholder = ('endPlaceholder' in props)
? props.endPlaceholder : locale.lang.rangePlaceholder[1];
const calendar = (
2016-02-18 19:15:23 +08:00
<RangeCalendar
prefixCls="ant-calendar"
formatter={props.getFormatter()}
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
const clearIcon = (!props.disabled && state.value && (state.value[0] || state.value[1]))
? <Icon
type="cross-circle"
className="ant-calendar-picker-clear"
onClick={this.clearSelection}
/> : null;
2016-03-30 10:52:15 +08:00
return (<span className={props.pickerClass} style={style}>
2016-03-31 20:42:35 +08:00
<RcDatePicker
2016-04-13 15:33:44 +08:00
formatter={props.getFormatter()}
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-06-15 17:49:16 +08:00
readOnly
2016-04-07 18:07:18 +08:00
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-06-15 17:49:16 +08:00
readOnly
2016-04-07 18:07:18 +08:00
value={end ? props.getFormatter().format(end) : ''}
placeholder={endPlaceholder}
className="ant-calendar-range-picker-input"
/>
{clearIcon}
<span className="ant-calendar-picker-icon" />
</span>
);
2015-12-11 11:11:24 +08:00
}
}
2016-03-31 20:42:35 +08:00
</RcDatePicker>
2015-12-11 11:11:24 +08:00
</span>);
}
2016-03-31 20:42:35 +08:00
}