iview/src/components/date-picker/base/year-table.vue

73 lines
2.5 KiB
Vue
Raw Normal View History

2016-12-12 10:37:52 +08:00
<template>
2018-01-16 22:24:21 +01:00
<div :class="classes">
<span
:class="getCellCls(cell)"
v-for="cell in cells"
@click="handleClick(cell)"
@mouseenter="handleMouseMove(cell)"
>
<em>{{ cell.date.getFullYear() }}</em>
</span>
2016-12-15 20:16:58 +08:00
</div>
2016-12-12 10:37:52 +08:00
</template>
<script>
2018-01-16 22:24:21 +01:00
import { clearHours, isInRange } from '../util';
2016-12-15 20:16:58 +08:00
import { deepCopy } from '../../../utils/assist';
2018-01-16 22:24:21 +01:00
import mixin from './mixin';
import prefixCls from './prefixCls';
2016-12-15 20:16:58 +08:00
2016-12-12 10:37:52 +08:00
export default {
2018-01-16 22:24:21 +01:00
mixins: [ mixin ],
props: {/* in mixin */},
2016-12-15 20:16:58 +08:00
computed: {
2018-01-16 22:24:21 +01:00
classes() {
2016-12-15 20:16:58 +08:00
return [
`${prefixCls}`,
`${prefixCls}-year`
2016-12-25 22:49:42 +08:00
];
2016-12-15 20:16:58 +08:00
},
startYear() {
2018-01-16 22:24:21 +01:00
return Math.floor(this.tableDate.getFullYear() / 10) * 10;
2016-12-15 20:16:58 +08:00
},
cells () {
let cells = [];
const cell_tmpl = {
text: '',
selected: false,
disabled: false
};
2018-01-16 22:24:21 +01:00
const rangeStart = this.rangeState.from && clearHours(new Date(this.rangeState.from.getFullYear(), 0, 1));
const rangeEnd = this.rangeState.to && clearHours(new Date(this.rangeState.to.getFullYear(), 0, 1));
const selectedDays = this.dates.filter(Boolean).map(date => clearHours(new Date(date.getFullYear(), 0, 1)));
2016-12-15 20:16:58 +08:00
2018-01-16 22:24:21 +01:00
for (let i = 0; i < 10; i++) {
const cell = deepCopy(cell_tmpl);
cell.date = new Date(this.startYear + i, 0, 1);
cell.disabled = typeof this.disabledDate === 'function' && this.disabledDate(cell.date) && this.selectionMode === 'year';
const time = clearHours(cell.date);
cell.range = isInRange(time, rangeStart, rangeEnd);
cell.selected = selectedDays.includes(time);
2016-12-15 20:16:58 +08:00
cells.push(cell);
}
return cells;
}
},
methods: {
getCellCls (cell) {
return [
`${prefixCls}-cell`,
{
[`${prefixCls}-cell-selected`]: cell.selected,
2018-01-16 22:24:21 +01:00
[`${prefixCls}-cell-disabled`]: cell.disabled,
[`${prefixCls}-cell-range`]: cell.range && !cell.start && !cell.end
2016-12-15 20:16:58 +08:00
}
2016-12-25 22:49:42 +08:00
];
2016-12-15 20:16:58 +08:00
},
}
2016-12-25 22:49:42 +08:00
};
</script>