You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
3.1 KiB
110 lines
3.1 KiB
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import TimePickerPanel from 'rc-time-picker/lib/Panel';
|
|
import classNames from 'classnames';
|
|
import { generateShowHourMinuteSecond } from '../time-picker';
|
|
import warning from '../_util/warning';
|
|
import { getComponentLocale } from '../_util/getLocale';
|
|
declare const require: Function;
|
|
|
|
function getColumns({ showHour, showMinute, showSecond, use12Hours }) {
|
|
let column = 0;
|
|
if (showHour) {
|
|
column += 1;
|
|
}
|
|
if (showMinute) {
|
|
column += 1;
|
|
}
|
|
if (showSecond) {
|
|
column += 1;
|
|
}
|
|
if (use12Hours) {
|
|
column += 1;
|
|
}
|
|
return column;
|
|
}
|
|
|
|
export default function wrapPicker(Picker, defaultFormat?: string): any {
|
|
return class PickerWrapper extends React.Component<any, any> {
|
|
static contextTypes = {
|
|
antLocale: PropTypes.object,
|
|
};
|
|
|
|
static defaultProps = {
|
|
format: defaultFormat || 'YYYY-MM-DD',
|
|
transitionName: 'slide-up',
|
|
popupStyle: {},
|
|
onChange() {
|
|
},
|
|
onOk() {
|
|
},
|
|
onOpenChange() {
|
|
},
|
|
locale: {},
|
|
prefixCls: 'ant-calendar',
|
|
inputPrefixCls: 'ant-input',
|
|
};
|
|
|
|
handleOpenChange = (open) => {
|
|
const { onOpenChange, toggleOpen } = this.props;
|
|
onOpenChange(open);
|
|
|
|
if (toggleOpen) {
|
|
warning(
|
|
false,
|
|
'`toggleOpen` is deprecated and will be removed in the future, ' +
|
|
'please use `onOpenChange` instead, see: http://u.ant.design/date-picker-on-open-change',
|
|
);
|
|
toggleOpen({ open });
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const props = this.props;
|
|
const { prefixCls, inputPrefixCls } = props;
|
|
const pickerClass = classNames({
|
|
[`${prefixCls}-picker`]: true,
|
|
});
|
|
const pickerInputClass = classNames(`${prefixCls}-picker-input`, inputPrefixCls, {
|
|
[`${inputPrefixCls}-lg`]: props.size === 'large',
|
|
[`${inputPrefixCls}-sm`]: props.size === 'small',
|
|
[`${inputPrefixCls}-disabled`]: props.disabled,
|
|
});
|
|
|
|
const locale = getComponentLocale(
|
|
props, this.context, 'DatePicker',
|
|
() => require('./locale/zh_CN'),
|
|
);
|
|
|
|
const timeFormat = (props.showTime && props.showTime.format) || 'HH:mm:ss';
|
|
const rcTimePickerProps = {
|
|
...generateShowHourMinuteSecond(timeFormat),
|
|
format: timeFormat,
|
|
use12Hours: (props.showTime && props.showTime.use12Hours),
|
|
};
|
|
const columns = getColumns(rcTimePickerProps);
|
|
const timePickerCls = `${prefixCls}-time-picker-column-${columns}`;
|
|
const timePicker = props.showTime ? (
|
|
<TimePickerPanel
|
|
{...rcTimePickerProps}
|
|
{...props.showTime}
|
|
prefixCls={`${prefixCls}-time-picker`}
|
|
className={timePickerCls}
|
|
placeholder={locale.timePickerLocale.placeholder}
|
|
transitionName="slide-up"
|
|
/>
|
|
) : null;
|
|
|
|
return (
|
|
<Picker
|
|
{...props}
|
|
pickerClass={pickerClass}
|
|
pickerInputClass={pickerInputClass}
|
|
locale={locale}
|
|
timePicker={timePicker}
|
|
onOpenChange={this.handleOpenChange}
|
|
/>
|
|
);
|
|
}
|
|
};
|
|
}
|
|
|