iview/src/components/date-picker/panel/date-range.vue

358 lines
14 KiB
Vue
Raw Normal View History

2016-12-12 10:37:52 +08:00
<template>
2016-12-19 09:59:08 +08:00
<div :class="classes">
2016-12-19 14:44:07 +08:00
<div :class="[prefixCls + '-sidebar']" v-if="shortcuts.length">
<div
:class="[prefixCls + '-shortcut']"
v-for="shortcut in shortcuts"
@click="handleShortcutClick(shortcut)">{{ shortcut.text }}</div>
</div>
<div :class="[prefixCls + '-body']">
<div :class="[prefixCls + '-content', prefixCls + '-content-left']">
2016-12-19 21:09:57 +08:00
<div :class="[datePrefixCls + '-header']" v-show="leftCurrentView !== 'time'">
2016-12-19 14:44:07 +08:00
<span
:class="iconBtnCls('prev', '-double')"
2016-12-19 21:09:57 +08:00
@click="prevYear('left')"><Icon type="ios-arrow-left"></Icon></span>
2016-12-19 14:44:07 +08:00
<span
:class="iconBtnCls('prev')"
@click="prevMonth"
2016-12-19 21:09:57 +08:00
v-show="leftCurrentView === 'date'"><Icon type="ios-arrow-left"></Icon></span>
2016-12-19 14:44:07 +08:00
<span
:class="[datePrefixCls + '-header-label']"
2016-12-19 21:09:57 +08:00
@click="showYearPicker('left')">{{ leftYearLabel }}</span>
2016-12-19 14:44:07 +08:00
<span
:class="[datePrefixCls + '-header-label']"
2016-12-19 21:09:57 +08:00
@click="showMonthPicker('left')"
v-show="leftCurrentView === 'date'">{{ leftMonth + 1 }} </span>
<span
:class="iconBtnCls('next', '-double')"
@click="nextYear('left')"
v-show="leftCurrentView === 'year' || leftCurrentView === 'month'"><Icon type="ios-arrow-right"></Icon></span>
2016-12-19 14:44:07 +08:00
</div>
<date-table
2016-12-19 21:09:57 +08:00
v-show="leftCurrentView === 'date'"
2016-12-19 14:44:07 +08:00
:year="leftYear"
:month="leftMonth"
:date="date"
:min-date="minDate"
:max-date="maxDate"
:range-state="rangeState"
2016-12-19 16:21:54 +08:00
selection-mode="range"
2016-12-19 14:44:07 +08:00
:disabled-date="disabledDate"
2016-12-19 16:21:54 +08:00
@on-changerange="handleChangeRange"
2016-12-22 09:18:11 +08:00
@on-pick="handleRangePick"
@on-pick-click="handlePickClick"></date-table>
2016-12-19 21:09:57 +08:00
<year-table
v-ref:left-year-table
v-show="leftCurrentView === 'year'"
2016-12-19 21:59:36 +08:00
:year="leftTableYear"
:date="leftTableDate"
2016-12-19 21:09:57 +08:00
selection-mode="range"
:disabled-date="disabledDate"
2016-12-22 09:18:11 +08:00
@on-pick="handleLeftYearPick"
@on-pick-click="handlePickClick"></year-table>
2016-12-19 21:09:57 +08:00
<month-table
v-ref:left-month-table
v-show="leftCurrentView === 'month'"
:month="leftMonth"
2016-12-19 21:59:36 +08:00
:date="leftTableDate"
2016-12-19 21:09:57 +08:00
selection-mode="range"
:disabled-date="disabledDate"
2016-12-22 09:18:11 +08:00
@on-pick="handleLeftMonthPick"
@on-pick-click="handlePickClick"></month-table>
2016-12-19 14:44:07 +08:00
</div>
<div :class="[prefixCls + '-content', prefixCls + '-content-right']">
2016-12-19 21:09:57 +08:00
<div :class="[datePrefixCls + '-header']" v-show="rightCurrentView !== 'time'">
<span
:class="iconBtnCls('prev', '-double')"
@click="prevYear('right')"
v-show="rightCurrentView === 'year' || rightCurrentView === 'month'"><Icon type="ios-arrow-left"></Icon></span>
2016-12-19 14:44:07 +08:00
<span
:class="[datePrefixCls + '-header-label']"
2016-12-19 21:09:57 +08:00
@click="showYearPicker('right')">{{ rightYearLabel }}</span>
2016-12-19 14:44:07 +08:00
<span
:class="[datePrefixCls + '-header-label']"
2016-12-19 21:09:57 +08:00
@click="showMonthPicker('right')"
v-show="rightCurrentView === 'date'">{{ rightMonth + 1 }} </span>
2016-12-19 14:44:07 +08:00
<span
:class="iconBtnCls('next', '-double')"
2016-12-19 21:09:57 +08:00
@click="nextYear('right')"><Icon type="ios-arrow-right"></Icon></span>
2016-12-19 14:44:07 +08:00
<span
:class="iconBtnCls('next')"
@click="nextMonth"
2016-12-19 21:09:57 +08:00
v-show="rightCurrentView === 'date'"><Icon type="ios-arrow-right"></Icon></span>
2016-12-19 14:44:07 +08:00
</div>
<date-table
2016-12-19 21:09:57 +08:00
v-show="rightCurrentView === 'date'"
2016-12-19 14:44:07 +08:00
:year="rightYear"
:month="rightMonth"
:date="rightDate"
:min-date="minDate"
:max-date="maxDate"
:range-state="rangeState"
2016-12-19 16:21:54 +08:00
selection-mode="range"
2016-12-19 14:44:07 +08:00
:disabled-date="disabledDate"
2016-12-19 16:21:54 +08:00
@on-changerange="handleChangeRange"
2016-12-22 09:18:11 +08:00
@on-pick="handleRangePick"
@on-pick-click="handlePickClick"></date-table>
2016-12-19 21:09:57 +08:00
<year-table
v-ref:right-year-table
v-show="rightCurrentView === 'year'"
2016-12-19 21:59:36 +08:00
:year="rightTableYear"
:date="rightTableDate"
2016-12-19 21:09:57 +08:00
selection-mode="range"
:disabled-date="disabledDate"
2016-12-22 09:18:11 +08:00
@on-pick="handleRightYearPick"
@on-pick-click="handlePickClick"></year-table>
2016-12-19 21:09:57 +08:00
<month-table
v-ref:right-month-table
v-show="rightCurrentView === 'month'"
:month="rightMonth"
2016-12-19 21:59:36 +08:00
:date="rightTableDate"
2016-12-19 21:09:57 +08:00
selection-mode="range"
:disabled-date="disabledDate"
2016-12-22 09:18:11 +08:00
@on-pick="handleRightMonthPick"
@on-pick-click="handlePickClick"></month-table>
2016-12-19 14:44:07 +08:00
</div>
<Confirm
v-if="confirm"
@on-pick-clear="handlePickClear"
@on-pick-success="handlePickSuccess"></Confirm>
2016-12-19 14:44:07 +08:00
</div>
2016-12-19 09:59:08 +08:00
</div>
2016-12-12 10:37:52 +08:00
</template>
<script>
2016-12-19 14:44:07 +08:00
import Icon from '../../icon/icon.vue';
import DateTable from '../base/date-table.vue';
2016-12-19 21:09:57 +08:00
import YearTable from '../base/year-table.vue';
import MonthTable from '../base/month-table.vue';
import Confirm from '../base/confirm.vue';
import { toDate, prevMonth, nextMonth, initTimeDate } from '../util';
2016-12-19 14:44:07 +08:00
import Mixin from './mixin';
2016-12-19 09:59:08 +08:00
const prefixCls = 'ivu-picker-panel';
const datePrefixCls = 'ivu-date-picker';
2016-12-12 10:37:52 +08:00
export default {
2016-12-19 14:44:07 +08:00
mixins: [Mixin],
components: { Icon, DateTable, YearTable, MonthTable, Confirm },
2016-12-12 10:37:52 +08:00
data () {
2016-12-19 14:44:07 +08:00
return {
prefixCls: prefixCls,
datePrefixCls: datePrefixCls,
shortcuts: [],
date: initTimeDate(),
2016-12-19 14:44:07 +08:00
value: '',
minDate: '',
maxDate: '',
confirm: false,
2016-12-19 14:44:07 +08:00
rangeState: {
endDate: null,
selecting: false
},
showTime: false,
disabledDate: '',
2016-12-19 21:09:57 +08:00
leftCurrentView: 'date',
rightCurrentView: 'date',
2016-12-19 21:59:36 +08:00
selectionMode: 'range',
leftTableYear: null,
rightTableYear: null
2016-12-25 22:49:42 +08:00
};
2016-12-12 10:37:52 +08:00
},
2016-12-19 09:59:08 +08:00
computed: {
classes () {
return [
`${prefixCls}-body-wrapper`,
2016-12-19 14:44:07 +08:00
`${datePrefixCls}-with-range`,
2016-12-19 09:59:08 +08:00
{
[`${prefixCls}-with-sidebar`]: this.shortcuts.length
}
2016-12-25 22:49:42 +08:00
];
2016-12-19 14:44:07 +08:00
},
2016-12-19 21:59:36 +08:00
leftYear () {
2016-12-19 14:44:07 +08:00
return this.date.getFullYear();
},
2016-12-19 21:59:36 +08:00
leftTableDate () {
if (this.leftCurrentView === 'year' || this.leftCurrentView === 'month') {
return new Date(this.leftTableYear);
} else {
return this.date;
}
},
2016-12-19 21:09:57 +08:00
leftYearLabel () {
if (this.leftCurrentView === 'year') {
2016-12-19 21:59:36 +08:00
const year = this.leftTableYear;
if (!year) return '';
2016-12-19 21:09:57 +08:00
const startYear = Math.floor(year / 10) * 10;
return `${startYear}年 - ${startYear + 9}`;
2016-12-19 21:59:36 +08:00
} else {
const year = this.leftCurrentView === 'month' ? this.leftTableYear : this.leftYear;
if (!year) return '';
return `${year}`;
2016-12-19 21:09:57 +08:00
}
},
2016-12-19 21:59:36 +08:00
leftMonth () {
2016-12-19 14:44:07 +08:00
return this.date.getMonth();
},
2016-12-19 21:59:36 +08:00
rightYear () {
2016-12-19 14:44:07 +08:00
return this.rightDate.getFullYear();
},
2016-12-19 21:59:36 +08:00
rightTableDate () {
if (this.rightCurrentView === 'year' || this.rightCurrentView === 'month') {
return new Date(this.rightTableYear);
} else {
return this.date;
}
},
2016-12-19 21:09:57 +08:00
rightYearLabel () {
if (this.rightCurrentView === 'year') {
2016-12-19 21:59:36 +08:00
const year = this.rightTableYear;
if (!year) return '';
2016-12-19 21:09:57 +08:00
const startYear = Math.floor(year / 10) * 10;
return `${startYear}年 - ${startYear + 9}`;
2016-12-19 21:59:36 +08:00
} else {
const year = this.rightCurrentView === 'month' ? this.rightTableYear : this.rightYear;
if (!year) return '';
return `${year}`;
2016-12-19 21:09:57 +08:00
}
},
2016-12-19 21:59:36 +08:00
rightMonth () {
2016-12-19 14:44:07 +08:00
return this.rightDate.getMonth();
},
2016-12-19 21:59:36 +08:00
rightDate () {
2016-12-19 14:44:07 +08:00
const newDate = new Date(this.date);
const month = newDate.getMonth();
newDate.setDate(1);
if (month === 11) {
newDate.setFullYear(newDate.getFullYear() + 1);
newDate.setMonth(0);
} else {
newDate.setMonth(month + 1);
}
return newDate;
}
},
watch: {
value(newVal) {
if (!newVal) {
this.minDate = null;
this.maxDate = null;
} else if (Array.isArray(newVal)) {
this.minDate = newVal[0] ? toDate(newVal[0]) : null;
this.maxDate = newVal[1] ? toDate(newVal[1]) : null;
if (this.minDate) this.date = new Date(this.minDate);
}
2016-12-19 09:59:08 +08:00
}
},
2016-12-19 14:44:07 +08:00
methods: {
2016-12-19 22:18:57 +08:00
resetDate () {
this.date = new Date(this.date);
this.leftTableYear = this.date.getFullYear();
this.rightTableYear = this.rightDate.getFullYear();
},
2016-12-19 16:21:54 +08:00
handleClear() {
this.minDate = null;
this.maxDate = null;
2016-12-19 22:18:57 +08:00
this.date = new Date();
2016-12-19 16:21:54 +08:00
this.handleConfirm();
},
2016-12-19 22:18:57 +08:00
resetView() {
this.leftCurrentView = 'date';
this.rightCurrentView = 'date';
this.leftTableYear = this.leftYear;
this.rightTableYear = this.rightYear;
},
2016-12-19 21:09:57 +08:00
prevYear (direction) {
if (this[`${direction}CurrentView`] === 'year') {
this.$refs[`${direction}YearTable`].prevTenYear();
2016-12-19 22:18:57 +08:00
} else if (this[`${direction}CurrentView`] === 'month') {
this[`${direction}TableYear`]--;
2016-12-19 21:09:57 +08:00
} else {
const date = this.date;
date.setFullYear(date.getFullYear() - 1);
this.resetDate();
}
2016-12-19 14:44:07 +08:00
},
2016-12-19 21:09:57 +08:00
nextYear (direction) {
if (this[`${direction}CurrentView`] === 'year') {
this.$refs[`${direction}YearTable`].nextTenYear();
2016-12-19 22:18:57 +08:00
} else if (this[`${direction}CurrentView`] === 'month') {
this[`${direction}TableYear`]--;
2016-12-19 21:09:57 +08:00
} else {
const date = this.date;
date.setFullYear(date.getFullYear() + 1);
this.resetDate();
}
2016-12-19 14:44:07 +08:00
},
prevMonth () {
2016-12-19 21:09:57 +08:00
this.date = prevMonth(this.date);
2016-12-19 14:44:07 +08:00
},
nextMonth () {
2016-12-19 21:09:57 +08:00
this.date = nextMonth(this.date);
2016-12-19 14:44:07 +08:00
},
2016-12-19 21:09:57 +08:00
handleLeftYearPick (year, close = true) {
this.handleYearPick(year, close, 'left');
},
handleRightYearPick (year, close = true) {
this.handleYearPick(year, close, 'right');
2016-12-19 14:44:07 +08:00
},
2016-12-19 21:09:57 +08:00
handleYearPick (year, close, direction) {
2016-12-19 21:59:36 +08:00
this[`${direction}TableYear`] = year;
2016-12-19 21:09:57 +08:00
if (!close) return;
2016-12-19 14:44:07 +08:00
2016-12-19 21:09:57 +08:00
this[`${direction}CurrentView`] = 'month';
},
handleLeftMonthPick (month) {
this.handleMonthPick(month, 'left');
},
handleRightMonthPick (month) {
this.handleMonthPick(month, 'right');
},
handleMonthPick (month, direction) {
2016-12-19 21:59:36 +08:00
let year = this[`${direction}TableYear`];
if (direction === 'right') {
if (month === 0) {
month = 11;
year--;
} else {
month--;
}
}
this.date.setYear(year);
2016-12-19 21:09:57 +08:00
this.date.setMonth(month);
this[`${direction}CurrentView`] = 'date';
this.resetDate();
},
showYearPicker (direction) {
this[`${direction}CurrentView`] = 'year';
2016-12-19 21:59:36 +08:00
this[`${direction}TableYear`] = this[`${direction}Year`];
2016-12-19 21:09:57 +08:00
},
showMonthPicker (direction) {
this[`${direction}CurrentView`] = 'month';
2016-12-19 14:44:07 +08:00
},
handleConfirm(visible) {
this.$emit('on-pick', [this.minDate, this.maxDate], visible);
2016-12-19 16:21:54 +08:00
},
handleRangePick (val, close = true) {
if (this.maxDate === val.maxDate && this.minDate === val.minDate) return;
this.minDate = val.minDate;
this.maxDate = val.maxDate;
if (!close) return;
if (!this.showTime) {
this.handleConfirm(false);
}
},
handleChangeRange (val) {
this.minDate = val.minDate;
this.maxDate = val.maxDate;
this.rangeState = val.rangeState;
2016-12-19 14:44:07 +08:00
}
}
2016-12-25 22:49:42 +08:00
};
</script>