UNPKG

element-plus

Version:

A Component Library for Vue 3

117 lines (114 loc) 3.99 kB
import { defineComponent, ref, openBlock, createElementBlock, normalizeClass, unref, normalizeStyle, renderSlot, createElementVNode, mergeProps } from 'vue'; import { timePickerRangeTriggerProps } from './props.mjs'; import _export_sfc from '../../../../_virtual/plugin-vue_export-helper.mjs'; import { useAttrs } from '../../../../hooks/use-attrs/index.mjs'; import { useNamespace } from '../../../../hooks/use-namespace/index.mjs'; import { useFocusController } from '../../../../hooks/use-focus-controller/index.mjs'; const __default__ = defineComponent({ name: "PickerRangeTrigger", inheritAttrs: false }); const _sfc_main = /* @__PURE__ */ defineComponent({ ...__default__, props: timePickerRangeTriggerProps, emits: [ "mouseenter", "mouseleave", "click", "touchstart", "focus", "blur", "startInput", "endInput", "startChange", "endChange" ], setup(__props, { expose, emit }) { const attrs = useAttrs(); const nsDate = useNamespace("date"); const nsRange = useNamespace("range"); const inputRef = ref(); const endInputRef = ref(); const { wrapperRef, isFocused } = useFocusController(inputRef); const handleClick = (evt) => { emit("click", evt); }; const handleMouseEnter = (evt) => { emit("mouseenter", evt); }; const handleMouseLeave = (evt) => { emit("mouseleave", evt); }; const handleTouchStart = (evt) => { emit("mouseenter", evt); }; const handleStartInput = (evt) => { emit("startInput", evt); }; const handleEndInput = (evt) => { emit("endInput", evt); }; const handleStartChange = (evt) => { emit("startChange", evt); }; const handleEndChange = (evt) => { emit("endChange", evt); }; const focus = () => { var _a; (_a = inputRef.value) == null ? void 0 : _a.focus(); }; const blur = () => { var _a, _b; (_a = inputRef.value) == null ? void 0 : _a.blur(); (_b = endInputRef.value) == null ? void 0 : _b.blur(); }; expose({ focus, blur }); return (_ctx, _cache) => { return openBlock(), createElementBlock("div", { ref_key: "wrapperRef", ref: wrapperRef, class: normalizeClass([unref(nsDate).is("active", unref(isFocused)), _ctx.$attrs.class]), style: normalizeStyle(_ctx.$attrs.style), onClick: handleClick, onMouseenter: handleMouseEnter, onMouseleave: handleMouseLeave, onTouchstartPassive: handleTouchStart }, [ renderSlot(_ctx.$slots, "prefix"), createElementVNode("input", mergeProps(unref(attrs), { id: _ctx.id && _ctx.id[0], ref_key: "inputRef", ref: inputRef, name: _ctx.name && _ctx.name[0], placeholder: _ctx.startPlaceholder, value: _ctx.modelValue && _ctx.modelValue[0], class: unref(nsRange).b("input"), disabled: _ctx.disabled, onInput: handleStartInput, onChange: handleStartChange }), null, 16, ["id", "name", "placeholder", "value", "disabled"]), renderSlot(_ctx.$slots, "range-separator"), createElementVNode("input", mergeProps(unref(attrs), { id: _ctx.id && _ctx.id[1], ref_key: "endInputRef", ref: endInputRef, name: _ctx.name && _ctx.name[1], placeholder: _ctx.endPlaceholder, value: _ctx.modelValue && _ctx.modelValue[1], class: unref(nsRange).b("input"), disabled: _ctx.disabled, onInput: handleEndInput, onChange: handleEndChange }), null, 16, ["id", "name", "placeholder", "value", "disabled"]), renderSlot(_ctx.$slots, "suffix") ], 38); }; } }); var PickerRangeTrigger = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "picker-range-trigger.vue"]]); export { PickerRangeTrigger as default }; //# sourceMappingURL=picker-range-trigger.mjs.map