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

189 lines
4.9 KiB
Vue
Raw Normal View History

2018-03-19 02:16:27 +00:00
2018-03-08 15:02:04 +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'
2018-04-07 06:29:59 +00:00
import interopDefault from '../_util/interopDefault'
2018-03-08 15:02:04 +00:00
import { initDefaultProps, hasProp, getOptionProps, getComponentFromProp } from '../_util/props-util'
export function generateShowHourMinuteSecond (format) {
2018-03-07 14:21:55 +00:00
// Ref: http://momentjs.com/docs/#/parsing/string-format/
return {
showHour: (
format.indexOf('H') > -1 ||
format.indexOf('h') > -1 ||
format.indexOf('k') > -1
),
showMinute: format.indexOf('m') > -1,
showSecond: format.indexOf('s') > -1,
2018-03-08 15:02:04 +00:00
}
2018-03-07 14:21:55 +00:00
}
2018-03-17 13:38:29 +00:00
function isMoment (value) {
if (Array.isArray(value)) {
return value.length === 0 || value.findIndex((val) => val === undefined || moment.isMoment(val)) !== -1
2018-03-17 13:38:29 +00:00
} else {
return value === undefined || moment.isMoment(value)
}
}
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,
align: PropTypes.object,
placement: PropTypes.any,
transitionName: PropTypes.string,
autoFocus: PropTypes.bool,
addon: PropTypes.any,
2018-03-16 03:19:02 +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',
},
data () {
const value = this.value || this.defaultValue
2018-04-07 06:29:59 +00:00
if (value && !interopDefault(moment).isMoment(value)) {
2018-03-07 14:21:55 +00:00
throw new Error(
2018-03-08 15:02:04 +00:00
'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,
2018-03-07 14:21:55 +00:00
}
2018-03-08 15:02:04 +00:00
},
watch: {
value (val) {
this.setState({ sValue: val })
},
},
methods: {
handleChange (value) {
if (!hasProp(this, 'value')) {
this.setState({ sValue: value })
}
const { format = 'HH:mm:ss' } = this
this.$emit('change', value, (value && value.format(format)) || '')
},
2018-03-07 14:21:55 +00:00
2018-03-08 15:02:04 +00:00
handleOpenClose ({ open }) {
this.$emit('openChange', open)
this.$emit('update:open', open)
},
2018-03-07 14:21:55 +00:00
2018-03-08 15:02:04 +00:00
focus () {
this.$refs.timePicker.focus()
},
2018-03-07 14:21:55 +00:00
2018-03-08 15:02:04 +00:00
blur () {
this.$refs.timePicker.blur()
},
2018-03-07 14:21:55 +00:00
2018-03-08 15:02:04 +00:00
getDefaultFormat () {
const { format, use12Hours } = this
if (format) {
return format
} else if (use12Hours) {
return 'h:mm:ss a'
}
return 'HH:mm:ss'
},
2018-03-07 14:21:55 +00:00
2018-03-08 15:02:04 +00:00
renderTimePicker (locale) {
const props = getOptionProps(this)
delete props.defaultValue
const format = this.getDefaultFormat()
const className = {
[`${props.prefixCls}-${props.size}`]: !!props.size,
}
const tempAddon = getComponentFromProp(this, 'addon')
const timeProps = {
props: {
...generateShowHourMinuteSecond(format),
...props,
format,
value: this.sValue,
placeholder: props.placeholder === undefined ? locale.placeholder : props.placeholder,
},
class: className,
ref: 'timePicker',
on: {
...this.$listeners,
2018-03-08 15:02:04 +00:00
change: this.handleChange,
open: this.handleOpenClose,
close: this.handleOpenClose,
},
}
return (
<VcTimePicker {...timeProps}>
{tempAddon ? <template slot='addon'>
<div class={`${props.prefixCls}-panel-addon`}>
{tempAddon}
</div>
</template> : null}
</VcTimePicker>
)
},
},
2018-03-07 14:21:55 +00:00
2018-03-08 15:02:04 +00:00
render () {
2018-03-07 14:21:55 +00:00
return (
<LocaleReceiver
2018-03-08 15:02:04 +00:00
componentName='TimePicker'
2018-03-07 14:21:55 +00:00
defaultLocale={defaultLocale}
2018-08-08 01:38:32 +00:00
scopedSlots={
{ default: this.renderTimePicker }
}
2018-03-08 15:02:04 +00:00
/>
)
},
2018-03-07 14:21:55 +00:00
}
2018-03-19 02:16:27 +00:00
/* istanbul ignore next */
TimePicker.install = function (Vue) {
Vue.component(TimePicker.name, TimePicker)
}
export default TimePicker