UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

155 lines 6.33 kB
import { defineComponent, h, watchEffect } from 'vue'; import { NBaseFocusDetector } from "../../../_internal/index.mjs"; import { BackwardIcon, FastBackwardIcon, FastForwardIcon, ForwardIcon } from "../../../_internal/icons/index.mjs"; import { resolveSlot, resolveSlotWithTypedProps, warnOnce } from "../../../_utils/index.mjs"; import { NButton, NxButton } from "../../../button/index.mjs"; import PanelHeader from "./panelHeader.mjs"; import { useCalendar, useCalendarProps } from "./use-calendar.mjs"; /** * Date Panel * Update picker value on: * 1. item click * 2. clear click */ export default defineComponent({ name: 'DatePanel', props: Object.assign(Object.assign({}, useCalendarProps), { type: { type: String, required: true } }), setup(props) { if (process.env.NODE_ENV !== 'production') { watchEffect(() => { var _a; if ((_a = props.actions) === null || _a === void 0 ? void 0 : _a.includes('confirm')) { warnOnce('date-picker', 'The `confirm` action is not supported for n-date-picker of `date` type'); } }); } return useCalendar(props, props.type); }, render() { var _a, _b, _c; const { mergedClsPrefix, mergedTheme, shortcuts, onRender, datePickerSlots, type } = this; onRender === null || onRender === void 0 ? void 0 : onRender(); return h("div", { ref: "selfRef", tabindex: 0, class: [`${mergedClsPrefix}-date-panel`, `${mergedClsPrefix}-date-panel--${type}`, !this.panel && `${mergedClsPrefix}-date-panel--shadow`, this.themeClass], onFocus: this.handlePanelFocus, onKeydown: this.handlePanelKeyDown }, h("div", { class: `${mergedClsPrefix}-date-panel-calendar` }, h("div", { class: `${mergedClsPrefix}-date-panel-month` }, h("div", { class: `${mergedClsPrefix}-date-panel-month__fast-prev`, onClick: this.prevYear }, resolveSlot(datePickerSlots['prev-year'], () => [h(FastBackwardIcon, null)])), h("div", { class: `${mergedClsPrefix}-date-panel-month__prev`, onClick: this.prevMonth }, resolveSlot(datePickerSlots['prev-month'], () => [h(BackwardIcon, null)])), h(PanelHeader, { monthYearSeparator: this.calendarHeaderMonthYearSeparator, monthBeforeYear: this.calendarMonthBeforeYear, value: this.calendarValue, onUpdateValue: this.onUpdateCalendarValue, mergedClsPrefix: mergedClsPrefix, calendarMonth: this.calendarMonth, calendarYear: this.calendarYear }), h("div", { class: `${mergedClsPrefix}-date-panel-month__next`, onClick: this.nextMonth }, resolveSlot(datePickerSlots['next-month'], () => [h(ForwardIcon, null)])), h("div", { class: `${mergedClsPrefix}-date-panel-month__fast-next`, onClick: this.nextYear }, resolveSlot(datePickerSlots['next-year'], () => [h(FastForwardIcon, null)]))), h("div", { class: `${mergedClsPrefix}-date-panel-weekdays` }, this.weekdays.map(weekday => h("div", { key: weekday, class: `${mergedClsPrefix}-date-panel-weekdays__day` }, weekday))), h("div", { class: `${mergedClsPrefix}-date-panel-dates` }, this.dateArray.map((dateItem, i) => h("div", { "data-n-date": true, key: i, class: [`${mergedClsPrefix}-date-panel-date`, { [`${mergedClsPrefix}-date-panel-date--current`]: dateItem.isCurrentDate, [`${mergedClsPrefix}-date-panel-date--selected`]: dateItem.selected, [`${mergedClsPrefix}-date-panel-date--excluded`]: !dateItem.inCurrentMonth, [`${mergedClsPrefix}-date-panel-date--disabled`]: this.mergedIsDateDisabled(dateItem.ts, { type: 'date', year: dateItem.dateObject.year, month: dateItem.dateObject.month, date: dateItem.dateObject.date }), [`${mergedClsPrefix}-date-panel-date--week-hovered`]: this.isWeekHovered(dateItem), [`${mergedClsPrefix}-date-panel-date--week-selected`]: dateItem.inSelectedWeek }], onClick: () => { this.handleDateClick(dateItem); }, onMouseenter: () => { this.handleDateMouseEnter(dateItem); } }, h("div", { class: `${mergedClsPrefix}-date-panel-date__trigger` }), dateItem.dateObject.date, dateItem.isCurrentDate ? h("div", { class: `${mergedClsPrefix}-date-panel-date__sup` }) : null)))), this.datePickerSlots.footer ? h("div", { class: `${mergedClsPrefix}-date-panel-footer` }, this.datePickerSlots.footer()) : null, ((_a = this.actions) === null || _a === void 0 ? void 0 : _a.length) || shortcuts ? h("div", { class: `${mergedClsPrefix}-date-panel-actions` }, h("div", { class: `${mergedClsPrefix}-date-panel-actions__prefix` }, shortcuts && Object.keys(shortcuts).map(key => { const shortcut = shortcuts[key]; return Array.isArray(shortcut) ? null : h(NxButton, { size: "tiny", onMouseenter: () => { this.handleSingleShortcutMouseenter(shortcut); }, onClick: () => { this.handleSingleShortcutClick(shortcut); }, onMouseleave: () => { this.handleShortcutMouseleave(); } }, { default: () => key }); })), h("div", { class: `${mergedClsPrefix}-date-panel-actions__suffix` }, ((_b = this.actions) === null || _b === void 0 ? void 0 : _b.includes('clear')) ? resolveSlotWithTypedProps(this.$slots.clear, { onClear: this.handleClearClick, text: this.locale.clear }, () => [h(NButton, { theme: mergedTheme.peers.Button, themeOverrides: mergedTheme.peerOverrides.Button, size: "tiny", onClick: this.handleClearClick }, { default: () => this.locale.clear })]) : null, ((_c = this.actions) === null || _c === void 0 ? void 0 : _c.includes('now')) ? resolveSlotWithTypedProps(this.$slots.now, { onNow: this.handleNowClick, text: this.locale.now }, () => [h(NButton, { theme: mergedTheme.peers.Button, themeOverrides: mergedTheme.peerOverrides.Button, size: "tiny", onClick: this.handleNowClick }, { default: () => this.locale.now })]) : null)) : null, h(NBaseFocusDetector, { onFocus: this.handleFocusDetectorFocus })); } });