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

195 lines
5.6 KiB
TypeScript
Raw Normal View History

import React from 'react';
import moment from 'moment';
2016-03-30 09:50:44 +08:00
import MonthCalendar from 'rc-calendar/lib/MonthCalendar';
import RcDatePicker from 'rc-calendar/lib/Picker';
import classNames from 'classnames';
import omit from 'omit.js';
2016-12-11 13:59:06 +08:00
import assign from 'object-assign';
2016-05-23 15:58:10 +08:00
import Icon from '../icon';
import { getLocaleCode } from '../_util/getLocale';
2016-03-30 09:50:44 +08:00
export interface PickerProps {
value?: moment.Moment;
prefixCls: string;
}
2016-03-30 10:52:15 +08:00
export default function createPicker(TheCalendar) {
2016-06-22 13:18:43 +08:00
// use class typescript error
const CalenderWrapper = React.createClass<any, any>({
contextTypes: {
antLocale: React.PropTypes.object,
},
getDefaultProps() {
return {
prefixCls: 'ant-calendar',
allowClear: true,
showToday: true,
};
},
2016-04-13 17:23:14 +08:00
2016-06-22 13:18:43 +08:00
getInitialState() {
const props = this.props;
const value = props.value || props.defaultValue;
if (value && !moment.isMoment(value)) {
throw new Error(
'The value/defaultValue of DatePicker or MonthPicker must be ' +
'a moment object after `antd@2.0`, see: http://u.ant.design/date-picker-value'
);
}
2016-06-22 13:18:43 +08:00
return {
value,
2016-10-21 12:19:34 +08:00
tempValue: undefined,
2016-03-30 09:50:44 +08:00
};
2016-06-22 13:18:43 +08:00
},
2016-04-13 17:23:14 +08:00
componentWillReceiveProps(nextProps: PickerProps) {
if ('value' in nextProps) {
2016-03-30 09:50:44 +08:00
this.setState({
value: nextProps.value,
tempValue: nextProps.value,
2016-03-30 09:50:44 +08:00
});
}
2016-06-22 13:18:43 +08:00
},
2016-04-13 17:23:14 +08:00
2016-06-24 14:43:46 +08:00
clearSelection(e) {
2016-05-23 15:58:10 +08:00
e.preventDefault();
e.stopPropagation();
this.handleChange(null);
2016-06-23 23:11:14 +08:00
},
2016-06-24 14:43:46 +08:00
handleChange(value) {
2016-03-30 10:52:15 +08:00
const props = this.props;
if (!('value' in props)) {
2016-06-24 14:43:46 +08:00
this.setState({ value });
2016-03-30 09:50:44 +08:00
}
props.onChange(value, (value && value.format(props.format)) || '');
2016-06-22 13:18:43 +08:00
},
2016-04-13 17:23:14 +08:00
2016-10-21 12:19:34 +08:00
handleTempChange(tempValue) {
this.setState({ tempValue });
2016-10-21 12:19:34 +08:00
},
2016-11-07 15:41:03 +08:00
// Clear temp value and trigger onChange when hide DatePicker[showTime] panel
2016-10-21 12:19:34 +08:00
handleOpenChange(open) {
const { showTime, onOpenChange, onChange, format } = this.props;
2016-10-21 12:19:34 +08:00
if (!open) {
2016-11-07 15:41:03 +08:00
// tricky code to avoid triggering onChange multiple times
// when click `Now` button
let tempValue;
this.setState(prevState => {
tempValue = prevState.tempValue;
const nextState = { tempValue: undefined } as any;
2016-11-07 15:41:03 +08:00
if (showTime && tempValue) {
nextState.value = tempValue;
onChange(tempValue, (tempValue && tempValue.format(format)) || '');
2016-11-07 15:41:03 +08:00
}
return nextState;
2016-10-21 12:19:34 +08:00
});
}
if (onOpenChange) {
onOpenChange(open);
2016-10-21 12:19:34 +08:00
}
},
2016-03-30 09:50:44 +08:00
render() {
const { value, tempValue } = this.state;
const props = omit(this.props, ['onChange']);
const { prefixCls, locale } = props;
2016-03-30 09:50:44 +08:00
const placeholder = ('placeholder' in props)
? props.placeholder : locale.lang.placeholder;
const disabledTime = props.showTime ? props.disabledTime : null;
const calendarClassName = classNames({
[`${prefixCls}-time`]: props.showTime,
[`${prefixCls}-month`]: MonthCalendar === TheCalendar,
2016-03-30 09:50:44 +08:00
});
// 需要选择时间时,点击 ok 时才触发 onChange
2016-10-21 12:19:34 +08:00
let pickerChangeHandler: Object = {};
let calendarHandler: Object = {};
if (props.showTime) {
2016-10-21 12:19:34 +08:00
calendarHandler = {
// fix https://github.com/ant-design/ant-design/issues/1902
onSelect: (selectedValue) => {
this.handleTempChange(selectedValue);
2016-10-21 12:19:34 +08:00
},
};
} else {
2016-10-21 12:19:34 +08:00
pickerChangeHandler = {
onChange: this.handleChange,
};
}
2016-03-30 09:50:44 +08:00
const calendar = (
<TheCalendar
{...calendarHandler}
2016-03-30 09:50:44 +08:00
disabledDate={props.disabledDate}
disabledTime={disabledTime}
locale={locale.lang}
2016-03-30 10:52:15 +08:00
timePicker={props.timePicker}
defaultValue={props.defaultPickerValue || moment()}
2016-03-30 09:50:44 +08:00
dateInputPlaceholder={placeholder}
prefixCls={prefixCls}
2016-03-30 09:50:44 +08:00
className={calendarClassName}
onOk={props.onOk}
2016-10-13 16:13:05 +08:00
format={props.format}
showToday={props.showToday}
monthCellContentRender={props.monthCellContentRender}
/>
2016-03-30 09:50:44 +08:00
);
2016-12-11 13:59:06 +08:00
// default width for showTime
const pickerStyle = {} as any;
if (props.showTime) {
pickerStyle.minWidth = 154;
}
const clearIcon = (!props.disabled && props.allowClear && value) ?
<Icon
type="cross-circle"
className={`${prefixCls}-picker-clear`}
onClick={this.clearSelection}
/> : null;
const input = ({ value: inputValue }) => (
<span>
<input
disabled={props.disabled}
readOnly
value={(inputValue && inputValue.format(props.format)) || ''}
placeholder={placeholder}
className={props.pickerInputClass}
/>
{clearIcon}
<span className={`${prefixCls}-picker-icon`} />
</span>
);
const pickerValue = tempValue || value;
const localeCode = getLocaleCode(this.context);
if (pickerValue && localeCode) {
pickerValue.locale(localeCode);
}
2016-03-30 09:50:44 +08:00
return (
2016-12-11 13:59:06 +08:00
<span className={props.pickerClass} style={assign({}, props.style, pickerStyle)}>
2016-03-30 09:50:44 +08:00
<RcDatePicker
{...props}
{...pickerChangeHandler}
2016-10-21 12:19:34 +08:00
onOpenChange={this.handleOpenChange}
2016-03-30 09:50:44 +08:00
calendar={calendar}
value={pickerValue}
prefixCls={`${prefixCls}-picker-container`}
2016-03-30 09:50:44 +08:00
style={props.popupStyle}
>
{input}
2016-03-30 09:50:44 +08:00
</RcDatePicker>
</span>
);
2016-06-22 13:18:43 +08:00
},
});
2016-06-23 23:11:14 +08:00
2016-06-22 13:18:43 +08:00
return CalenderWrapper;
2016-03-30 09:50:44 +08:00
}