ant-design/components/time-picker/index.tsx

131 lines
3.4 KiB
TypeScript
Raw Normal View History

import React from 'react';
import moment from 'moment';
import RcTimePicker from 'rc-time-picker/lib/TimePicker';
2015-12-08 14:55:28 +08:00
import classNames from 'classnames';
2016-06-22 13:18:43 +08:00
import assign from 'object-assign';
import defaultLocale from './locale/zh_CN';
2016-07-09 10:52:58 +08:00
// TimePicker
export interface TimePickerProps {
className?: string;
size?: 'large' | 'default' | 'small';
2016-07-13 11:14:24 +08:00
/** 默认时间 */
value?: moment.Moment;
2016-07-13 11:14:24 +08:00
/** 初始默认时间 */
defaultValue?: moment.Moment;
2016-07-09 10:52:58 +08:00
/** 展示的时间格式 : "HH:mm:ss"、"HH:mm"、"mm:ss" */
2016-07-13 11:14:24 +08:00
format?: string;
/** 时间发生变化的回调 */
onChange?: (time: moment.Moment, timeString: string) => void;
2016-07-13 11:14:24 +08:00
/** 禁用全部操作 */
disabled?: boolean;
/** 没有值的时候显示的内容 */
placeholder?: string;
/** 隐藏禁止选择的选项 */
hideDisabledOptions?: boolean;
/** 禁止选择部分小时选项 */
disabledHours?: Function;
/** 禁止选择部分分钟选项 */
disabledMinutes?: Function;
/** 禁止选择部分秒选项 */
disabledSeconds?: Function;
style?: React.CSSProperties;
getPopupContainer?: (trigger: any) => any;
2016-11-06 14:53:29 +08:00
addon?: Function;
2016-07-09 10:52:58 +08:00
}
2016-08-22 17:26:14 +08:00
export interface TimePickerContext {
antLocale?: {
TimePicker?: any,
};
}
2016-07-09 10:52:58 +08:00
export default class TimePicker extends React.Component<TimePickerProps, any> {
static defaultProps = {
prefixCls: 'ant-time-picker',
align: {
offset: [0, -2],
},
disabled: false,
disabledHours: undefined,
disabledMinutes: undefined,
disabledSeconds: undefined,
hideDisabledOptions: false,
placement: 'bottomLeft',
transitionName: 'slide-up',
2016-07-13 11:14:24 +08:00
};
2015-11-16 23:11:41 +08:00
static contextTypes = {
2016-03-05 16:39:27 +08:00
antLocale: React.PropTypes.object,
2016-07-13 11:14:24 +08:00
};
2016-03-03 17:43:38 +08:00
2016-08-22 17:26:14 +08:00
context: TimePickerContext;
constructor(props) {
super(props);
const value = props.value || props.defaultValue;
if (value && !moment.isMoment(value)) {
throw new Error(
'The value/defaultValue of TimePicker must be a moment object after `antd@2.0`, ' +
'see: http://u.ant.design/time-picker-value'
);
}
this.state = {
value,
};
}
2015-11-16 23:11:41 +08:00
componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
this.setState({ value: nextProps.value });
2015-11-16 23:11:41 +08:00
}
}
2015-11-18 12:14:26 +08:00
handleChange = (value: moment.Moment) => {
if (!('value' in this.props)) {
this.setState({ value });
}
2016-10-24 16:30:38 +08:00
const { onChange, format = 'HH:mm:ss' } = this.props;
if (onChange) {
onChange(value, (value && value.format(format)) || '');
}
}
2015-11-19 15:53:40 +08:00
2015-11-19 18:01:46 +08:00
getLocale() {
const antLocale = this.context.antLocale;
const timePickerLocale = (antLocale && antLocale.TimePicker) || defaultLocale;
return timePickerLocale;
}
2015-11-19 18:01:46 +08:00
2015-11-18 12:14:26 +08:00
render() {
const props = assign({ format: 'HH:mm:ss' }, this.props);
delete props.defaultValue;
const className = classNames(props.className, {
2016-03-23 16:25:06 +08:00
[`${props.prefixCls}-${props.size}`]: !!props.size,
2015-12-08 14:55:28 +08:00
});
2015-12-16 17:29:28 +08:00
const addon = (panel) => (
props.addon ? (
<div className={`${props.prefixCls}-panel-addon`}>
{props.addon(panel)}
</div>
) : null
);
2015-11-16 23:11:41 +08:00
return (
<RcTimePicker
2015-12-08 14:55:28 +08:00
{...props}
className={className}
value={this.state.value}
placeholder={props.placeholder || this.getLocale().placeholder}
showHour={props.format.indexOf('HH') > -1}
showMinute={props.format.indexOf('mm') > -1}
showSecond={props.format.indexOf('ss') > -1}
2015-11-19 15:53:40 +08:00
onChange={this.handleChange}
addon={addon}
/>
2015-11-16 23:11:41 +08:00
);
}
}