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

147 lines
4.2 KiB
TypeScript
Raw Normal View History

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';
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);
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 = {
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({
value: nextProps.value || [],
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 });
}
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
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
{...calendarHandler}
2016-02-18 19:15:23 +08:00
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}
defaultValue={props.defaultPickerValue || [moment(), moment()]}
2016-02-18 19:15:23 +08:00
/>
);
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
{...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}
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];
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
value={(start && start.format(props.format)) || ''}
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
value={(end && end.format(props.format)) || ''}
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
}