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.
194 lines
5.2 KiB
194 lines
5.2 KiB
7 years ago
|
|
||
7 years ago
|
import PropTypes from '../_util/vue-types'
|
||
7 years ago
|
import Select from './Select'
|
||
7 years ago
|
import BaseMixin from '../_util/BaseMixin'
|
||
7 years ago
|
|
||
|
const formatOption = (option, disabledOptions) => {
|
||
|
let value = `${option}`
|
||
|
if (option < 10) {
|
||
|
value = `0${option}`
|
||
|
}
|
||
|
|
||
|
let disabled = false
|
||
|
if (disabledOptions && disabledOptions.indexOf(option) >= 0) {
|
||
|
disabled = true
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
value,
|
||
|
disabled,
|
||
|
}
|
||
|
}
|
||
|
|
||
7 years ago
|
const Combobox = {
|
||
|
mixins: [BaseMixin],
|
||
|
name: 'Combobox',
|
||
|
props: {
|
||
7 years ago
|
format: PropTypes.string,
|
||
|
defaultOpenValue: PropTypes.object,
|
||
|
prefixCls: PropTypes.string,
|
||
|
value: PropTypes.object,
|
||
7 years ago
|
// onChange: PropTypes.func,
|
||
7 years ago
|
showHour: PropTypes.bool,
|
||
|
showMinute: PropTypes.bool,
|
||
|
showSecond: PropTypes.bool,
|
||
|
hourOptions: PropTypes.array,
|
||
|
minuteOptions: PropTypes.array,
|
||
|
secondOptions: PropTypes.array,
|
||
|
disabledHours: PropTypes.func,
|
||
|
disabledMinutes: PropTypes.func,
|
||
|
disabledSeconds: PropTypes.func,
|
||
7 years ago
|
// onCurrentSelectPanelChange: PropTypes.func,
|
||
7 years ago
|
use12Hours: PropTypes.bool,
|
||
|
isAM: PropTypes.bool,
|
||
7 years ago
|
},
|
||
|
methods: {
|
||
|
onItemChange (type, itemValue) {
|
||
|
const { defaultOpenValue, use12Hours, isAM } = this
|
||
|
const value = (this.value || defaultOpenValue).clone()
|
||
|
|
||
|
if (type === 'hour') {
|
||
|
if (use12Hours) {
|
||
|
if (isAM) {
|
||
|
value.hour(+itemValue % 12)
|
||
|
} else {
|
||
|
value.hour((+itemValue % 12) + 12)
|
||
|
}
|
||
7 years ago
|
} else {
|
||
7 years ago
|
value.hour(+itemValue)
|
||
7 years ago
|
}
|
||
7 years ago
|
} else if (type === 'minute') {
|
||
|
value.minute(+itemValue)
|
||
|
} else if (type === 'ampm') {
|
||
|
const ampm = itemValue.toUpperCase()
|
||
|
if (use12Hours) {
|
||
|
if (ampm === 'PM' && value.hour() < 12) {
|
||
|
value.hour((value.hour() % 12) + 12)
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
if (ampm === 'AM') {
|
||
|
if (value.hour() >= 12) {
|
||
|
value.hour(value.hour() - 12)
|
||
|
}
|
||
7 years ago
|
}
|
||
|
}
|
||
7 years ago
|
} else {
|
||
|
value.second(+itemValue)
|
||
7 years ago
|
}
|
||
7 years ago
|
this.__emit('change', value)
|
||
|
},
|
||
7 years ago
|
|
||
7 years ago
|
onEnterSelectPanel (range) {
|
||
|
this.__emit('currentSelectPanelChange', range)
|
||
|
},
|
||
7 years ago
|
|
||
7 years ago
|
getHourSelect (hour) {
|
||
|
const { prefixCls, hourOptions, disabledHours, showHour, use12Hours } = this
|
||
|
if (!showHour) {
|
||
|
return null
|
||
|
}
|
||
|
const disabledOptions = disabledHours()
|
||
|
let hourOptionsAdj
|
||
|
let hourAdj
|
||
|
if (use12Hours) {
|
||
|
hourOptionsAdj = [12].concat(hourOptions.filter(h => h < 12 && h > 0))
|
||
|
hourAdj = (hour % 12) || 12
|
||
|
} else {
|
||
|
hourOptionsAdj = hourOptions
|
||
|
hourAdj = hour
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
return (
|
||
|
<Select
|
||
|
prefixCls={prefixCls}
|
||
|
options={hourOptionsAdj.map(option => formatOption(option, disabledOptions))}
|
||
|
selectedIndex={hourOptionsAdj.indexOf(hourAdj)}
|
||
|
type='hour'
|
||
|
onSelect={this.onItemChange}
|
||
|
onMouseenter={this.onEnterSelectPanel.bind(this, 'hour')}
|
||
|
/>
|
||
|
)
|
||
|
},
|
||
|
|
||
|
getMinuteSelect (minute) {
|
||
|
const { prefixCls, minuteOptions, disabledMinutes, defaultOpenValue, showMinute } = this
|
||
|
if (!showMinute) {
|
||
|
return null
|
||
|
}
|
||
|
const value = this.value || defaultOpenValue
|
||
|
const disabledOptions = disabledMinutes(value.hour())
|
||
|
|
||
|
return (
|
||
|
<Select
|
||
|
prefixCls={prefixCls}
|
||
|
options={minuteOptions.map(option => formatOption(option, disabledOptions))}
|
||
|
selectedIndex={minuteOptions.indexOf(minute)}
|
||
|
type='minute'
|
||
|
onSelect={this.onItemChange}
|
||
|
onMouseenter={this.onEnterSelectPanel.bind(this, 'minute')}
|
||
|
/>
|
||
|
)
|
||
|
},
|
||
|
|
||
|
getSecondSelect (second) {
|
||
|
const { prefixCls, secondOptions, disabledSeconds, showSecond, defaultOpenValue } = this
|
||
|
if (!showSecond) {
|
||
|
return null
|
||
|
}
|
||
|
const value = this.value || defaultOpenValue
|
||
|
const disabledOptions = disabledSeconds(value.hour(), value.minute())
|
||
|
|
||
|
return (
|
||
|
<Select
|
||
|
prefixCls={prefixCls}
|
||
|
options={secondOptions.map(option => formatOption(option, disabledOptions))}
|
||
|
selectedIndex={secondOptions.indexOf(second)}
|
||
|
type='second'
|
||
|
onSelect={this.onItemChange}
|
||
|
onMouseenter={this.onEnterSelectPanel.bind(this, 'second')}
|
||
|
/>
|
||
|
)
|
||
|
},
|
||
|
|
||
|
getAMPMSelect () {
|
||
|
const { prefixCls, use12Hours, format, isAM } = this
|
||
|
if (!use12Hours) {
|
||
|
return null
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
const AMPMOptions = ['am', 'pm'] // If format has A char, then we should uppercase AM/PM
|
||
|
.map(c => format.match(/\sA/) ? c.toUpperCase() : c)
|
||
|
.map(c => ({ value: c }))
|
||
|
|
||
|
const selected = isAM ? 0 : 1
|
||
|
|
||
|
return (
|
||
|
<Select
|
||
|
prefixCls={prefixCls}
|
||
|
options={AMPMOptions}
|
||
|
selectedIndex={selected}
|
||
|
type='ampm'
|
||
|
onSelect={this.onItemChange}
|
||
|
onMouseenter={this.onEnterSelectPanel.bind(this, 'ampm')}
|
||
|
/>
|
||
|
)
|
||
|
},
|
||
|
},
|
||
7 years ago
|
|
||
|
render () {
|
||
7 years ago
|
const { prefixCls, defaultOpenValue } = this
|
||
|
const value = this.value || defaultOpenValue
|
||
7 years ago
|
return (
|
||
7 years ago
|
<div class={`${prefixCls}-combobox`}>
|
||
7 years ago
|
{this.getHourSelect(value.hour())}
|
||
|
{this.getMinuteSelect(value.minute())}
|
||
|
{this.getSecondSelect(value.second())}
|
||
|
{this.getAMPMSelect(value.hour())}
|
||
|
</div>
|
||
|
)
|
||
7 years ago
|
},
|
||
7 years ago
|
}
|
||
|
|
||
|
export default Combobox
|
||
|
|