| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- import { defineComponent, inject, ref, computed, openBlock, createBlock, Transition, unref, withCtx, createElementBlock, normalizeClass, createElementVNode, createVNode, toDisplayString, createCommentVNode, nextTick } from 'vue';
- import dayjs from 'dayjs';
- import { PICKER_BASE_INJECTION_KEY } from '../constants.mjs';
- import { panelTimePickerProps } from '../props/panel-time-picker.mjs';
- import { useTimePanel } from '../composables/use-time-panel.mjs';
- import { useOldValue, buildAvailableTimeSlotGetter } from '../composables/use-time-picker.mjs';
- import TimeSpinner from './basic-time-spinner.mjs';
- import _export_sfc from '../../../../_virtual/plugin-vue_export-helper.mjs';
- import { useNamespace } from '../../../../hooks/use-namespace/index.mjs';
- import { useLocale } from '../../../../hooks/use-locale/index.mjs';
- import { isUndefined } from '../../../../utils/types.mjs';
- import { getEventCode } from '../../../../utils/dom/event.mjs';
- import { EVENT_CODE } from '../../../../constants/aria.mjs';
- const _sfc_main = /* @__PURE__ */ defineComponent({
- __name: "panel-time-pick",
- props: panelTimePickerProps,
- emits: ["pick", "select-range", "set-picker-option"],
- setup(__props, { emit }) {
- const props = __props;
- const pickerBase = inject(PICKER_BASE_INJECTION_KEY);
- const {
- arrowControl,
- disabledHours,
- disabledMinutes,
- disabledSeconds,
- defaultValue
- } = pickerBase.props;
- const { getAvailableHours, getAvailableMinutes, getAvailableSeconds } = buildAvailableTimeSlotGetter(disabledHours, disabledMinutes, disabledSeconds);
- const ns = useNamespace("time");
- const { t, lang } = useLocale();
- const selectionRange = ref([0, 2]);
- const oldValue = useOldValue(props);
- const transitionName = computed(() => {
- return isUndefined(props.actualVisible) ? `${ns.namespace.value}-zoom-in-top` : "";
- });
- const showSeconds = computed(() => {
- return props.format.includes("ss");
- });
- const amPmMode = computed(() => {
- if (props.format.includes("A"))
- return "A";
- if (props.format.includes("a"))
- return "a";
- return "";
- });
- const isValidValue = (_date) => {
- const parsedDate = dayjs(_date).locale(lang.value);
- const result = getRangeAvailableTime(parsedDate);
- return parsedDate.isSame(result);
- };
- const handleCancel = () => {
- const old = oldValue.value;
- emit("pick", old, false);
- nextTick(() => {
- oldValue.value = old;
- });
- };
- const handleConfirm = (visible = false, first = false) => {
- if (first)
- return;
- emit("pick", props.parsedValue, visible);
- };
- const handleChange = (_date) => {
- if (!props.visible) {
- return;
- }
- const result = getRangeAvailableTime(_date).millisecond(0);
- emit("pick", result, true);
- };
- const setSelectionRange = (start, end) => {
- emit("select-range", start, end);
- selectionRange.value = [start, end];
- };
- const changeSelectionRange = (step) => {
- const actualFormat = props.format;
- const hourIndex = actualFormat.indexOf("HH");
- const minuteIndex = actualFormat.indexOf("mm");
- const secondIndex = actualFormat.indexOf("ss");
- const list = [];
- const mapping = [];
- if (hourIndex !== -1) {
- list.push(hourIndex);
- mapping.push("hours");
- }
- if (minuteIndex !== -1) {
- list.push(minuteIndex);
- mapping.push("minutes");
- }
- if (secondIndex !== -1 && showSeconds.value) {
- list.push(secondIndex);
- mapping.push("seconds");
- }
- const index = list.indexOf(selectionRange.value[0]);
- const next = (index + step + list.length) % list.length;
- timePickerOptions["start_emitSelectRange"](mapping[next]);
- };
- const handleKeydown = (event) => {
- const code = getEventCode(event);
- const { left, right, up, down } = EVENT_CODE;
- if ([left, right].includes(code)) {
- const step = code === left ? -1 : 1;
- changeSelectionRange(step);
- event.preventDefault();
- return;
- }
- if ([up, down].includes(code)) {
- const step = code === up ? -1 : 1;
- timePickerOptions["start_scrollDown"](step);
- event.preventDefault();
- return;
- }
- };
- const { timePickerOptions, onSetOption, getAvailableTime } = useTimePanel({
- getAvailableHours,
- getAvailableMinutes,
- getAvailableSeconds
- });
- const getRangeAvailableTime = (date) => {
- return getAvailableTime(date, props.datetimeRole || "", true);
- };
- const parseUserInput = (value) => {
- if (!value)
- return null;
- return dayjs(value, props.format).locale(lang.value);
- };
- const getDefaultValue = () => {
- return dayjs(defaultValue).locale(lang.value);
- };
- emit("set-picker-option", ["isValidValue", isValidValue]);
- emit("set-picker-option", ["parseUserInput", parseUserInput]);
- emit("set-picker-option", ["handleKeydownInput", handleKeydown]);
- emit("set-picker-option", ["getRangeAvailableTime", getRangeAvailableTime]);
- emit("set-picker-option", ["getDefaultValue", getDefaultValue]);
- return (_ctx, _cache) => {
- return openBlock(), createBlock(Transition, { name: unref(transitionName) }, {
- default: withCtx(() => [
- _ctx.actualVisible || _ctx.visible ? (openBlock(), createElementBlock("div", {
- key: 0,
- class: normalizeClass(unref(ns).b("panel"))
- }, [
- createElementVNode("div", {
- class: normalizeClass([unref(ns).be("panel", "content"), { "has-seconds": unref(showSeconds) }])
- }, [
- createVNode(TimeSpinner, {
- ref: "spinner",
- role: _ctx.datetimeRole || "start",
- "arrow-control": unref(arrowControl),
- "show-seconds": unref(showSeconds),
- "am-pm-mode": unref(amPmMode),
- "spinner-date": _ctx.parsedValue,
- "disabled-hours": unref(disabledHours),
- "disabled-minutes": unref(disabledMinutes),
- "disabled-seconds": unref(disabledSeconds),
- onChange: handleChange,
- onSetOption: unref(onSetOption),
- onSelectRange: setSelectionRange
- }, null, 8, ["role", "arrow-control", "show-seconds", "am-pm-mode", "spinner-date", "disabled-hours", "disabled-minutes", "disabled-seconds", "onSetOption"])
- ], 2),
- createElementVNode("div", {
- class: normalizeClass(unref(ns).be("panel", "footer"))
- }, [
- createElementVNode("button", {
- type: "button",
- class: normalizeClass([unref(ns).be("panel", "btn"), "cancel"]),
- onClick: handleCancel
- }, toDisplayString(unref(t)("el.datepicker.cancel")), 3),
- createElementVNode("button", {
- type: "button",
- class: normalizeClass([unref(ns).be("panel", "btn"), "confirm"]),
- onClick: ($event) => handleConfirm()
- }, toDisplayString(unref(t)("el.datepicker.confirm")), 11, ["onClick"])
- ], 2)
- ], 2)) : createCommentVNode("v-if", true)
- ]),
- _: 1
- }, 8, ["name"]);
- };
- }
- });
- var TimePickPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "panel-time-pick.vue"]]);
- export { TimePickPanel as default };
- //# sourceMappingURL=panel-time-pick.mjs.map
|