123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- <template>
- <view>
- <van-popup
- v-if="poppable"
- :custom-class="'van-calendar__popup--' + position"
- close-icon-class="van-calendar__close-icon"
- :show="show"
- :round="round"
- :position="position"
- :closeable="showTitle || showSubtitle"
- :close-on-click-overlay="closeOnClickOverlay"
- @enter="onOpen"
- @close="onClose"
- @after-enter="onOpened"
- @after-leave="onClosed"
- >
- <!-- parse <template is="calendar" :data="title, subtitle, showTitle, showSubtitle, minDate, maxDate, type, color, showMark, formatter, rowHeight, currentDate, safeAreaInsetBottom, showConfirm, confirmDisabledText, confirmText, scrollIntoView, allowSameDay"/> -->
- <block name="calendar">
- <view class="van-calendar">
- <header :title="title" :showTitle="showTitle" :subtitle="subtitle" :showSubtitle="showSubtitle">
- <slot name="title" slot="title"></slot>
- </header>
- <scroll-view class="van-calendar__body" scroll-y :scroll-into-view="scrollIntoView">
- <month
- :id="'month' + index"
- class="month"
- :data-date="item"
- :date="item"
- :type="type"
- :color="color"
- :minDate="minDate"
- :maxDate="maxDate"
- :showMark="showMark"
- :formatter="formatter"
- :rowHeight="rowHeight"
- :currentDate="currentDate"
- :showSubtitle="showSubtitle"
- :allowSameDay="allowSameDay"
- :showMonthTitle="index !== 0 || !showSubtitle"
- @click="onClickDay($event, { date: item, tagId: 'month' + index })"
- v-for="(item, index) in computed.getMonths(minDate, maxDate)"
- :key="index"
- ></month>
- </scroll-view>
- <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
- <slot name="footer"></slot>
- </view>
- <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
- <van-button
- v-if="showConfirm"
- round
- block
- type="danger"
- :color="color"
- custom-class="van-calendar__confirm"
- :disabled="computed.getButtonDisabled(type, currentDate)"
- nativeType="text"
- @click="onConfirm"
- >
- {{ computed.getButtonDisabled(type, currentDate) ? confirmDisabledText : confirmText }}
- </van-button>
- </view>
- </view>
- </block>
- </van-popup>
- <!-- parse <template v-else is="calendar" :data="title, subtitle, showTitle, showSubtitle, minDate, maxDate, type, color, showMark, formatter, rowHeight, currentDate, safeAreaInsetBottom, showConfirm, confirmDisabledText, confirmText, scrollIntoView, allowSameDay"/> -->
- <block name="calendar" v-if="false" v-else>
- <view class="van-calendar">
- <header :title="title" :showTitle="showTitle" :subtitle="subtitle" :showSubtitle="showSubtitle">
- <slot name="title" slot="title"></slot>
- </header>
- <scroll-view class="van-calendar__body" scroll-y :scroll-into-view="scrollIntoView">
- <month
- :id="'month' + index"
- class="month"
- :data-date="item"
- :date="item"
- :type="type"
- :color="color"
- :minDate="minDate"
- :maxDate="maxDate"
- :showMark="showMark"
- :formatter="formatter"
- :rowHeight="rowHeight"
- :currentDate="currentDate"
- :showSubtitle="showSubtitle"
- :allowSameDay="allowSameDay"
- :showMonthTitle="index !== 0 || !showSubtitle"
- @click="onClickDay($event, { date: item, tagId: 'month' + index })"
- v-for="(item, index) in computed.getMonths(minDate, maxDate)"
- :key="index"
- ></month>
- </scroll-view>
- <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
- <slot name="footer"></slot>
- </view>
- <view :class="'van-calendar__footer ' + (safeAreaInsetBottom ? 'van-calendar__footer--safe-area-inset-bottom' : '')">
- <van-button
- v-if="showConfirm"
- round
- block
- type="danger"
- :color="color"
- custom-class="van-calendar__confirm"
- :disabled="computed.getButtonDisabled(type, currentDate)"
- nativeType="text"
- @click="onConfirm"
- >
- {{ computed.getButtonDisabled(type, currentDate) ? confirmDisabledText : confirmText }}
- </van-button>
- </view>
- </view>
- </block>
- <van-toast id="van-toast" />
- </view>
- </template>
- <script module="computed" lang="wxs" src="@/node_modules/@vant/weapp/dist/calendar/index.wxs"></script>
- <script>
- import header from './components/header/index';
- import month from './components/month/index';
- import { VantComponent } from '../common/component';
- import { ROW_HEIGHT, getNextDay, compareDay, copyDates, calcDateNum, formatMonthTitle, compareMonth, getMonths, getDayByOffset } from './utils';
- import Toast from '../toast/toast';
- export default {
- components: {
- header,
- month
- },
- data() {
- return {
- subtitle: '',
- currentDate: null,
- scrollIntoView: ''
- };
- },
- props: {
- title: {
- type: String,
- default: '日期选择'
- },
- color: String,
- show: {
- type: Boolean
- },
- formatter: null,
- confirmText: {
- type: String,
- default: '确定'
- },
- rangePrompt: String,
- defaultDate: {
- type: [Number, Array]
- },
- allowSameDay: Boolean,
- confirmDisabledText: String,
- type: {
- type: String,
- default: 'single'
- },
- minDate: {
- type: null,
- default: Date.now()
- },
- maxDate: {
- type: null,
- default: new Date(new Date().getFullYear(), new Date().getMonth() + 6, new Date().getDate()).getTime()
- },
- position: {
- type: String,
- default: 'bottom'
- },
- rowHeight: {
- type: [Number, String],
- default: ROW_HEIGHT
- },
- round: {
- type: Boolean,
- default: true
- },
- poppable: {
- type: Boolean,
- default: true
- },
- showMark: {
- type: Boolean,
- default: true
- },
- showTitle: {
- type: Boolean,
- default: true
- },
- showConfirm: {
- type: Boolean,
- default: true
- },
- showSubtitle: {
- type: Boolean,
- default: true
- },
- safeAreaInsetBottom: {
- type: Boolean,
- default: true
- },
- closeOnClickOverlay: {
- type: Boolean,
- default: true
- },
- maxRange: {
- type: [Number, String],
- default: null
- }
- },
- created() {
- this.setData({
- currentDate: this.getInitialDate()
- });
- },
- mounted() {
- if (this.show || !this.poppable) {
- this.initRect();
- this.scrollIntoViewFun();
- }
- },
- methods: {
- reset() {
- this.setData({
- currentDate: this.getInitialDate()
- });
- this.scrollIntoViewFun();
- },
- initRect() {
- if (this.contentObserver != null) {
- this.contentObserver.disconnect();
- }
- const contentObserver = this.createIntersectionObserver({
- thresholds: [0, 0.1, 0.9, 1],
- observeAll: true
- });
- this.contentObserver = contentObserver;
- contentObserver.relativeTo('.van-calendar__body');
- contentObserver.observe('.month', (res) => {
- if (res.boundingClientRect.top <= res.relativeRect.top) {
- // @ts-ignore
- this.setData({
- subtitle: formatMonthTitle(res.dataset.date)
- });
- }
- });
- },
- getInitialDate() {
- const { type, defaultDate, minDate } = this;
- if (type === 'range') {
- const [startDay, endDay] = defaultDate || [];
- return [startDay || minDate, endDay || getNextDay(new Date(minDate)).getTime()];
- }
- if (type === 'multiple') {
- return defaultDate || [minDate];
- }
- return defaultDate || minDate;
- },
- scrollIntoViewFun() {
- setTimeout(() => {
- const { currentDate, type, show, poppable, minDate, maxDate } = this;
- const targetDate = type === 'single' ? currentDate : currentDate[0];
- const displayed = show || !poppable;
- if (!targetDate || !displayed) {
- return;
- }
- const months = getMonths(minDate, maxDate);
- months.some((month, index) => {
- if (compareMonth(month, targetDate) === 0) {
- this.setData({
- scrollIntoView: `month${index}`
- });
- return true;
- }
- return false;
- });
- }, 100);
- },
- onOpen() {
- this.$emit('open');
- },
- onOpened() {
- this.$emit('opened');
- },
- onClose() {
- this.$emit('close');
- },
- onClosed() {
- this.$emit('closed');
- },
- onClickDay(event, _dataset) {
- /* ---处理dataset begin--- */
- this.handleDataset(event, _dataset);
- /* ---处理dataset end--- */
- const { date } = event.detail;
- const { type, currentDate, allowSameDay } = this;
- if (type === 'range') {
- const [startDay, endDay] = currentDate;
- if (startDay && !endDay) {
- const compareToStart = compareDay(date, startDay);
- if (compareToStart === 1) {
- this.select([startDay, date], true);
- } else if (compareToStart === -1) {
- this.select([date, null]);
- } else if (allowSameDay) {
- this.select([date, date]);
- }
- } else {
- this.select([date, null]);
- }
- } else if (type === 'multiple') {
- let selectedIndex;
- const selected = currentDate.some((dateItem, index) => {
- const equal = compareDay(dateItem, date) === 0;
- if (equal) {
- selectedIndex = index;
- }
- return equal;
- });
- if (selected) {
- const cancelDate = currentDate.splice(selectedIndex, 1);
- this.setData({
- currentDate
- });
- this.unselect(cancelDate);
- } else {
- this.select([...currentDate, date]);
- }
- } else {
- this.select(date, true);
- }
- },
- unselect(dateArray) {
- const date = dateArray[0];
- if (date) {
- this.$emit('unselect', copyDates(date));
- }
- },
- select(date, complete) {
- if (complete && this.type === 'range') {
- const valid = this.checkRange(date);
- if (!valid) {
- // auto selected to max range if showConfirm
- if (this.showConfirm) {
- this.emit([date[0], getDayByOffset(date[0], this.maxRange - 1)]);
- } else {
- this.emit(date);
- }
- return;
- }
- }
- this.emit(date);
- if (complete && !this.showConfirm) {
- this.onConfirm();
- }
- },
- emit(date) {
- const getTime = (date) => (date instanceof Date ? date.getTime() : date);
- this.setData({
- currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date)
- });
- this.$emit('select', copyDates(date));
- },
- checkRange(date) {
- const { maxRange, rangePrompt } = this;
- if (maxRange && calcDateNum(date) > maxRange) {
- Toast({
- context: this,
- message: rangePrompt || `选择天数不能超过 ${maxRange} 天`
- });
- return false;
- }
- return true;
- },
- onConfirm() {
- if (this.type === 'range' && !this.checkRange(this.currentDate)) {
- return;
- }
- this.$nextTick(() => {
- this.$emit('confirm', copyDates(this.currentDate));
- });
- }
- },
- watch: {
- show: {
- handler: function (val) {
- if (val) {
- this.initRect();
- this.scrollIntoViewFun();
- }
- },
- immediate: true
- },
- defaultDate: {
- handler: function (val) {
- this.setData({
- currentDate: val
- });
- this.scrollIntoViewFun();
- },
- immediate: true
- },
- type: {
- handler: function () {
- this.setData({
- currentDate: this.getInitialDate()
- });
- this.scrollIntoViewFun();
- },
- immediate: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- @import 'undefined';
- </style>
|