| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var vue = require('vue');
- var lodashUnified = require('lodash-unified');
- var core = require('@vueuse/core');
- var iconsVue = require('@element-plus/icons-vue');
- var index$5 = require('../../input/index.js');
- var index$3 = require('../../scrollbar/index.js');
- var index$2 = require('../../tooltip/index.js');
- var index$4 = require('../../icon/index.js');
- var autocomplete = require('./autocomplete.js');
- var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
- var input = require('../../input/src/input.js');
- var useFormCommonProps = require('../../form/src/hooks/use-form-common-props.js');
- var index = require('../../../hooks/use-namespace/index.js');
- var index$1 = require('../../../hooks/use-id/index.js');
- var shared = require('@vue/shared');
- var event = require('../../../constants/event.js');
- var error = require('../../../utils/error.js');
- const COMPONENT_NAME = "ElAutocomplete";
- const __default__ = vue.defineComponent({
- name: COMPONENT_NAME,
- inheritAttrs: false
- });
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
- ...__default__,
- props: autocomplete.autocompleteProps,
- emits: autocomplete.autocompleteEmits,
- setup(__props, { expose, emit }) {
- const props = __props;
- const passInputProps = vue.computed(() => lodashUnified.pick(props, Object.keys(input.inputProps)));
- const rawAttrs = vue.useAttrs();
- const disabled = useFormCommonProps.useFormDisabled();
- const ns = index.useNamespace("autocomplete");
- const inputRef = vue.ref();
- const regionRef = vue.ref();
- const popperRef = vue.ref();
- const listboxRef = vue.ref();
- let readonly = false;
- let ignoreFocusEvent = false;
- const suggestions = vue.ref([]);
- const highlightedIndex = vue.ref(-1);
- const dropdownWidth = vue.ref("");
- const activated = vue.ref(false);
- const suggestionDisabled = vue.ref(false);
- const loading = vue.ref(false);
- const listboxId = index$1.useId();
- const styles = vue.computed(() => rawAttrs.style);
- const suggestionVisible = vue.computed(() => {
- const isValidData = suggestions.value.length > 0;
- return (isValidData || loading.value) && activated.value;
- });
- const suggestionLoading = vue.computed(() => !props.hideLoading && loading.value);
- const refInput = vue.computed(() => {
- if (inputRef.value) {
- return Array.from(inputRef.value.$el.querySelectorAll("input"));
- }
- return [];
- });
- const onSuggestionShow = () => {
- if (suggestionVisible.value) {
- dropdownWidth.value = `${inputRef.value.$el.offsetWidth}px`;
- }
- };
- const onHide = () => {
- highlightedIndex.value = -1;
- };
- const getData = async (queryString) => {
- if (suggestionDisabled.value)
- return;
- const cb = (suggestionList) => {
- loading.value = false;
- if (suggestionDisabled.value)
- return;
- if (shared.isArray(suggestionList)) {
- suggestions.value = suggestionList;
- highlightedIndex.value = props.highlightFirstItem ? 0 : -1;
- } else {
- error.throwError(COMPONENT_NAME, "autocomplete suggestions must be an array");
- }
- };
- loading.value = true;
- if (shared.isArray(props.fetchSuggestions)) {
- cb(props.fetchSuggestions);
- } else {
- const result = await props.fetchSuggestions(queryString, cb);
- if (shared.isArray(result))
- cb(result);
- }
- };
- const debouncedGetData = lodashUnified.debounce(getData, props.debounce);
- const handleInput = (value) => {
- const valuePresented = !!value;
- emit(event.INPUT_EVENT, value);
- emit(event.UPDATE_MODEL_EVENT, value);
- suggestionDisabled.value = false;
- activated.value || (activated.value = valuePresented);
- if (!props.triggerOnFocus && !value) {
- suggestionDisabled.value = true;
- suggestions.value = [];
- return;
- }
- debouncedGetData(value);
- };
- const handleMouseDown = (event) => {
- var _a;
- if (disabled.value)
- return;
- if (((_a = event.target) == null ? void 0 : _a.tagName) !== "INPUT" || refInput.value.includes(document.activeElement)) {
- activated.value = true;
- }
- };
- const handleChange = (value) => {
- emit(event.CHANGE_EVENT, value);
- };
- const handleFocus = (evt) => {
- var _a;
- if (!ignoreFocusEvent) {
- activated.value = true;
- emit("focus", evt);
- const queryString = (_a = props.modelValue) != null ? _a : "";
- if (props.triggerOnFocus && !readonly) {
- debouncedGetData(String(queryString));
- }
- } else {
- ignoreFocusEvent = false;
- }
- };
- const handleBlur = (evt) => {
- setTimeout(() => {
- var _a;
- if ((_a = popperRef.value) == null ? void 0 : _a.isFocusInsideContent()) {
- ignoreFocusEvent = true;
- return;
- }
- activated.value && close();
- emit("blur", evt);
- });
- };
- const handleClear = () => {
- activated.value = false;
- emit(event.UPDATE_MODEL_EVENT, "");
- emit("clear");
- };
- const handleKeyEnter = async () => {
- var _a;
- if ((_a = inputRef.value) == null ? void 0 : _a.isComposing) {
- return;
- }
- if (suggestionVisible.value && highlightedIndex.value >= 0 && highlightedIndex.value < suggestions.value.length) {
- handleSelect(suggestions.value[highlightedIndex.value]);
- } else if (props.selectWhenUnmatched) {
- emit("select", { value: props.modelValue });
- suggestions.value = [];
- highlightedIndex.value = -1;
- }
- };
- const handleKeyEscape = (evt) => {
- if (suggestionVisible.value) {
- evt.preventDefault();
- evt.stopPropagation();
- close();
- }
- };
- const close = () => {
- activated.value = false;
- };
- 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 handleSelect = async (item) => {
- emit(event.INPUT_EVENT, item[props.valueKey]);
- emit(event.UPDATE_MODEL_EVENT, item[props.valueKey]);
- emit("select", item);
- suggestions.value = [];
- highlightedIndex.value = -1;
- };
- const highlight = (index) => {
- var _a, _b;
- if (!suggestionVisible.value || loading.value)
- return;
- if (index < 0) {
- highlightedIndex.value = -1;
- return;
- }
- if (index >= suggestions.value.length) {
- index = suggestions.value.length - 1;
- }
- const suggestion = regionRef.value.querySelector(`.${ns.be("suggestion", "wrap")}`);
- const suggestionList = suggestion.querySelectorAll(`.${ns.be("suggestion", "list")} li`);
- const highlightItem = suggestionList[index];
- const scrollTop = suggestion.scrollTop;
- const { offsetTop, scrollHeight } = highlightItem;
- if (offsetTop + scrollHeight > scrollTop + suggestion.clientHeight) {
- suggestion.scrollTop += scrollHeight;
- }
- if (offsetTop < scrollTop) {
- suggestion.scrollTop -= scrollHeight;
- }
- highlightedIndex.value = index;
- (_b = (_a = inputRef.value) == null ? void 0 : _a.ref) == null ? void 0 : _b.setAttribute("aria-activedescendant", `${listboxId.value}-item-${highlightedIndex.value}`);
- };
- const stopHandle = core.onClickOutside(listboxRef, () => {
- var _a;
- if ((_a = popperRef.value) == null ? void 0 : _a.isFocusInsideContent())
- return;
- suggestionVisible.value && close();
- });
- vue.onBeforeUnmount(() => {
- stopHandle == null ? void 0 : stopHandle();
- });
- vue.onMounted(() => {
- var _a;
- const inputElement = (_a = inputRef.value) == null ? void 0 : _a.ref;
- if (!inputElement)
- return;
- [
- { key: "role", value: "textbox" },
- { key: "aria-autocomplete", value: "list" },
- { key: "aria-controls", value: "id" },
- {
- key: "aria-activedescendant",
- value: `${listboxId.value}-item-${highlightedIndex.value}`
- }
- ].forEach(({ key, value }) => inputElement.setAttribute(key, value));
- readonly = inputElement.hasAttribute("readonly");
- });
- expose({
- highlightedIndex,
- activated,
- loading,
- inputRef,
- popperRef,
- suggestions,
- handleSelect,
- handleKeyEnter,
- focus,
- blur,
- close,
- highlight,
- getData
- });
- return (_ctx, _cache) => {
- return vue.openBlock(), vue.createBlock(vue.unref(index$2.ElTooltip), {
- ref_key: "popperRef",
- ref: popperRef,
- visible: vue.unref(suggestionVisible),
- placement: _ctx.placement,
- "fallback-placements": ["bottom-start", "top-start"],
- "popper-class": [vue.unref(ns).e("popper"), _ctx.popperClass],
- teleported: _ctx.teleported,
- "append-to": _ctx.appendTo,
- "gpu-acceleration": false,
- pure: "",
- "manual-mode": "",
- effect: "light",
- trigger: "click",
- transition: `${vue.unref(ns).namespace.value}-zoom-in-top`,
- persistent: "",
- role: "listbox",
- onBeforeShow: onSuggestionShow,
- onHide
- }, {
- content: vue.withCtx(() => [
- vue.createElementVNode("div", {
- ref_key: "regionRef",
- ref: regionRef,
- class: vue.normalizeClass([vue.unref(ns).b("suggestion"), vue.unref(ns).is("loading", vue.unref(suggestionLoading))]),
- style: vue.normalizeStyle({
- [_ctx.fitInputWidth ? "width" : "minWidth"]: dropdownWidth.value,
- outline: "none"
- }),
- role: "region"
- }, [
- _ctx.$slots.header ? (vue.openBlock(), vue.createElementBlock("div", {
- key: 0,
- class: vue.normalizeClass(vue.unref(ns).be("suggestion", "header")),
- onClick: vue.withModifiers(() => {
- }, ["stop"])
- }, [
- vue.renderSlot(_ctx.$slots, "header")
- ], 10, ["onClick"])) : vue.createCommentVNode("v-if", true),
- vue.createVNode(vue.unref(index$3.ElScrollbar), {
- id: vue.unref(listboxId),
- tag: "ul",
- "wrap-class": vue.unref(ns).be("suggestion", "wrap"),
- "view-class": vue.unref(ns).be("suggestion", "list"),
- role: "listbox"
- }, {
- default: vue.withCtx(() => [
- vue.unref(suggestionLoading) ? (vue.openBlock(), vue.createElementBlock("li", { key: 0 }, [
- vue.renderSlot(_ctx.$slots, "loading", {}, () => [
- vue.createVNode(vue.unref(index$4.ElIcon), {
- class: vue.normalizeClass(vue.unref(ns).is("loading"))
- }, {
- default: vue.withCtx(() => [
- vue.createVNode(vue.unref(iconsVue.Loading))
- ]),
- _: 1
- }, 8, ["class"])
- ])
- ])) : (vue.openBlock(true), vue.createElementBlock(vue.Fragment, { key: 1 }, vue.renderList(suggestions.value, (item, index) => {
- return vue.openBlock(), vue.createElementBlock("li", {
- id: `${vue.unref(listboxId)}-item-${index}`,
- key: index,
- class: vue.normalizeClass({ highlighted: highlightedIndex.value === index }),
- role: "option",
- "aria-selected": highlightedIndex.value === index,
- onClick: ($event) => handleSelect(item)
- }, [
- vue.renderSlot(_ctx.$slots, "default", { item }, () => [
- vue.createTextVNode(vue.toDisplayString(item[_ctx.valueKey]), 1)
- ])
- ], 10, ["id", "aria-selected", "onClick"]);
- }), 128))
- ]),
- _: 3
- }, 8, ["id", "wrap-class", "view-class"]),
- _ctx.$slots.footer ? (vue.openBlock(), vue.createElementBlock("div", {
- key: 1,
- class: vue.normalizeClass(vue.unref(ns).be("suggestion", "footer")),
- onClick: vue.withModifiers(() => {
- }, ["stop"])
- }, [
- vue.renderSlot(_ctx.$slots, "footer")
- ], 10, ["onClick"])) : vue.createCommentVNode("v-if", true)
- ], 6)
- ]),
- default: vue.withCtx(() => [
- vue.createElementVNode("div", {
- ref_key: "listboxRef",
- ref: listboxRef,
- class: vue.normalizeClass([vue.unref(ns).b(), _ctx.$attrs.class]),
- style: vue.normalizeStyle(vue.unref(styles)),
- role: "combobox",
- "aria-haspopup": "listbox",
- "aria-expanded": vue.unref(suggestionVisible),
- "aria-owns": vue.unref(listboxId)
- }, [
- vue.createVNode(vue.unref(index$5.ElInput), vue.mergeProps({
- ref_key: "inputRef",
- ref: inputRef
- }, vue.mergeProps(vue.unref(passInputProps), _ctx.$attrs), {
- "model-value": _ctx.modelValue,
- disabled: vue.unref(disabled),
- onInput: handleInput,
- onChange: handleChange,
- onFocus: handleFocus,
- onBlur: handleBlur,
- onClear: handleClear,
- onKeydown: [
- vue.withKeys(vue.withModifiers(($event) => highlight(highlightedIndex.value - 1), ["prevent"]), ["up"]),
- vue.withKeys(vue.withModifiers(($event) => highlight(highlightedIndex.value + 1), ["prevent"]), ["down"]),
- vue.withKeys(handleKeyEnter, ["enter"]),
- vue.withKeys(close, ["tab"]),
- vue.withKeys(handleKeyEscape, ["esc"])
- ],
- onMousedown: handleMouseDown
- }), vue.createSlots({
- _: 2
- }, [
- _ctx.$slots.prepend ? {
- name: "prepend",
- fn: vue.withCtx(() => [
- vue.renderSlot(_ctx.$slots, "prepend")
- ])
- } : void 0,
- _ctx.$slots.append ? {
- name: "append",
- fn: vue.withCtx(() => [
- vue.renderSlot(_ctx.$slots, "append")
- ])
- } : void 0,
- _ctx.$slots.prefix ? {
- name: "prefix",
- fn: vue.withCtx(() => [
- vue.renderSlot(_ctx.$slots, "prefix")
- ])
- } : void 0,
- _ctx.$slots.suffix ? {
- name: "suffix",
- fn: vue.withCtx(() => [
- vue.renderSlot(_ctx.$slots, "suffix")
- ])
- } : void 0
- ]), 1040, ["model-value", "disabled", "onKeydown"])
- ], 14, ["aria-expanded", "aria-owns"])
- ]),
- _: 3
- }, 8, ["visible", "placement", "popper-class", "teleported", "append-to", "transition"]);
- };
- }
- });
- var Autocomplete = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "autocomplete.vue"]]);
- exports["default"] = Autocomplete;
- //# sourceMappingURL=autocomplete2.js.map
|