2016-09-09 13:55:21 +08:00
|
|
|
import React from 'react';
|
|
|
|
import moment from 'moment';
|
2015-12-11 11:11:24 +08:00
|
|
|
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';
|
2016-07-07 16:28:00 +08:00
|
|
|
import Icon from '../icon';
|
2015-12-11 11:11:24 +08:00
|
|
|
|
2016-08-19 17:11:06 +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-09-09 13:55:21 +08:00
|
|
|
const { value, defaultValue } = 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 = {
|
2016-09-09 13:55:21 +08:00
|
|
|
value: [start, 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) {
|
|
|
|
this.setState({
|
2016-09-09 13:55:21 +08:00
|
|
|
value: nextProps.value || [],
|
2015-12-11 11:11:24 +08:00
|
|
|
});
|
|
|
|
}
|
2016-03-31 20:42:35 +08:00
|
|
|
}
|
|
|
|
|
2016-07-07 16:28:00 +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 });
|
2015-12-25 01:21:03 +08:00
|
|
|
}
|
2016-09-09 13:55:21 +08:00
|
|
|
props.onChange(value, [
|
|
|
|
(value[0] && value[0].format(props.format)) || '',
|
|
|
|
(value[1] && value[1].format(props.format)) || '',
|
|
|
|
]);
|
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
|
|
|
|
2016-04-01 13:53:37 +08:00
|
|
|
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;
|
|
|
|
|
2015-12-25 01:21:03 +08:00
|
|
|
const calendarClassName = classNames({
|
2016-05-10 15:15:09 +08:00
|
|
|
'ant-calendar-time': showTime,
|
2015-12-25 01:21:03 +08:00
|
|
|
});
|
|
|
|
|
2016-07-15 16:20:23 +08:00
|
|
|
// 需要选择时间时,点击 ok 时才触发 onChange
|
2016-02-18 19:15:23 +08:00
|
|
|
let pickerChangeHandler = {
|
|
|
|
onChange: this.handleChange,
|
|
|
|
};
|
2016-08-19 17:11:06 +08:00
|
|
|
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) {
|
2016-07-18 16:44:30 +08:00
|
|
|
pickerChangeHandler.onChange = (value) => {
|
|
|
|
this.handleChange(value);
|
|
|
|
};
|
2016-02-18 19:15:23 +08:00
|
|
|
} else {
|
|
|
|
calendarHandler = {};
|
|
|
|
}
|
|
|
|
|
2016-04-01 13:53:37 +08:00
|
|
|
const startPlaceholder = ('startPlaceholder' in this.props)
|
|
|
|
? props.startPlaceholder : locale.lang.rangePlaceholder[0];
|
|
|
|
const endPlaceholder = ('endPlaceholder' in props)
|
|
|
|
? props.endPlaceholder : locale.lang.rangePlaceholder[1];
|
|
|
|
|
2016-01-07 14:21:29 +08:00
|
|
|
const calendar = (
|
2016-02-18 19:15:23 +08:00
|
|
|
<RangeCalendar
|
2016-09-09 13:55:21 +08:00
|
|
|
{...calendarHandler}
|
2016-02-18 19:15:23 +08:00
|
|
|
prefixCls="ant-calendar"
|
2016-01-07 17:46:46 +08:00
|
|
|
className={calendarClassName}
|
2016-03-30 10:52:15 +08:00
|
|
|
timePicker={props.timePicker}
|
2016-01-07 17:46:46 +08:00
|
|
|
disabledDate={disabledDate}
|
|
|
|
dateInputPlaceholder={[startPlaceholder, endPlaceholder]}
|
|
|
|
locale={locale.lang}
|
2016-02-02 17:49:44 +08:00
|
|
|
onOk={onOk}
|
2016-09-09 13:55:21 +08:00
|
|
|
defaultValue={props.defaultPickerValue || [moment(), moment()]}
|
2016-02-18 19:15:23 +08:00
|
|
|
/>
|
2016-01-07 14:21:29 +08:00
|
|
|
);
|
2015-12-11 11:11:24 +08:00
|
|
|
|
2016-07-07 16:28:00 +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-09-09 13:55:21 +08:00
|
|
|
{...pickerChangeHandler}
|
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}
|
2016-02-03 14:29:26 +08:00
|
|
|
getCalendarContainer={getCalendarContainer}
|
2016-03-30 10:52:15 +08:00
|
|
|
onOpen={props.toggleOpen}
|
|
|
|
onClose={props.toggleOpen}
|
2016-02-18 19:15:23 +08:00
|
|
|
>
|
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];
|
2015-12-25 01:21:03 +08:00
|
|
|
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-09-09 13:55:21 +08:00
|
|
|
value={(start && start.format(props.format)) || ''}
|
2015-12-25 01:21:03 +08:00
|
|
|
placeholder={startPlaceholder}
|
2016-06-06 13:54:10 +08:00
|
|
|
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-09-09 13:55:21 +08:00
|
|
|
value={(end && end.format(props.format)) || ''}
|
2015-12-25 01:21:03 +08:00
|
|
|
placeholder={endPlaceholder}
|
2016-06-06 13:54:10 +08:00
|
|
|
className="ant-calendar-range-picker-input"
|
|
|
|
/>
|
2016-07-07 16:28:00 +08:00
|
|
|
{clearIcon}
|
2016-02-22 10:52:30 +08:00
|
|
|
<span className="ant-calendar-picker-icon" />
|
2015-12-25 01:21:03 +08:00
|
|
|
</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
|
|
|
}
|