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.
115 lines
2.9 KiB
115 lines
2.9 KiB
import React from 'react';
|
|
import moment from 'moment';
|
|
import RcTimePicker from 'rc-time-picker/lib/TimePicker';
|
|
import classNames from 'classnames';
|
|
import assign from 'object-assign';
|
|
import defaultLocale from './locale/zh_CN';
|
|
|
|
// TimePicker
|
|
export interface TimePickerProps {
|
|
className?: string;
|
|
size?: 'large' | 'default' | 'small';
|
|
/** 默认时间 */
|
|
value?: moment.Moment;
|
|
/** 初始默认时间 */
|
|
defaultValue?: moment.Moment;
|
|
/** 展示的时间格式 : "HH:mm:ss"、"HH:mm"、"mm:ss" */
|
|
format?: string;
|
|
/** 时间发生变化的回调 */
|
|
onChange?: (time: moment.Moment, timeString: string) => void;
|
|
/** 禁用全部操作 */
|
|
disabled?: boolean;
|
|
/** 没有值的时候显示的内容 */
|
|
placeholder?: string;
|
|
/** 隐藏禁止选择的选项 */
|
|
hideDisabledOptions?: boolean;
|
|
/** 禁止选择部分小时选项 */
|
|
disabledHours?: Function;
|
|
/** 禁止选择部分分钟选项 */
|
|
disabledMinutes?: Function;
|
|
/** 禁止选择部分秒选项 */
|
|
disabledSeconds?: Function;
|
|
|
|
style?: React.CSSProperties;
|
|
getPopupContainer?: (trigger: any) => any;
|
|
}
|
|
|
|
export interface TimePickerContext {
|
|
antLocale?: {
|
|
TimePicker?: any,
|
|
};
|
|
}
|
|
|
|
export default class TimePicker extends React.Component<TimePickerProps, any> {
|
|
static defaultProps = {
|
|
format: 'HH:mm:ss',
|
|
prefixCls: 'ant-time-picker',
|
|
onChange() {
|
|
},
|
|
align: {
|
|
offset: [0, -2],
|
|
},
|
|
disabled: false,
|
|
disabledHours: undefined,
|
|
disabledMinutes: undefined,
|
|
disabledSeconds: undefined,
|
|
hideDisabledOptions: false,
|
|
placement: 'bottomLeft',
|
|
transitionName: 'slide-up',
|
|
};
|
|
|
|
static contextTypes = {
|
|
antLocale: React.PropTypes.object,
|
|
};
|
|
|
|
context: TimePickerContext;
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
value: props.value || props.defaultValue,
|
|
};
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
if ('value' in nextProps) {
|
|
this.setState({ value: nextProps.value });
|
|
}
|
|
}
|
|
|
|
handleChange = (value: moment.Moment) => {
|
|
if (!('value' in this.props)) {
|
|
this.setState({ value });
|
|
}
|
|
this.props.onChange(value, (value && value.format(this.props.format)) || '');
|
|
}
|
|
|
|
getLocale() {
|
|
const antLocale = this.context.antLocale;
|
|
const timePickerLocale = (antLocale && antLocale.TimePicker) || defaultLocale;
|
|
return timePickerLocale;
|
|
}
|
|
|
|
render() {
|
|
const props = assign({}, this.props);
|
|
delete props.defaultValue;
|
|
|
|
const className = classNames({
|
|
[props.className]: !!props.className,
|
|
[`${props.prefixCls}-${props.size}`]: !!props.size,
|
|
});
|
|
|
|
return (
|
|
<RcTimePicker
|
|
{...props}
|
|
className={className}
|
|
value={this.state.value}
|
|
placeholder={props.placeholder || this.getLocale().placeholder}
|
|
showHour={props.format.indexOf('HH') > -1}
|
|
showSecond={props.format.indexOf('ss') > -1}
|
|
onChange={this.handleChange}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|