UNPKG

element-plus

Version:

A Component Library for Vue 3

671 lines (668 loc) 28.7 kB
import { defineComponent, inject, toRef, ref, computed, unref, openBlock, createElementBlock, normalizeClass, createElementVNode, renderSlot, Fragment, renderList, toDisplayString, createCommentVNode, createVNode, withDirectives, withCtx, createBlock, createTextVNode } from 'vue'; import dayjs from 'dayjs'; import '../../../../directives/index.mjs'; import '../../../../utils/index.mjs'; import '../../../../hooks/index.mjs'; import { ElButton } from '../../../button/index.mjs'; import { ElInput } from '../../../input/index.mjs'; import '../../../time-picker/index.mjs'; import { ElIcon } from '../../../icon/index.mjs'; import { ArrowRight, DArrowLeft, ArrowLeft, DArrowRight } from '@element-plus/icons-vue'; import { panelDateRangeProps } from '../props/panel-date-range.mjs'; import { useRangePicker } from '../composables/use-range-picker.mjs'; import { isValidRange, getDefaultValue } from '../utils.mjs'; import DateTable from './basic-date-table.mjs'; import _export_sfc from '../../../../_virtual/plugin-vue_export-helper.mjs'; import { useLocale } from '../../../../hooks/use-locale/index.mjs'; import { extractTimeFormat, extractDateFormat } from '../../../time-picker/src/utils.mjs'; import { isArray } from '@vue/shared'; import TimePickPanel from '../../../time-picker/src/time-picker-com/panel-time-pick.mjs'; import ClickOutside from '../../../../directives/click-outside/index.mjs'; const _hoisted_1 = ["onClick"]; const _hoisted_2 = ["disabled"]; const _hoisted_3 = ["disabled"]; const _hoisted_4 = ["disabled"]; const _hoisted_5 = ["disabled"]; const unit = "month"; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "panel-date-range", props: panelDateRangeProps, emits: [ "pick", "set-picker-option", "calendar-change", "panel-change" ], setup(__props, { emit }) { const props = __props; const pickerBase = inject("EP_PICKER_BASE"); const { disabledDate, cellClassName, format, defaultTime, arrowControl, clearable } = pickerBase.props; const shortcuts = toRef(pickerBase.props, "shortcuts"); const defaultValue = toRef(pickerBase.props, "defaultValue"); const { lang } = useLocale(); const leftDate = ref(dayjs().locale(lang.value)); const rightDate = ref(dayjs().locale(lang.value).add(1, unit)); const { minDate, maxDate, rangeState, ppNs, drpNs, handleChangeRange, handleRangeConfirm, handleShortcutClick, onSelect, t } = useRangePicker(props, { defaultValue, leftDate, rightDate, unit, onParsedValueChanged }); const dateUserInput = ref({ min: null, max: null }); const timeUserInput = ref({ min: null, max: null }); const leftLabel = computed(() => { return `${leftDate.value.year()} ${t("el.datepicker.year")} ${t(`el.datepicker.month${leftDate.value.month() + 1}`)}`; }); const rightLabel = computed(() => { return `${rightDate.value.year()} ${t("el.datepicker.year")} ${t(`el.datepicker.month${rightDate.value.month() + 1}`)}`; }); const leftYear = computed(() => { return leftDate.value.year(); }); const leftMonth = computed(() => { return leftDate.value.month(); }); const rightYear = computed(() => { return rightDate.value.year(); }); const rightMonth = computed(() => { return rightDate.value.month(); }); const hasShortcuts = computed(() => !!shortcuts.value.length); const minVisibleDate = computed(() => { if (dateUserInput.value.min !== null) return dateUserInput.value.min; if (minDate.value) return minDate.value.format(dateFormat.value); return ""; }); const maxVisibleDate = computed(() => { if (dateUserInput.value.max !== null) return dateUserInput.value.max; if (maxDate.value || minDate.value) return (maxDate.value || minDate.value).format(dateFormat.value); return ""; }); const minVisibleTime = computed(() => { if (timeUserInput.value.min !== null) return timeUserInput.value.min; if (minDate.value) return minDate.value.format(timeFormat.value); return ""; }); const maxVisibleTime = computed(() => { if (timeUserInput.value.max !== null) return timeUserInput.value.max; if (maxDate.value || minDate.value) return (maxDate.value || minDate.value).format(timeFormat.value); return ""; }); const timeFormat = computed(() => { return extractTimeFormat(format); }); const dateFormat = computed(() => { return extractDateFormat(format); }); const leftPrevYear = () => { leftDate.value = leftDate.value.subtract(1, "year"); if (!props.unlinkPanels) { rightDate.value = leftDate.value.add(1, "month"); } handlePanelChange("year"); }; const leftPrevMonth = () => { leftDate.value = leftDate.value.subtract(1, "month"); if (!props.unlinkPanels) { rightDate.value = leftDate.value.add(1, "month"); } handlePanelChange("month"); }; const rightNextYear = () => { if (!props.unlinkPanels) { leftDate.value = leftDate.value.add(1, "year"); rightDate.value = leftDate.value.add(1, "month"); } else { rightDate.value = rightDate.value.add(1, "year"); } handlePanelChange("year"); }; const rightNextMonth = () => { if (!props.unlinkPanels) { leftDate.value = leftDate.value.add(1, "month"); rightDate.value = leftDate.value.add(1, "month"); } else { rightDate.value = rightDate.value.add(1, "month"); } handlePanelChange("month"); }; const leftNextYear = () => { leftDate.value = leftDate.value.add(1, "year"); handlePanelChange("year"); }; const leftNextMonth = () => { leftDate.value = leftDate.value.add(1, "month"); handlePanelChange("month"); }; const rightPrevYear = () => { rightDate.value = rightDate.value.subtract(1, "year"); handlePanelChange("year"); }; const rightPrevMonth = () => { rightDate.value = rightDate.value.subtract(1, "month"); handlePanelChange("month"); }; const handlePanelChange = (mode) => { emit("panel-change", [leftDate.value.toDate(), rightDate.value.toDate()], mode); }; const enableMonthArrow = computed(() => { const nextMonth = (leftMonth.value + 1) % 12; const yearOffset = leftMonth.value + 1 >= 12 ? 1 : 0; return props.unlinkPanels && new Date(leftYear.value + yearOffset, nextMonth) < new Date(rightYear.value, rightMonth.value); }); const enableYearArrow = computed(() => { return props.unlinkPanels && rightYear.value * 12 + rightMonth.value - (leftYear.value * 12 + leftMonth.value + 1) >= 12; }); const btnDisabled = computed(() => { return !(minDate.value && maxDate.value && !rangeState.value.selecting && isValidRange([minDate.value, maxDate.value])); }); const showTime = computed(() => props.type === "datetime" || props.type === "datetimerange"); const formatEmit = (emitDayjs, index) => { if (!emitDayjs) return; if (defaultTime) { const defaultTimeD = dayjs(defaultTime[index] || defaultTime).locale(lang.value); return defaultTimeD.year(emitDayjs.year()).month(emitDayjs.month()).date(emitDayjs.date()); } return emitDayjs; }; const handleRangePick = (val, close = true) => { const min_ = val.minDate; const max_ = val.maxDate; const minDate_ = formatEmit(min_, 0); const maxDate_ = formatEmit(max_, 1); if (maxDate.value === maxDate_ && minDate.value === minDate_) { return; } emit("calendar-change", [min_.toDate(), max_ && max_.toDate()]); maxDate.value = maxDate_; minDate.value = minDate_; if (!close || showTime.value) return; handleRangeConfirm(); }; const minTimePickerVisible = ref(false); const maxTimePickerVisible = ref(false); const handleMinTimeClose = () => { minTimePickerVisible.value = false; }; const handleMaxTimeClose = () => { maxTimePickerVisible.value = false; }; const handleDateInput = (value, type) => { dateUserInput.value[type] = value; const parsedValueD = dayjs(value, dateFormat.value).locale(lang.value); if (parsedValueD.isValid()) { if (disabledDate && disabledDate(parsedValueD.toDate())) { return; } if (type === "min") { leftDate.value = parsedValueD; minDate.value = (minDate.value || leftDate.value).year(parsedValueD.year()).month(parsedValueD.month()).date(parsedValueD.date()); if (!props.unlinkPanels) { rightDate.value = parsedValueD.add(1, "month"); maxDate.value = minDate.value.add(1, "month"); } } else { rightDate.value = parsedValueD; maxDate.value = (maxDate.value || rightDate.value).year(parsedValueD.year()).month(parsedValueD.month()).date(parsedValueD.date()); if (!props.unlinkPanels) { leftDate.value = parsedValueD.subtract(1, "month"); minDate.value = maxDate.value.subtract(1, "month"); } } } }; const handleDateChange = (_, type) => { dateUserInput.value[type] = null; }; const handleTimeInput = (value, type) => { timeUserInput.value[type] = value; const parsedValueD = dayjs(value, timeFormat.value).locale(lang.value); if (parsedValueD.isValid()) { if (type === "min") { minTimePickerVisible.value = true; minDate.value = (minDate.value || leftDate.value).hour(parsedValueD.hour()).minute(parsedValueD.minute()).second(parsedValueD.second()); if (!maxDate.value || maxDate.value.isBefore(minDate.value)) { maxDate.value = minDate.value; } } else { maxTimePickerVisible.value = true; maxDate.value = (maxDate.value || rightDate.value).hour(parsedValueD.hour()).minute(parsedValueD.minute()).second(parsedValueD.second()); rightDate.value = maxDate.value; if (maxDate.value && maxDate.value.isBefore(minDate.value)) { minDate.value = maxDate.value; } } } }; const handleTimeChange = (value, type) => { timeUserInput.value[type] = null; if (type === "min") { leftDate.value = minDate.value; minTimePickerVisible.value = false; } else { rightDate.value = maxDate.value; maxTimePickerVisible.value = false; } }; const handleMinTimePick = (value, visible, first) => { if (timeUserInput.value.min) return; if (value) { leftDate.value = value; minDate.value = (minDate.value || leftDate.value).hour(value.hour()).minute(value.minute()).second(value.second()); } if (!first) { minTimePickerVisible.value = visible; } if (!maxDate.value || maxDate.value.isBefore(minDate.value)) { maxDate.value = minDate.value; rightDate.value = value; } }; const handleMaxTimePick = (value, visible, first) => { if (timeUserInput.value.max) return; if (value) { rightDate.value = value; maxDate.value = (maxDate.value || rightDate.value).hour(value.hour()).minute(value.minute()).second(value.second()); } if (!first) { maxTimePickerVisible.value = visible; } if (maxDate.value && maxDate.value.isBefore(minDate.value)) { minDate.value = maxDate.value; } }; const handleClear = () => { leftDate.value = getDefaultValue(unref(defaultValue), { lang: unref(lang), unit: "month", unlinkPanels: props.unlinkPanels })[0]; rightDate.value = leftDate.value.add(1, "month"); emit("pick", null); }; const formatToString = (value) => { return isArray(value) ? value.map((_) => _.format(format)) : value.format(format); }; const parseUserInput = (value) => { return isArray(value) ? value.map((_) => dayjs(_, format).locale(lang.value)) : dayjs(value, format).locale(lang.value); }; function onParsedValueChanged(minDate2, maxDate2) { if (props.unlinkPanels && maxDate2) { const minDateYear = (minDate2 == null ? void 0 : minDate2.year()) || 0; const minDateMonth = (minDate2 == null ? void 0 : minDate2.month()) || 0; const maxDateYear = maxDate2.year(); const maxDateMonth = maxDate2.month(); rightDate.value = minDateYear === maxDateYear && minDateMonth === maxDateMonth ? maxDate2.add(1, unit) : maxDate2; } else { rightDate.value = leftDate.value.add(1, unit); if (maxDate2) { rightDate.value = rightDate.value.hour(maxDate2.hour()).minute(maxDate2.minute()).second(maxDate2.second()); } } } emit("set-picker-option", ["isValidValue", isValidRange]); emit("set-picker-option", ["parseUserInput", parseUserInput]); emit("set-picker-option", ["formatToString", formatToString]); emit("set-picker-option", ["handleClear", handleClear]); return (_ctx, _cache) => { return openBlock(), createElementBlock("div", { class: normalizeClass([ unref(ppNs).b(), unref(drpNs).b(), { "has-sidebar": _ctx.$slots.sidebar || unref(hasShortcuts), "has-time": unref(showTime) } ]) }, [ createElementVNode("div", { class: normalizeClass(unref(ppNs).e("body-wrapper")) }, [ renderSlot(_ctx.$slots, "sidebar", { class: normalizeClass(unref(ppNs).e("sidebar")) }), unref(hasShortcuts) ? (openBlock(), createElementBlock("div", { key: 0, class: normalizeClass(unref(ppNs).e("sidebar")) }, [ (openBlock(true), createElementBlock(Fragment, null, renderList(unref(shortcuts), (shortcut, key) => { return openBlock(), createElementBlock("button", { key, type: "button", class: normalizeClass(unref(ppNs).e("shortcut")), onClick: ($event) => unref(handleShortcutClick)(shortcut) }, toDisplayString(shortcut.text), 11, _hoisted_1); }), 128)) ], 2)) : createCommentVNode("v-if", true), createElementVNode("div", { class: normalizeClass(unref(ppNs).e("body")) }, [ unref(showTime) ? (openBlock(), createElementBlock("div", { key: 0, class: normalizeClass(unref(drpNs).e("time-header")) }, [ createElementVNode("span", { class: normalizeClass(unref(drpNs).e("editors-wrap")) }, [ createElementVNode("span", { class: normalizeClass(unref(drpNs).e("time-picker-wrap")) }, [ createVNode(unref(ElInput), { size: "small", disabled: unref(rangeState).selecting, placeholder: unref(t)("el.datepicker.startDate"), class: normalizeClass(unref(drpNs).e("editor")), "model-value": unref(minVisibleDate), "validate-event": false, onInput: _cache[0] || (_cache[0] = (val) => handleDateInput(val, "min")), onChange: _cache[1] || (_cache[1] = (val) => handleDateChange(val, "min")) }, null, 8, ["disabled", "placeholder", "class", "model-value"]) ], 2), withDirectives((openBlock(), createElementBlock("span", { class: normalizeClass(unref(drpNs).e("time-picker-wrap")) }, [ createVNode(unref(ElInput), { size: "small", class: normalizeClass(unref(drpNs).e("editor")), disabled: unref(rangeState).selecting, placeholder: unref(t)("el.datepicker.startTime"), "model-value": unref(minVisibleTime), "validate-event": false, onFocus: _cache[2] || (_cache[2] = ($event) => minTimePickerVisible.value = true), onInput: _cache[3] || (_cache[3] = (val) => handleTimeInput(val, "min")), onChange: _cache[4] || (_cache[4] = (val) => handleTimeChange(val, "min")) }, null, 8, ["class", "disabled", "placeholder", "model-value"]), createVNode(unref(TimePickPanel), { visible: minTimePickerVisible.value, format: unref(timeFormat), "datetime-role": "start", "time-arrow-control": unref(arrowControl), "parsed-value": leftDate.value, onPick: handleMinTimePick }, null, 8, ["visible", "format", "time-arrow-control", "parsed-value"]) ], 2)), [ [unref(ClickOutside), handleMinTimeClose] ]) ], 2), createElementVNode("span", null, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(ArrowRight)) ]), _: 1 }) ]), createElementVNode("span", { class: normalizeClass([unref(drpNs).e("editors-wrap"), "is-right"]) }, [ createElementVNode("span", { class: normalizeClass(unref(drpNs).e("time-picker-wrap")) }, [ createVNode(unref(ElInput), { size: "small", class: normalizeClass(unref(drpNs).e("editor")), disabled: unref(rangeState).selecting, placeholder: unref(t)("el.datepicker.endDate"), "model-value": unref(maxVisibleDate), readonly: !unref(minDate), "validate-event": false, onInput: _cache[5] || (_cache[5] = (val) => handleDateInput(val, "max")), onChange: _cache[6] || (_cache[6] = (val) => handleDateChange(val, "max")) }, null, 8, ["class", "disabled", "placeholder", "model-value", "readonly"]) ], 2), withDirectives((openBlock(), createElementBlock("span", { class: normalizeClass(unref(drpNs).e("time-picker-wrap")) }, [ createVNode(unref(ElInput), { size: "small", class: normalizeClass(unref(drpNs).e("editor")), disabled: unref(rangeState).selecting, placeholder: unref(t)("el.datepicker.endTime"), "model-value": unref(maxVisibleTime), readonly: !unref(minDate), "validate-event": false, onFocus: _cache[7] || (_cache[7] = ($event) => unref(minDate) && (maxTimePickerVisible.value = true)), onInput: _cache[8] || (_cache[8] = (val) => handleTimeInput(val, "max")), onChange: _cache[9] || (_cache[9] = (val) => handleTimeChange(val, "max")) }, null, 8, ["class", "disabled", "placeholder", "model-value", "readonly"]), createVNode(unref(TimePickPanel), { "datetime-role": "end", visible: maxTimePickerVisible.value, format: unref(timeFormat), "time-arrow-control": unref(arrowControl), "parsed-value": rightDate.value, onPick: handleMaxTimePick }, null, 8, ["visible", "format", "time-arrow-control", "parsed-value"]) ], 2)), [ [unref(ClickOutside), handleMaxTimeClose] ]) ], 2) ], 2)) : createCommentVNode("v-if", true), createElementVNode("div", { class: normalizeClass([[unref(ppNs).e("content"), unref(drpNs).e("content")], "is-left"]) }, [ createElementVNode("div", { class: normalizeClass(unref(drpNs).e("header")) }, [ createElementVNode("button", { type: "button", class: normalizeClass([unref(ppNs).e("icon-btn"), "d-arrow-left"]), onClick: leftPrevYear }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(DArrowLeft)) ]), _: 1 }) ], 2), createElementVNode("button", { type: "button", class: normalizeClass([unref(ppNs).e("icon-btn"), "arrow-left"]), onClick: leftPrevMonth }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(ArrowLeft)) ]), _: 1 }) ], 2), _ctx.unlinkPanels ? (openBlock(), createElementBlock("button", { key: 0, type: "button", disabled: !unref(enableYearArrow), class: normalizeClass([[unref(ppNs).e("icon-btn"), { "is-disabled": !unref(enableYearArrow) }], "d-arrow-right"]), onClick: leftNextYear }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(DArrowRight)) ]), _: 1 }) ], 10, _hoisted_2)) : createCommentVNode("v-if", true), _ctx.unlinkPanels ? (openBlock(), createElementBlock("button", { key: 1, type: "button", disabled: !unref(enableMonthArrow), class: normalizeClass([[ unref(ppNs).e("icon-btn"), { "is-disabled": !unref(enableMonthArrow) } ], "arrow-right"]), onClick: leftNextMonth }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(ArrowRight)) ]), _: 1 }) ], 10, _hoisted_3)) : createCommentVNode("v-if", true), createElementVNode("div", null, toDisplayString(unref(leftLabel)), 1) ], 2), createVNode(DateTable, { "selection-mode": "range", date: leftDate.value, "min-date": unref(minDate), "max-date": unref(maxDate), "range-state": unref(rangeState), "disabled-date": unref(disabledDate), "cell-class-name": unref(cellClassName), onChangerange: unref(handleChangeRange), onPick: handleRangePick, onSelect: unref(onSelect) }, null, 8, ["date", "min-date", "max-date", "range-state", "disabled-date", "cell-class-name", "onChangerange", "onSelect"]) ], 2), createElementVNode("div", { class: normalizeClass([[unref(ppNs).e("content"), unref(drpNs).e("content")], "is-right"]) }, [ createElementVNode("div", { class: normalizeClass(unref(drpNs).e("header")) }, [ _ctx.unlinkPanels ? (openBlock(), createElementBlock("button", { key: 0, type: "button", disabled: !unref(enableYearArrow), class: normalizeClass([[unref(ppNs).e("icon-btn"), { "is-disabled": !unref(enableYearArrow) }], "d-arrow-left"]), onClick: rightPrevYear }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(DArrowLeft)) ]), _: 1 }) ], 10, _hoisted_4)) : createCommentVNode("v-if", true), _ctx.unlinkPanels ? (openBlock(), createElementBlock("button", { key: 1, type: "button", disabled: !unref(enableMonthArrow), class: normalizeClass([[ unref(ppNs).e("icon-btn"), { "is-disabled": !unref(enableMonthArrow) } ], "arrow-left"]), onClick: rightPrevMonth }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(ArrowLeft)) ]), _: 1 }) ], 10, _hoisted_5)) : createCommentVNode("v-if", true), createElementVNode("button", { type: "button", class: normalizeClass([unref(ppNs).e("icon-btn"), "d-arrow-right"]), onClick: rightNextYear }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(DArrowRight)) ]), _: 1 }) ], 2), createElementVNode("button", { type: "button", class: normalizeClass([unref(ppNs).e("icon-btn"), "arrow-right"]), onClick: rightNextMonth }, [ createVNode(unref(ElIcon), null, { default: withCtx(() => [ createVNode(unref(ArrowRight)) ]), _: 1 }) ], 2), createElementVNode("div", null, toDisplayString(unref(rightLabel)), 1) ], 2), createVNode(DateTable, { "selection-mode": "range", date: rightDate.value, "min-date": unref(minDate), "max-date": unref(maxDate), "range-state": unref(rangeState), "disabled-date": unref(disabledDate), "cell-class-name": unref(cellClassName), onChangerange: unref(handleChangeRange), onPick: handleRangePick, onSelect: unref(onSelect) }, null, 8, ["date", "min-date", "max-date", "range-state", "disabled-date", "cell-class-name", "onChangerange", "onSelect"]) ], 2) ], 2) ], 2), unref(showTime) ? (openBlock(), createElementBlock("div", { key: 0, class: normalizeClass(unref(ppNs).e("footer")) }, [ unref(clearable) ? (openBlock(), createBlock(unref(ElButton), { key: 0, text: "", size: "small", class: normalizeClass(unref(ppNs).e("link-btn")), onClick: handleClear }, { default: withCtx(() => [ createTextVNode(toDisplayString(unref(t)("el.datepicker.clear")), 1) ]), _: 1 }, 8, ["class"])) : createCommentVNode("v-if", true), createVNode(unref(ElButton), { plain: "", size: "small", class: normalizeClass(unref(ppNs).e("link-btn")), disabled: unref(btnDisabled), onClick: _cache[10] || (_cache[10] = ($event) => unref(handleRangeConfirm)(false)) }, { default: withCtx(() => [ createTextVNode(toDisplayString(unref(t)("el.datepicker.confirm")), 1) ]), _: 1 }, 8, ["class", "disabled"]) ], 2)) : createCommentVNode("v-if", true) ], 2); }; } }); var DateRangePickPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/date-picker/src/date-picker-com/panel-date-range.vue"]]); export { DateRangePickPanel as default }; //# sourceMappingURL=panel-date-range.mjs.map