ant-design-vue/components/time-picker/index.jsx

214 lines
6.0 KiB
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import * as moment from 'moment';
import VcTimePicker from '../vc-time-picker';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
import defaultLocale from './locale/en_US';
import BaseMixin from '../_util/BaseMixin';
import PropTypes from '../_util/vue-types';
import Icon from '../icon';
import interopDefault from '../_util/interopDefault';
import {
initDefaultProps,
hasProp,
getOptionProps,
getComponentFromProp,
isValidElement,
} from '../_util/props-util';
import { cloneElement } from '../_util/vnode';
2018-03-19 02:16:27 +00:00
2019-01-12 03:33:27 +00:00
export function generateShowHourMinuteSecond(format) {
2018-03-07 14:21:55 +00:00
// Ref: http://momentjs.com/docs/#/parsing/string-format/
return {
2019-01-12 03:33:27 +00:00
showHour: format.indexOf('H') > -1 || format.indexOf('h') > -1 || format.indexOf('k') > -1,
2018-03-07 14:21:55 +00:00
showMinute: format.indexOf('m') > -1,
showSecond: format.indexOf('s') > -1,
2019-01-12 03:33:27 +00:00
};
2018-03-07 14:21:55 +00:00
}
2019-01-12 03:33:27 +00:00
function isMoment(value) {
2018-03-17 13:38:29 +00:00
if (Array.isArray(value)) {
2019-01-12 03:33:27 +00:00
return (
value.length === 0 || value.findIndex(val => val === undefined || moment.isMoment(val)) !== -1
);
2018-03-17 13:38:29 +00:00
} else {
2019-01-12 03:33:27 +00:00
return value === undefined || moment.isMoment(value);
2018-03-17 13:38:29 +00:00
}
}
2019-01-12 03:33:27 +00:00
const MomentType = PropTypes.custom(isMoment);
2018-03-16 03:19:02 +00:00
export const TimePickerProps = () => ({
2018-03-08 15:02:04 +00:00
size: PropTypes.oneOf(['large', 'default', 'small']),
2018-03-17 13:38:29 +00:00
value: MomentType,
defaultValue: MomentType,
2018-03-08 15:02:04 +00:00
open: PropTypes.bool,
format: PropTypes.string,
disabled: PropTypes.bool,
placeholder: PropTypes.string,
prefixCls: PropTypes.string,
hideDisabledOptions: PropTypes.bool,
disabledHours: PropTypes.func,
disabledMinutes: PropTypes.func,
disabledSeconds: PropTypes.func,
getPopupContainer: PropTypes.func,
use12Hours: PropTypes.bool,
focusOnOpen: PropTypes.bool,
hourStep: PropTypes.number,
minuteStep: PropTypes.number,
secondStep: PropTypes.number,
allowEmpty: PropTypes.bool,
2018-04-07 06:29:59 +00:00
inputReadOnly: PropTypes.bool,
2018-03-08 15:02:04 +00:00
clearText: PropTypes.string,
defaultOpenValue: PropTypes.object,
popupClassName: PropTypes.string,
2018-12-09 04:50:26 +00:00
suffixIcon: PropTypes.any,
2018-03-08 15:02:04 +00:00
align: PropTypes.object,
placement: PropTypes.any,
transitionName: PropTypes.string,
autoFocus: PropTypes.bool,
addon: PropTypes.any,
2019-01-12 03:33:27 +00:00
});
2018-03-07 14:21:55 +00:00
const TimePicker = {
2018-04-08 13:17:20 +00:00
name: 'ATimePicker',
2018-03-08 15:02:04 +00:00
mixins: [BaseMixin],
2018-03-16 03:19:02 +00:00
props: initDefaultProps(TimePickerProps(), {
2018-03-07 14:21:55 +00:00
prefixCls: 'ant-time-picker',
align: {
offset: [0, -2],
},
disabled: false,
disabledHours: undefined,
disabledMinutes: undefined,
disabledSeconds: undefined,
hideDisabledOptions: false,
placement: 'bottomLeft',
transitionName: 'slide-up',
focusOnOpen: true,
2018-03-08 15:02:04 +00:00
}),
model: {
prop: 'value',
event: 'change',
},
inject: {
2019-01-28 13:09:13 +00:00
configProvider: { default: () => ({}) },
},
2019-01-12 03:33:27 +00:00
data() {
const value = this.value || this.defaultValue;
2018-04-07 06:29:59 +00:00
if (value && !interopDefault(moment).isMoment(value)) {
2019-01-12 03:33:27 +00:00
throw new Error('The value/defaultValue of TimePicker must be a moment object, ');
2018-03-07 14:21:55 +00:00
}
2018-03-08 15:02:04 +00:00
return {
sValue: value,
2019-01-12 03:33:27 +00:00
};
2018-03-08 15:02:04 +00:00
},
watch: {
2019-01-12 03:33:27 +00:00
value(val) {
this.setState({ sValue: val });
2018-03-08 15:02:04 +00:00
},
},
methods: {
2019-01-12 03:33:27 +00:00
handleChange(value) {
2018-03-08 15:02:04 +00:00
if (!hasProp(this, 'value')) {
2019-01-12 03:33:27 +00:00
this.setState({ sValue: value });
2018-03-08 15:02:04 +00:00
}
2019-01-12 03:33:27 +00:00
const { format = 'HH:mm:ss' } = this;
this.$emit('change', value, (value && value.format(format)) || '');
2018-03-08 15:02:04 +00:00
},
2018-03-07 14:21:55 +00:00
2019-01-12 03:33:27 +00:00
handleOpenClose({ open }) {
this.$emit('openChange', open);
this.$emit('update:open', open);
2018-03-08 15:02:04 +00:00
},
2018-03-07 14:21:55 +00:00
2019-01-12 03:33:27 +00:00
focus() {
this.$refs.timePicker.focus();
2018-03-08 15:02:04 +00:00
},
2018-03-07 14:21:55 +00:00
2019-01-12 03:33:27 +00:00
blur() {
this.$refs.timePicker.blur();
2018-03-08 15:02:04 +00:00
},
2018-03-07 14:21:55 +00:00
2019-01-12 03:33:27 +00:00
getDefaultFormat() {
const { format, use12Hours } = this;
2018-03-08 15:02:04 +00:00
if (format) {
2019-01-12 03:33:27 +00:00
return format;
2018-03-08 15:02:04 +00:00
} else if (use12Hours) {
2019-01-12 03:33:27 +00:00
return 'h:mm:ss a';
2018-03-08 15:02:04 +00:00
}
2019-01-12 03:33:27 +00:00
return 'HH:mm:ss';
2018-03-08 15:02:04 +00:00
},
2018-03-07 14:21:55 +00:00
2019-01-12 03:33:27 +00:00
renderTimePicker(locale) {
const props = getOptionProps(this);
delete props.defaultValue;
2018-03-08 15:02:04 +00:00
2019-01-12 03:33:27 +00:00
const format = this.getDefaultFormat();
2018-03-08 15:02:04 +00:00
const className = {
[`${props.prefixCls}-${props.size}`]: !!props.size,
2019-01-12 03:33:27 +00:00
};
const tempAddon = getComponentFromProp(this, 'addon', {}, false);
const addon = panel => {
return tempAddon ? (
<div class={`${props.prefixCls}-panel-addon`}>
{typeof tempAddon === 'function' ? tempAddon(panel) : tempAddon}
</div>
2019-01-12 03:33:27 +00:00
) : null;
};
const { prefixCls, getPopupContainer } = props;
let suffixIcon = getComponentFromProp(this, 'suffixIcon');
suffixIcon = Array.isArray(suffixIcon) ? suffixIcon[0] : suffixIcon;
const clockIcon = (suffixIcon &&
(isValidElement(suffixIcon) ? (
cloneElement(suffixIcon, {
class: `${prefixCls}-clock-icon`,
})
) : (
<span class={`${prefixCls}-clock-icon`}>{suffixIcon}</span>
))) || <Icon type="clock-circle" class={`${prefixCls}-clock-icon`} theme="outlined" />;
2018-12-09 04:50:26 +00:00
2019-01-12 03:33:27 +00:00
const inputIcon = <span class={`${prefixCls}-icon`}>{clockIcon}</span>;
2018-12-09 04:50:26 +00:00
const clearIcon = (
2019-01-12 03:33:27 +00:00
<Icon type="close-circle" class={`${prefixCls}-panel-clear-btn-icon`} theme="filled" />
);
const { getPopupContainer: getContextPopupContainer } = this.configProvider;
2018-03-08 15:02:04 +00:00
const timeProps = {
props: {
...generateShowHourMinuteSecond(format),
...props,
getPopupContainer: getPopupContainer || getContextPopupContainer,
2018-03-08 15:02:04 +00:00
format,
value: this.sValue,
placeholder: props.placeholder === undefined ? locale.placeholder : props.placeholder,
2018-12-09 04:50:26 +00:00
addon,
inputIcon,
clearIcon,
2018-03-08 15:02:04 +00:00
},
class: className,
ref: 'timePicker',
on: {
...this.$listeners,
2018-03-08 15:02:04 +00:00
change: this.handleChange,
open: this.handleOpenClose,
close: this.handleOpenClose,
},
2019-01-12 03:33:27 +00:00
};
return <VcTimePicker {...timeProps} />;
2018-03-08 15:02:04 +00:00
},
},
2018-03-07 14:21:55 +00:00
2019-01-12 03:33:27 +00:00
render() {
2018-03-07 14:21:55 +00:00
return (
<LocaleReceiver
2019-01-12 03:33:27 +00:00
componentName="TimePicker"
2018-03-07 14:21:55 +00:00
defaultLocale={defaultLocale}
2019-01-12 03:33:27 +00:00
scopedSlots={{ default: this.renderTimePicker }}
2018-03-08 15:02:04 +00:00
/>
2019-01-12 03:33:27 +00:00
);
2018-03-08 15:02:04 +00:00
},
2019-01-12 03:33:27 +00:00
};
2018-03-19 02:16:27 +00:00
/* istanbul ignore next */
2019-01-12 03:33:27 +00:00
TimePicker.install = function(Vue) {
Vue.component(TimePicker.name, TimePicker);
};
2019-01-12 03:33:27 +00:00
export default TimePicker;