import { reactive, ref, computed, watch, watchEffect, nextTick, toRaw, onMounted } from 'vue'; import { castArray, isEqual, get, debounce, findLastIndex } from 'lodash-unified'; import { isIOS, isClient, useResizeObserver } from '@vueuse/core'; import '../../../utils/index.mjs'; import '../../../constants/index.mjs'; import '../../../hooks/index.mjs'; import '../../form/index.mjs'; import { useLocale } from '../../../hooks/use-locale/index.mjs'; import { useId } from '../../../hooks/use-id/index.mjs'; import { useNamespace } from '../../../hooks/use-namespace/index.mjs'; import { useComposition } from '../../../hooks/use-composition/index.mjs'; import { useFocusController } from '../../../hooks/use-focus-controller/index.mjs'; import { useFormItem, useFormItemInputId } from '../../form/src/hooks/use-form-item.mjs'; import { useEmptyValues } from '../../../hooks/use-empty-values/index.mjs'; import { isArray, isFunction, toRawType, isObject } from '@vue/shared'; import { ValidateComponentsMap } from '../../../utils/vue/icon.mjs'; import { useFormSize } from '../../form/src/hooks/use-form-common-props.mjs'; import { isUndefined, isNumber } from '../../../utils/types.mjs'; import { debugWarn } from '../../../utils/error.mjs'; import { CHANGE_EVENT, UPDATE_MODEL_EVENT } from '../../../constants/event.mjs'; import { EVENT_CODE } from '../../../constants/aria.mjs'; import { scrollIntoView } from '../../../utils/dom/scroll.mjs'; const MINIMUM_INPUT_WIDTH = 11; const useSelect = (props, emit) => { const { t } = useLocale(); const contentId = useId(); const nsSelect = useNamespace("select"); const nsInput = useNamespace("input"); const states = reactive({ inputValue: "", options: /* @__PURE__ */ new Map(), cachedOptions: /* @__PURE__ */ new Map(), disabledOptions: /* @__PURE__ */ new Map(), optionValues: [], selected: [], selectionWidth: 0, calculatorWidth: 0, collapseItemWidth: 0, selectedLabel: "", hoveringIndex: -1, previousQuery: null, inputHovering: false, menuVisibleOnFocus: false, isBeforeHide: false }); const selectRef = ref(null); const selectionRef = ref(null); const tooltipRef = ref(null); const tagTooltipRef = ref(null); const inputRef = ref(null); const calculatorRef = ref(null); const prefixRef = ref(null); const suffixRef = ref(null); const menuRef = ref(null); const tagMenuRef = ref(null); const collapseItemRef = ref(null); const scrollbarRef = ref(null); const { isComposing, handleCompositionStart, handleCompositionUpdate, handleCompositionEnd } = useComposition({ afterComposition: (e) => onInput(e) }); const { wrapperRef, isFocused } = useFocusController(inputRef, { beforeFocus() { return selectDisabled.value; }, afterFocus() { if (props.automaticDropdown && !expanded.value) { expanded.value = true; states.menuVisibleOnFocus = true; } }, beforeBlur(event) { var _a, _b; return ((_a = tooltipRef.value) == null ? void 0 : _a.isFocusInsideContent(event)) || ((_b = tagTooltipRef.value) == null ? void 0 : _b.isFocusInsideContent(event)); }, afterBlur() { expanded.value = false; states.menuVisibleOnFocus = false; } }); const expanded = ref(false); const hoverOption = ref(); const { form, formItem } = useFormItem(); const { inputId } = useFormItemInputId(props, { formItemContext: formItem }); const { valueOnClear, isEmptyValue } = useEmptyValues(props); const selectDisabled = computed(() => props.disabled || (form == null ? void 0 : form.disabled)); const hasModelValue = computed(() => { return isArray(props.modelValue) ? props.modelValue.length > 0 : !isEmptyValue(props.modelValue); }); const showClose = computed(() => { return props.clearable && !selectDisabled.value && states.inputHovering && hasModelValue.value; }); const iconComponent = computed(() => props.remote && props.filterable && !props.remoteShowSuffix ? "" : props.suffixIcon); const iconReverse = computed(() => nsSelect.is("reverse", iconComponent.value && expanded.value)); const validateState = computed(() => (formItem == null ? void 0 : formItem.validateState) || ""); const validateIcon = computed(() => ValidateComponentsMap[validateState.value]); const debounce$1 = computed(() => props.remote ? 300 : 0); const emptyText = computed(() => { if (props.loading) { return props.loadingText || t("el.select.loading"); } else { if (props.remote && !states.inputValue && states.options.size === 0) return false; if (props.filterable && states.inputValue && states.options.size > 0 && filteredOptionsCount.value === 0) { return props.noMatchText || t("el.select.noMatch"); } if (states.options.size === 0) { return props.noDataText || t("el.select.noData"); } } return null; }); const filteredOptionsCount = computed(() => optionsArray.value.filter((option) => option.visible).length); const optionsArray = computed(() => { const list = Array.from(states.options.values()); const newList = []; states.optionValues.forEach((item) => { const index = list.findIndex((i) => i.value === item); if (index > -1) { newList.push(list[index]); } }); return newList.length >= list.length ? newList : list; }); const cachedOptionsArray = computed(() => Array.from(states.cachedOptions.values())); const showNewOption = computed(() => { const hasExistingOption = optionsArray.value.filter((option) => { return !option.created; }).some((option) => { return option.currentLabel === states.inputValue; }); return props.filterable && props.allowCreate && states.inputValue !== "" && !hasExistingOption; }); const updateOptions = () => { if (props.filterable && isFunction(props.filterMethod)) return; if (props.filterable && props.remote && isFunction(props.remoteMethod)) return; optionsArray.value.forEach((option) => { var _a; (_a = option.updateOption) == null ? void 0 : _a.call(option, states.inputValue); }); }; const selectSize = useFormSize(); const collapseTagSize = computed(() => ["small"].includes(selectSize.value) ? "small" : "default"); const dropdownMenuVisible = computed({ get() { return expanded.value && emptyText.value !== false; }, set(val) { expanded.value = val; } }); const shouldShowPlaceholder = computed(() => { if (props.multiple && !isUndefined(props.modelValue)) { return castArray(props.modelValue).length === 0 && !states.inputValue; } const value = isArray(props.modelValue) ? props.modelValue[0] : props.modelValue; return props.filterable || isUndefined(value) ? !states.inputValue : true; }); const currentPlaceholder = computed(() => { var _a; const _placeholder = (_a = props.placeholder) != null ? _a : t("el.select.placeholder"); return props.multiple || !hasModelValue.value ? _placeholder : states.selectedLabel; }); const mouseEnterEventName = computed(() => isIOS ? null : "mouseenter"); watch(() => props.modelValue, (val, oldVal) => { if (props.multiple) { if (props.filterable && !props.reserveKeyword) { states.inputValue = ""; handleQueryChange(""); } } setSelected(); if (!isEqual(val, oldVal) && props.validateEvent) { formItem == null ? void 0 : formItem.validate("change").catch((err) => debugWarn(err)); } }, { flush: "post", deep: true }); watch(() => expanded.value, (val) => { if (val) { handleQueryChange(states.inputValue); } else { states.inputValue = ""; states.previousQuery = null; states.isBeforeHide = true; } emit("visible-change", val); }); watch(() => states.options.entries(), () => { var _a; if (!isClient) return; const inputs = ((_a = selectRef.value) == null ? void 0 : _a.querySelectorAll("input")) || []; if (!props.filterable && !props.defaultFirstOption && !isUndefined(props.modelValue) || !Array.from(inputs).includes(document.activeElement)) { setSelected(); } if (props.defaultFirstOption && (props.filterable || props.remote) && filteredOptionsCount.value) { checkDefaultFirstOption(); } }, { flush: "post" }); watch(() => states.hoveringIndex, (val) => { if (isNumber(val) && val > -1) { hoverOption.value = optionsArray.value[val] || {}; } else { hoverOption.value = {}; } optionsArray.value.forEach((option) => { option.hover = hoverOption.value === option; }); }); watchEffect(() => { if (states.isBeforeHide) return; updateOptions(); }); const handleQueryChange = (val) => { if (states.previousQuery === val || isComposing.value) { return; } states.previousQuery = val; if (props.filterable && isFunction(props.filterMethod)) { props.filterMethod(val); } else if (props.filterable && props.remote && isFunction(props.remoteMethod)) { props.remoteMethod(val); } if (props.defaultFirstOption && (props.filterable || props.remote) && filteredOptionsCount.value) { nextTick(checkDefaultFirstOption); } else { nextTick(updateHoveringIndex); } }; const checkDefaultFirstOption = () => { const optionsInDropdown = optionsArray.value.filter((n) => n.visible && !n.disabled && !n.states.groupDisabled); const userCreatedOption = optionsInDropdown.find((n) => n.created); const firstOriginOption = optionsInDropdown[0]; states.hoveringIndex = getValueIndex(optionsArray.value, userCreatedOption || firstOriginOption); }; const setSelected = () => { if (!props.multiple) { const value = isArray(props.modelValue) ? props.modelValue[0] : props.modelValue; const option = getOption(value); states.selectedLabel = option.currentLabel; states.selected = [option]; return; } else { states.selectedLabel = ""; } const result = []; if (!isUndefined(props.modelValue)) { castArray(props.modelValue).forEach((value) => { result.push(getOption(value)); }); } states.selected = result; }; const getOption = (value) => { let option; const isObjectValue = toRawType(value).toLowerCase() === "object"; const isNull = toRawType(value).toLowerCase() === "null"; const isUndefined2 = toRawType(value).toLowerCase() === "undefined"; for (let i = states.cachedOptions.size - 1; i >= 0; i--) { const cachedOption = cachedOptionsArray.value[i]; const isEqualValue = isObjectValue ? get(cachedOption.value, props.valueKey) === get(value, props.valueKey) : cachedOption.value === value; if (isEqualValue) { option = { value, currentLabel: cachedOption.currentLabel, get isDisabled() { return cachedOption.isDisabled; } }; break; } } if (option) return option; const label = isObjectValue ? value.label : !isNull && !isUndefined2 ? value : ""; const newOption = { value, currentLabel: label }; return newOption; }; const updateHoveringIndex = () => { states.hoveringIndex = optionsArray.value.findIndex((item) => states.selected.some((selected) => getValueKey(selected) === getValueKey(item))); }; const resetSelectionWidth = () => { states.selectionWidth = selectionRef.value.getBoundingClientRect().width; }; const resetCalculatorWidth = () => { states.calculatorWidth = calculatorRef.value.getBoundingClientRect().width; }; const resetCollapseItemWidth = () => { states.collapseItemWidth = collapseItemRef.value.getBoundingClientRect().width; }; const updateTooltip = () => { var _a, _b; (_b = (_a = tooltipRef.value) == null ? void 0 : _a.updatePopper) == null ? void 0 : _b.call(_a); }; const updateTagTooltip = () => { var _a, _b; (_b = (_a = tagTooltipRef.value) == null ? void 0 : _a.updatePopper) == null ? void 0 : _b.call(_a); }; const onInputChange = () => { if (states.inputValue.length > 0 && !expanded.value) { expanded.value = true; } handleQueryChange(states.inputValue); }; const onInput = (event) => { states.inputValue = event.target.value; if (props.remote) { debouncedOnInputChange(); } else { return onInputChange(); } }; const debouncedOnInputChange = debounce(() => { onInputChange(); }, debounce$1.value); const emitChange = (val) => { if (!isEqual(props.modelValue, val)) { emit(CHANGE_EVENT, val); } }; const getLastNotDisabledIndex = (value) => findLastIndex(value, (it) => !states.disabledOptions.has(it)); const deletePrevTag = (e) => { if (!props.multiple) return; if (e.code === EVENT_CODE.delete) return; if (e.target.value.length <= 0) { const value = castArray(props.modelValue).slice(); const lastNotDisabledIndex = getLastNotDisabledIndex(value); if (lastNotDisabledIndex < 0) return; const removeTagValue = value[lastNotDisabledIndex]; value.splice(lastNotDisabledIndex, 1); emit(UPDATE_MODEL_EVENT, value); emitChange(value); emit("remove-tag", removeTagValue); } }; const deleteTag = (event, tag) => { const index = states.selected.indexOf(tag); if (index > -1 && !selectDisabled.value) { const value = castArray(props.modelValue).slice(); value.splice(index, 1); emit(UPDATE_MODEL_EVENT, value); emitChange(value); emit("remove-tag", tag.value); } event.stopPropagation(); focus(); }; const deleteSelected = (event) => { event.stopPropagation(); const value = props.multiple ? [] : valueOnClear.value; if (props.multiple) { for (const item of states.selected) { if (item.isDisabled) value.push(item.value); } } emit(UPDATE_MODEL_EVENT, value); emitChange(value); states.hoveringIndex = -1; expanded.value = false; emit("clear"); focus(); }; const handleOptionSelect = (option) => { var _a; if (props.multiple) { const value = castArray((_a = props.modelValue) != null ? _a : []).slice(); const optionIndex = getValueIndex(value, option.value); if (optionIndex > -1) { value.splice(optionIndex, 1); } else if (props.multipleLimit <= 0 || value.length < props.multipleLimit) { value.push(option.value); } emit(UPDATE_MODEL_EVENT, value); emitChange(value); if (option.created) { handleQueryChange(""); } if (props.filterable && !props.reserveKeyword) { states.inputValue = ""; } } else { emit(UPDATE_MODEL_EVENT, option.value); emitChange(option.value); expanded.value = false; } focus(); if (expanded.value) return; nextTick(() => { scrollToOption(option); }); }; const getValueIndex = (arr = [], value) => { if (!isObject(value)) return arr.indexOf(value); const valueKey = props.valueKey; let index = -1; arr.some((item, i) => { if (toRaw(get(item, valueKey)) === get(value, valueKey)) { index = i; return true; } return false; }); return index; }; const scrollToOption = (option) => { var _a, _b, _c, _d, _e; const targetOption = isArray(option) ? option[0] : option; let target = null; if (targetOption == null ? void 0 : targetOption.value) { const options = optionsArray.value.filter((item) => item.value === targetOption.value); if (options.length > 0) { target = options[0].$el; } } if (tooltipRef.value && target) { const menu = (_d = (_c = (_b = (_a = tooltipRef.value) == null ? void 0 : _a.popperRef) == null ? void 0 : _b.contentRef) == null ? void 0 : _c.querySelector) == null ? void 0 : _d.call(_c, `.${nsSelect.be("dropdown", "wrap")}`); if (menu) { scrollIntoView(menu, target); } } (_e = scrollbarRef.value) == null ? void 0 : _e.handleScroll(); }; const onOptionCreate = (vm) => { states.options.set(vm.value, vm); states.cachedOptions.set(vm.value, vm); vm.disabled && states.disabledOptions.set(vm.value, vm); }; const onOptionDestroy = (key, vm) => { if (states.options.get(key) === vm) { states.options.delete(key); } }; const popperRef = computed(() => { var _a, _b; return (_b = (_a = tooltipRef.value) == null ? void 0 : _a.popperRef) == null ? void 0 : _b.contentRef; }); const handleMenuEnter = () => { states.isBeforeHide = false; nextTick(() => scrollToOption(states.selected)); }; const focus = () => { var _a; (_a = inputRef.value) == null ? void 0 : _a.focus(); }; const blur = () => { var _a; (_a = inputRef.value) == null ? void 0 : _a.blur(); }; const handleClearClick = (event) => { deleteSelected(event); }; const handleClickOutside = () => { expanded.value = false; isFocused.value && blur(); }; const handleEsc = () => { if (states.inputValue.length > 0) { states.inputValue = ""; } else { expanded.value = false; } }; const toggleMenu = () => { if (selectDisabled.value) return; if (isIOS) states.inputHovering = true; if (states.menuVisibleOnFocus) { states.menuVisibleOnFocus = false; } else { expanded.value = !expanded.value; } }; const selectOption = () => { if (!expanded.value) { toggleMenu(); } else { if (optionsArray.value[states.hoveringIndex]) { handleOptionSelect(optionsArray.value[states.hoveringIndex]); } } }; const getValueKey = (item) => { return isObject(item.value) ? get(item.value, props.valueKey) : item.value; }; const optionsAllDisabled = computed(() => optionsArray.value.filter((option) => option.visible).every((option) => option.disabled)); const showTagList = computed(() => { if (!props.multiple) { return []; } return props.collapseTags ? states.selected.slice(0, props.maxCollapseTags) : states.selected; }); const collapseTagList = computed(() => { if (!props.multiple) { return []; } return props.collapseTags ? states.selected.slice(props.maxCollapseTags) : []; }); const navigateOptions = (direction) => { if (!expanded.value) { expanded.value = true; return; } if (states.options.size === 0 || states.filteredOptionsCount === 0 || isComposing.value) return; if (!optionsAllDisabled.value) { if (direction === "next") { states.hoveringIndex++; if (states.hoveringIndex === states.options.size) { states.hoveringIndex = 0; } } else if (direction === "prev") { states.hoveringIndex--; if (states.hoveringIndex < 0) { states.hoveringIndex = states.options.size - 1; } } const option = optionsArray.value[states.hoveringIndex]; if (option.disabled === true || option.states.groupDisabled === true || !option.visible) { navigateOptions(direction); } nextTick(() => scrollToOption(hoverOption.value)); } }; const getGapWidth = () => { if (!selectionRef.value) return 0; const style = window.getComputedStyle(selectionRef.value); return Number.parseFloat(style.gap || "6px"); }; const tagStyle = computed(() => { const gapWidth = getGapWidth(); const maxWidth = collapseItemRef.value && props.maxCollapseTags === 1 ? states.selectionWidth - states.collapseItemWidth - gapWidth : states.selectionWidth; return { maxWidth: `${maxWidth}px` }; }); const collapseTagStyle = computed(() => { return { maxWidth: `${states.selectionWidth}px` }; }); const inputStyle = computed(() => ({ width: `${Math.max(states.calculatorWidth, MINIMUM_INPUT_WIDTH)}px` })); useResizeObserver(selectionRef, resetSelectionWidth); useResizeObserver(calculatorRef, resetCalculatorWidth); useResizeObserver(menuRef, updateTooltip); useResizeObserver(wrapperRef, updateTooltip); useResizeObserver(tagMenuRef, updateTagTooltip); useResizeObserver(collapseItemRef, resetCollapseItemWidth); onMounted(() => { setSelected(); }); return { inputId, contentId, nsSelect, nsInput, states, isFocused, expanded, optionsArray, hoverOption, selectSize, filteredOptionsCount, resetCalculatorWidth, updateTooltip, updateTagTooltip, debouncedOnInputChange, onInput, deletePrevTag, deleteTag, deleteSelected, handleOptionSelect, scrollToOption, hasModelValue, shouldShowPlaceholder, currentPlaceholder, mouseEnterEventName, showClose, iconComponent, iconReverse, validateState, validateIcon, showNewOption, updateOptions, collapseTagSize, setSelected, selectDisabled, emptyText, handleCompositionStart, handleCompositionUpdate, handleCompositionEnd, onOptionCreate, onOptionDestroy, handleMenuEnter, focus, blur, handleClearClick, handleClickOutside, handleEsc, toggleMenu, selectOption, getValueKey, navigateOptions, dropdownMenuVisible, showTagList, collapseTagList, tagStyle, collapseTagStyle, inputStyle, popperRef, inputRef, tooltipRef, tagTooltipRef, calculatorRef, prefixRef, suffixRef, selectRef, wrapperRef, selectionRef, scrollbarRef, menuRef, tagMenuRef, collapseItemRef }; }; export { useSelect }; //# sourceMappingURL=useSelect.mjs.map