
refactor Datepicker to render subcomponents in template instead of creating new Vue instances
74 lines
2.7 KiB
Vue
74 lines
2.7 KiB
Vue
<template>
|
|
<div :class="classes">
|
|
<span
|
|
:class="getCellCls(cell)"
|
|
v-for="cell in cells"
|
|
@click="handleClick(cell)"
|
|
@mouseenter="handleMouseMove(cell)"
|
|
|
|
>
|
|
<em>{{ cell.text }}</em>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { clearHours, isInRange } from '../util';
|
|
import { deepCopy } from '../../../utils/assist';
|
|
import Locale from '../../../mixins/locale';
|
|
import mixin from './mixin';
|
|
import prefixCls from './prefixCls';
|
|
|
|
export default {
|
|
mixins: [ Locale, mixin ],
|
|
props: {/* in mixin */},
|
|
computed: {
|
|
classes() {
|
|
return [
|
|
`${prefixCls}`,
|
|
`${prefixCls}-month`
|
|
];
|
|
},
|
|
cells () {
|
|
let cells = [];
|
|
const cell_tmpl = {
|
|
text: '',
|
|
selected: false,
|
|
disabled: false
|
|
};
|
|
|
|
const tableYear = this.tableDate.getFullYear();
|
|
const rangeStart = this.rangeState.from && clearHours(new Date(this.rangeState.from.getFullYear(), this.rangeState.from.getMonth(), 1));
|
|
const rangeEnd = this.rangeState.to && clearHours(new Date(this.rangeState.to.getFullYear(), this.rangeState.to.getMonth(), 1));
|
|
const selectedDays = this.dates.filter(Boolean).map(date => clearHours(new Date(date.getFullYear(), date.getMonth(), 1)));
|
|
|
|
for (let i = 0; i < 12; i++) {
|
|
const cell = deepCopy(cell_tmpl);
|
|
cell.date = new Date(tableYear, i, 1);
|
|
cell.text = this.tCell(i + 1);
|
|
const time = clearHours(cell.date);
|
|
cell.range = isInRange(time, rangeStart, rangeEnd);
|
|
cell.disabled = typeof this.disabledDate === 'function' && this.disabledDate(cell.date) && this.selectionMode === 'month';
|
|
cell.selected = selectedDays.includes(time);
|
|
cells.push(cell);
|
|
}
|
|
|
|
return cells;
|
|
}
|
|
},
|
|
methods: {
|
|
getCellCls (cell) {
|
|
return [
|
|
`${prefixCls}-cell`,
|
|
{
|
|
[`${prefixCls}-cell-selected`]: cell.selected,
|
|
[`${prefixCls}-cell-disabled`]: cell.disabled,
|
|
[`${prefixCls}-cell-range`]: cell.range && !cell.start && !cell.end
|
|
}
|
|
];
|
|
},
|
|
tCell (nr) {
|
|
return this.t(`i.datepicker.months.m${nr}`);
|
|
}
|
|
}
|
|
};
|
|
</script>
|