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

148 lines
4.0 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';
2016-06-22 13:18:43 +08:00
import assign from 'object-assign';
2016-05-23 15:58:10 +08:00
import Icon from '../icon';
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({
getDefaultProps() {
return {
prefixCls: 'ant-calendar',
};
},
2016-04-13 17:23:14 +08:00
2016-06-22 13:18:43 +08:00
getInitialState() {
const props = this.props;
2016-06-22 13:18:43 +08:00
return {
value: props.value || props.defaultValue,
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) {
2016-03-30 09:50:44 +08:00
if ('value' in nextProps) {
this.setState({
value: 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.setState({ value: null });
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-03-30 09:50:44 +08:00
render() {
const props = this.props;
const prefixCls = props.prefixCls;
2016-03-30 10:52:15 +08:00
const locale = props.locale;
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-08-22 17:26:14 +08:00
let pickerChangeHandler: Object = {
onChange: this.handleChange,
};
2016-08-22 17:26:14 +08:00
let calendarHandler: Object = {
onOk: this.handleChange,
// fix https://github.com/ant-design/ant-design/issues/1902
2016-10-12 11:47:34 +08:00
onSelect: (value, cause) => {
if (!('value' in this.props)) {
this.setState({ value });
2016-10-12 11:47:34 +08:00
}
},
};
if (props.showTime) {
pickerChangeHandler = {};
} else {
calendarHandler = {};
}
2016-03-30 09:50:44 +08:00
const calendar = (
<TheCalendar
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}
{...calendarHandler}
/>
2016-03-30 09:50:44 +08:00
);
// default width for showTime
2016-08-22 17:26:14 +08:00
const pickerStyle = { width: undefined };
2016-03-30 09:50:44 +08:00
if (props.showTime) {
pickerStyle.width = 180;
}
2016-05-23 15:58:10 +08:00
const clearIcon = (!props.disabled && this.state.value) ?
<Icon type="cross-circle"
className={`${prefixCls}-picker-clear`}
onClick={this.clearSelection}
/> : null;
2016-03-30 09:50:44 +08:00
return (
2016-06-22 13:18:43 +08:00
<span className={props.pickerClass} style={assign({}, pickerStyle, props.style)}>
2016-03-30 09:50:44 +08:00
<RcDatePicker
{...props}
{...pickerChangeHandler}
2016-03-30 09:50:44 +08:00
calendar={calendar}
value={this.state.value}
prefixCls={`${prefixCls}-picker-container`}
2016-03-30 09:50:44 +08:00
style={props.popupStyle}
>
{
({ value }) => {
return (
<span>
2016-03-30 09:50:44 +08:00
<input
disabled={props.disabled}
2016-06-15 17:49:16 +08:00
readOnly
value={(value && value.format(props.format)) || ''}
2016-03-30 09:50:44 +08:00
placeholder={placeholder}
className={props.pickerInputClass}
/>
2016-05-23 15:58:10 +08:00
{clearIcon}
<span className={`${prefixCls}-picker-icon`} />
2016-03-30 09:50:44 +08:00
</span>
);
2016-03-30 09:50:44 +08:00
}
}
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
}