UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

1,186 lines (1,182 loc) 54.7 kB
import { FilterService } from 'primevue/api'; import ChevronDownIcon from 'primevue/icons/chevrondown'; import FilterIcon from 'primevue/icons/filter'; import SpinnerIcon from 'primevue/icons/spinner'; import TimesIcon from 'primevue/icons/times'; import OverlayEventBus from 'primevue/overlayeventbus'; import Portal from 'primevue/portal'; import Ripple from 'primevue/ripple'; import { UniqueComponentId, ZIndexUtils, ObjectUtils, DomHandler, ConnectedOverlayScrollHandler } from 'primevue/utils'; import VirtualScroller from 'primevue/virtualscroller'; import BaseComponent from 'primevue/basecomponent'; import DropdownStyle from 'primevue/dropdown/style'; import { resolveComponent, resolveDirective, openBlock, createElementBlock, mergeProps, renderSlot, createTextVNode, toDisplayString, normalizeClass, createBlock, resolveDynamicComponent, createCommentVNode, createElementVNode, createVNode, withCtx, Transition, createSlots, Fragment, renderList, withDirectives } from 'vue'; var script$1 = { name: 'BaseDropdown', "extends": BaseComponent, props: { modelValue: null, options: Array, optionLabel: [String, Function], optionValue: [String, Function], optionDisabled: [String, Function], optionGroupLabel: [String, Function], optionGroupChildren: [String, Function], scrollHeight: { type: String, "default": '200px' }, filter: Boolean, filterPlaceholder: String, filterLocale: String, filterMatchMode: { type: String, "default": 'contains' }, filterFields: { type: Array, "default": null }, editable: Boolean, placeholder: { type: String, "default": null }, disabled: { type: Boolean, "default": false }, dataKey: null, showClear: { type: Boolean, "default": false }, inputId: { type: String, "default": null }, inputClass: { type: [String, Object], "default": null }, inputStyle: { type: Object, "default": null }, inputProps: { type: null, "default": null }, panelClass: { type: [String, Object], "default": null }, panelStyle: { type: Object, "default": null }, panelProps: { type: null, "default": null }, filterInputProps: { type: null, "default": null }, clearIconProps: { type: null, "default": null }, appendTo: { type: String, "default": 'body' }, loading: { type: Boolean, "default": false }, clearIcon: { type: String, "default": undefined }, dropdownIcon: { type: String, "default": undefined }, filterIcon: { type: String, "default": undefined }, loadingIcon: { type: String, "default": undefined }, resetFilterOnHide: { type: Boolean, "default": false }, virtualScrollerOptions: { type: Object, "default": null }, autoOptionFocus: { type: Boolean, "default": true }, autoFilterFocus: { type: Boolean, "default": false }, selectOnFocus: { type: Boolean, "default": false }, filterMessage: { type: String, "default": null }, selectionMessage: { type: String, "default": null }, emptySelectionMessage: { type: String, "default": null }, emptyFilterMessage: { type: String, "default": null }, emptyMessage: { type: String, "default": null }, tabindex: { type: Number, "default": 0 }, ariaLabel: { type: String, "default": null }, ariaLabelledby: { type: String, "default": null } }, style: DropdownStyle, provide: function provide() { return { $parentInstance: this }; } }; function _typeof$1(o) { "@babel/helpers - typeof"; return _typeof$1 = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof$1(o); } function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function ownKeys$1(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread$1(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$1(Object(t), !0).forEach(function (r) { _defineProperty$1(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$1(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty$1(obj, key, value) { key = _toPropertyKey$1(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey$1(t) { var i = _toPrimitive$1(t, "string"); return "symbol" == _typeof$1(i) ? i : String(i); } function _toPrimitive$1(t, r) { if ("object" != _typeof$1(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof$1(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } var script = { name: 'Dropdown', "extends": script$1, emits: ['update:modelValue', 'change', 'focus', 'blur', 'before-show', 'before-hide', 'show', 'hide', 'filter'], outsideClickListener: null, scrollHandler: null, resizeListener: null, labelClickListener: null, overlay: null, list: null, virtualScroller: null, searchTimeout: null, searchValue: null, isModelValueChanged: false, focusOnHover: false, data: function data() { return { id: this.$attrs.id, focused: false, focusedOptionIndex: -1, filterValue: null, overlayVisible: false }; }, watch: { '$attrs.id': function $attrsId(newValue) { this.id = newValue || UniqueComponentId(); }, modelValue: function modelValue() { this.isModelValueChanged = true; }, options: function options() { this.autoUpdateModel(); } }, mounted: function mounted() { this.id = this.id || UniqueComponentId(); this.autoUpdateModel(); this.bindLabelClickListener(); }, updated: function updated() { if (this.overlayVisible && this.isModelValueChanged) { this.scrollInView(this.findSelectedOptionIndex()); } this.isModelValueChanged = false; }, beforeUnmount: function beforeUnmount() { this.unbindOutsideClickListener(); this.unbindResizeListener(); this.unbindLabelClickListener(); if (this.scrollHandler) { this.scrollHandler.destroy(); this.scrollHandler = null; } if (this.overlay) { ZIndexUtils.clear(this.overlay); this.overlay = null; } }, methods: { getOptionIndex: function getOptionIndex(index, fn) { return this.virtualScrollerDisabled ? index : fn && fn(index)['index']; }, getOptionLabel: function getOptionLabel(option) { return this.optionLabel ? ObjectUtils.resolveFieldData(option, this.optionLabel) : option; }, getOptionValue: function getOptionValue(option) { return this.optionValue ? ObjectUtils.resolveFieldData(option, this.optionValue) : option; }, getOptionRenderKey: function getOptionRenderKey(option, index) { return (this.dataKey ? ObjectUtils.resolveFieldData(option, this.dataKey) : this.getOptionLabel(option)) + '_' + index; }, getPTItemOptions: function getPTItemOptions(option, itemOptions, index, key) { return this.ptm(key, { context: { selected: this.isSelected(option), focused: this.focusedOptionIndex === this.getOptionIndex(index, itemOptions), disabled: this.isOptionDisabled(option) } }); }, isOptionDisabled: function isOptionDisabled(option) { return this.optionDisabled ? ObjectUtils.resolveFieldData(option, this.optionDisabled) : false; }, isOptionGroup: function isOptionGroup(option) { return this.optionGroupLabel && option.optionGroup && option.group; }, getOptionGroupLabel: function getOptionGroupLabel(optionGroup) { return ObjectUtils.resolveFieldData(optionGroup, this.optionGroupLabel); }, getOptionGroupChildren: function getOptionGroupChildren(optionGroup) { return ObjectUtils.resolveFieldData(optionGroup, this.optionGroupChildren); }, getAriaPosInset: function getAriaPosInset(index) { var _this = this; return (this.optionGroupLabel ? index - this.visibleOptions.slice(0, index).filter(function (option) { return _this.isOptionGroup(option); }).length : index) + 1; }, show: function show(isFocus) { this.$emit('before-show'); this.overlayVisible = true; this.focusedOptionIndex = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : this.autoOptionFocus ? this.findFirstFocusedOptionIndex() : -1; isFocus && DomHandler.focus(this.$refs.focusInput); }, hide: function hide(isFocus) { var _this2 = this; var _hide = function _hide() { _this2.$emit('before-hide'); _this2.overlayVisible = false; _this2.focusedOptionIndex = -1; _this2.searchValue = ''; _this2.resetFilterOnHide && (_this2.filterValue = null); isFocus && DomHandler.focus(_this2.$refs.focusInput); }; setTimeout(function () { _hide(); }, 0); // For ScreenReaders }, onFocus: function onFocus(event) { if (this.disabled) { // For ScreenReaders return; } this.focused = true; this.focusedOptionIndex = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : this.overlayVisible && this.autoOptionFocus ? this.findFirstFocusedOptionIndex() : -1; this.overlayVisible && this.scrollInView(this.focusedOptionIndex); this.$emit('focus', event); }, onBlur: function onBlur(event) { this.focused = false; this.focusedOptionIndex = -1; this.searchValue = ''; this.$emit('blur', event); }, onKeyDown: function onKeyDown(event) { if (this.disabled || DomHandler.isAndroid()) { event.preventDefault(); return; } var metaKey = event.metaKey || event.ctrlKey; switch (event.code) { case 'ArrowDown': this.onArrowDownKey(event); break; case 'ArrowUp': this.onArrowUpKey(event, this.editable); break; case 'ArrowLeft': case 'ArrowRight': this.onArrowLeftKey(event, this.editable); break; case 'Delete': this.onDeleteKey(event); case 'Home': this.onHomeKey(event, this.editable); break; case 'End': this.onEndKey(event, this.editable); break; case 'PageDown': this.onPageDownKey(event); break; case 'PageUp': this.onPageUpKey(event); break; case 'Space': this.onSpaceKey(event, this.editable); break; case 'Enter': case 'NumpadEnter': this.onEnterKey(event); break; case 'Escape': this.onEscapeKey(event); break; case 'Tab': this.onTabKey(event); break; case 'Backspace': this.onBackspaceKey(event, this.editable); break; case 'ShiftLeft': case 'ShiftRight': //NOOP break; default: if (!metaKey && ObjectUtils.isPrintableCharacter(event.key)) { !this.overlayVisible && this.show(); !this.editable && this.searchOptions(event, event.key); } break; } }, onEditableInput: function onEditableInput(event) { var value = event.target.value; this.searchValue = ''; var matched = this.searchOptions(event, value); !matched && (this.focusedOptionIndex = -1); this.updateModel(event, value); !this.overlayVisible && ObjectUtils.isNotEmpty(value) && this.show(); }, onContainerClick: function onContainerClick(event) { if (this.disabled || this.loading) { return; } if (event.target.tagName === 'INPUT' || event.target.getAttribute('data-pc-section') === 'clearicon' || event.target.closest('[data-pc-section="clearicon"]')) { return; } else if (!this.overlay || !this.overlay.contains(event.target)) { this.overlayVisible ? this.hide(true) : this.show(true); } }, onClearClick: function onClearClick(event) { this.updateModel(event, null); }, onFirstHiddenFocus: function onFirstHiddenFocus(event) { var focusableEl = event.relatedTarget === this.$refs.focusInput ? DomHandler.getFirstFocusableElement(this.overlay, ':not([data-p-hidden-focusable="true"])') : this.$refs.focusInput; DomHandler.focus(focusableEl); }, onLastHiddenFocus: function onLastHiddenFocus(event) { var focusableEl = event.relatedTarget === this.$refs.focusInput ? DomHandler.getLastFocusableElement(this.overlay, ':not([data-p-hidden-focusable="true"])') : this.$refs.focusInput; DomHandler.focus(focusableEl); }, onOptionSelect: function onOptionSelect(event, option) { var isHide = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; var value = this.getOptionValue(option); this.updateModel(event, value); isHide && this.hide(true); }, onOptionMouseMove: function onOptionMouseMove(event, index) { if (this.focusOnHover) { this.changeFocusedOptionIndex(event, index); } }, onFilterChange: function onFilterChange(event) { var value = event.target.value; this.filterValue = value; this.focusedOptionIndex = -1; this.$emit('filter', { originalEvent: event, value: value }); !this.virtualScrollerDisabled && this.virtualScroller.scrollToIndex(0); }, onFilterKeyDown: function onFilterKeyDown(event) { switch (event.code) { case 'ArrowDown': this.onArrowDownKey(event); break; case 'ArrowUp': this.onArrowUpKey(event, true); break; case 'ArrowLeft': case 'ArrowRight': this.onArrowLeftKey(event, true); break; case 'Home': this.onHomeKey(event, true); break; case 'End': this.onEndKey(event, true); break; case 'Enter': case 'NumpadEnter': this.onEnterKey(event); break; case 'Escape': this.onEscapeKey(event); break; case 'Tab': this.onTabKey(event, true); break; } }, onFilterBlur: function onFilterBlur() { this.focusedOptionIndex = -1; }, onFilterUpdated: function onFilterUpdated() { if (this.overlayVisible) { this.alignOverlay(); } }, onOverlayClick: function onOverlayClick(event) { OverlayEventBus.emit('overlay-click', { originalEvent: event, target: this.$el }); }, onOverlayKeyDown: function onOverlayKeyDown(event) { switch (event.code) { case 'Escape': this.onEscapeKey(event); break; } }, onDeleteKey: function onDeleteKey(event) { if (this.showClear) { this.updateModel(event, null); event.preventDefault(); } }, onArrowDownKey: function onArrowDownKey(event) { var optionIndex = this.focusedOptionIndex !== -1 ? this.findNextOptionIndex(this.focusedOptionIndex) : this.findFirstFocusedOptionIndex(); this.changeFocusedOptionIndex(event, optionIndex); !this.overlayVisible && this.show(); event.preventDefault(); }, onArrowUpKey: function onArrowUpKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; if (event.altKey && !pressedInInputText) { if (this.focusedOptionIndex !== -1) { this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]); } this.overlayVisible && this.hide(); event.preventDefault(); } else { var optionIndex = this.focusedOptionIndex !== -1 ? this.findPrevOptionIndex(this.focusedOptionIndex) : this.findLastFocusedOptionIndex(); this.changeFocusedOptionIndex(event, optionIndex); !this.overlayVisible && this.show(); event.preventDefault(); } }, onArrowLeftKey: function onArrowLeftKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; pressedInInputText && (this.focusedOptionIndex = -1); }, onHomeKey: function onHomeKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; if (pressedInInputText) { event.currentTarget.setSelectionRange(0, 0); this.focusedOptionIndex = -1; } else { this.changeFocusedOptionIndex(event, this.findFirstOptionIndex()); !this.overlayVisible && this.show(); } event.preventDefault(); }, onEndKey: function onEndKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; if (pressedInInputText) { var target = event.currentTarget; var len = target.value.length; target.setSelectionRange(len, len); this.focusedOptionIndex = -1; } else { this.changeFocusedOptionIndex(event, this.findLastOptionIndex()); !this.overlayVisible && this.show(); } event.preventDefault(); }, onPageUpKey: function onPageUpKey(event) { this.scrollInView(0); event.preventDefault(); }, onPageDownKey: function onPageDownKey(event) { this.scrollInView(this.visibleOptions.length - 1); event.preventDefault(); }, onEnterKey: function onEnterKey(event) { if (!this.overlayVisible) { this.onArrowDownKey(event); } else { if (this.focusedOptionIndex !== -1) { this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]); } this.hide(); } event.preventDefault(); }, onSpaceKey: function onSpaceKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; !pressedInInputText && this.onEnterKey(event); }, onEscapeKey: function onEscapeKey(event) { this.overlayVisible && this.hide(true); event.preventDefault(); }, onTabKey: function onTabKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; if (!pressedInInputText) { if (this.overlayVisible && this.hasFocusableElements()) { DomHandler.focus(this.$refs.firstHiddenFocusableElementOnOverlay); event.preventDefault(); } else { if (this.focusedOptionIndex !== -1) { this.onOptionSelect(event, this.visibleOptions[this.focusedOptionIndex]); } this.overlayVisible && this.hide(this.filter); } } }, onBackspaceKey: function onBackspaceKey(event) { var pressedInInputText = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; if (pressedInInputText) { !this.overlayVisible && this.show(); } }, onOverlayEnter: function onOverlayEnter(el) { ZIndexUtils.set('overlay', el, this.$primevue.config.zIndex.overlay); DomHandler.addStyles(el, { position: 'absolute', top: '0', left: '0' }); this.alignOverlay(); this.scrollInView(); this.autoFilterFocus && DomHandler.focus(this.$refs.filterInput); }, onOverlayAfterEnter: function onOverlayAfterEnter() { this.bindOutsideClickListener(); this.bindScrollListener(); this.bindResizeListener(); this.$emit('show'); }, onOverlayLeave: function onOverlayLeave() { this.unbindOutsideClickListener(); this.unbindScrollListener(); this.unbindResizeListener(); this.$emit('hide'); this.overlay = null; }, onOverlayAfterLeave: function onOverlayAfterLeave(el) { ZIndexUtils.clear(el); }, alignOverlay: function alignOverlay() { if (this.appendTo === 'self') { DomHandler.relativePosition(this.overlay, this.$el); } else { this.overlay.style.minWidth = DomHandler.getOuterWidth(this.$el) + 'px'; DomHandler.absolutePosition(this.overlay, this.$el); } }, bindOutsideClickListener: function bindOutsideClickListener() { var _this3 = this; if (!this.outsideClickListener) { this.outsideClickListener = function (event) { if (_this3.overlayVisible && _this3.overlay && !_this3.$el.contains(event.target) && !_this3.overlay.contains(event.target)) { _this3.hide(); } }; document.addEventListener('click', this.outsideClickListener); } }, unbindOutsideClickListener: function unbindOutsideClickListener() { if (this.outsideClickListener) { document.removeEventListener('click', this.outsideClickListener); this.outsideClickListener = null; } }, bindScrollListener: function bindScrollListener() { var _this4 = this; if (!this.scrollHandler) { this.scrollHandler = new ConnectedOverlayScrollHandler(this.$refs.container, function () { if (_this4.overlayVisible) { _this4.hide(); } }); } this.scrollHandler.bindScrollListener(); }, unbindScrollListener: function unbindScrollListener() { if (this.scrollHandler) { this.scrollHandler.unbindScrollListener(); } }, bindResizeListener: function bindResizeListener() { var _this5 = this; if (!this.resizeListener) { this.resizeListener = function () { if (_this5.overlayVisible && !DomHandler.isTouchDevice()) { _this5.hide(); } }; window.addEventListener('resize', this.resizeListener); } }, unbindResizeListener: function unbindResizeListener() { if (this.resizeListener) { window.removeEventListener('resize', this.resizeListener); this.resizeListener = null; } }, bindLabelClickListener: function bindLabelClickListener() { var _this6 = this; if (!this.editable && !this.labelClickListener) { var label = document.querySelector("label[for=\"".concat(this.inputId, "\"]")); if (label && DomHandler.isVisible(label)) { this.labelClickListener = function () { DomHandler.focus(_this6.$refs.focusInput); }; label.addEventListener('click', this.labelClickListener); } } }, unbindLabelClickListener: function unbindLabelClickListener() { if (this.labelClickListener) { var label = document.querySelector("label[for=\"".concat(this.inputId, "\"]")); if (label && DomHandler.isVisible(label)) { label.removeEventListener('click', this.labelClickListener); } } }, hasFocusableElements: function hasFocusableElements() { return DomHandler.getFocusableElements(this.overlay, ':not([data-p-hidden-focusable="true"])').length > 0; }, isOptionMatched: function isOptionMatched(option) { return this.isValidOption(option) && this.getOptionLabel(option).toLocaleLowerCase(this.filterLocale).startsWith(this.searchValue.toLocaleLowerCase(this.filterLocale)); }, isValidOption: function isValidOption(option) { return ObjectUtils.isNotEmpty(option) && !(this.isOptionDisabled(option) || this.isOptionGroup(option)); }, isValidSelectedOption: function isValidSelectedOption(option) { return this.isValidOption(option) && this.isSelected(option); }, isSelected: function isSelected(option) { return this.isValidOption(option) && ObjectUtils.equals(this.modelValue, this.getOptionValue(option), this.equalityKey); }, findFirstOptionIndex: function findFirstOptionIndex() { var _this7 = this; return this.visibleOptions.findIndex(function (option) { return _this7.isValidOption(option); }); }, findLastOptionIndex: function findLastOptionIndex() { var _this8 = this; return ObjectUtils.findLastIndex(this.visibleOptions, function (option) { return _this8.isValidOption(option); }); }, findNextOptionIndex: function findNextOptionIndex(index) { var _this9 = this; var matchedOptionIndex = index < this.visibleOptions.length - 1 ? this.visibleOptions.slice(index + 1).findIndex(function (option) { return _this9.isValidOption(option); }) : -1; return matchedOptionIndex > -1 ? matchedOptionIndex + index + 1 : index; }, findPrevOptionIndex: function findPrevOptionIndex(index) { var _this10 = this; var matchedOptionIndex = index > 0 ? ObjectUtils.findLastIndex(this.visibleOptions.slice(0, index), function (option) { return _this10.isValidOption(option); }) : -1; return matchedOptionIndex > -1 ? matchedOptionIndex : index; }, findSelectedOptionIndex: function findSelectedOptionIndex() { var _this11 = this; return this.hasSelectedOption ? this.visibleOptions.findIndex(function (option) { return _this11.isValidSelectedOption(option); }) : -1; }, findFirstFocusedOptionIndex: function findFirstFocusedOptionIndex() { var selectedIndex = this.findSelectedOptionIndex(); return selectedIndex < 0 ? this.findFirstOptionIndex() : selectedIndex; }, findLastFocusedOptionIndex: function findLastFocusedOptionIndex() { var selectedIndex = this.findSelectedOptionIndex(); return selectedIndex < 0 ? this.findLastOptionIndex() : selectedIndex; }, searchOptions: function searchOptions(event, _char) { var _this12 = this; this.searchValue = (this.searchValue || '') + _char; var optionIndex = -1; var matched = false; if (this.focusedOptionIndex !== -1) { optionIndex = this.visibleOptions.slice(this.focusedOptionIndex).findIndex(function (option) { return _this12.isOptionMatched(option); }); optionIndex = optionIndex === -1 ? this.visibleOptions.slice(0, this.focusedOptionIndex).findIndex(function (option) { return _this12.isOptionMatched(option); }) : optionIndex + this.focusedOptionIndex; } else { optionIndex = this.visibleOptions.findIndex(function (option) { return _this12.isOptionMatched(option); }); } if (optionIndex !== -1) { matched = true; } if (optionIndex === -1 && this.focusedOptionIndex === -1) { optionIndex = this.findFirstFocusedOptionIndex(); } if (optionIndex !== -1) { this.changeFocusedOptionIndex(event, optionIndex); } if (this.searchTimeout) { clearTimeout(this.searchTimeout); } this.searchTimeout = setTimeout(function () { _this12.searchValue = ''; _this12.searchTimeout = null; }, 500); return matched; }, changeFocusedOptionIndex: function changeFocusedOptionIndex(event, index) { if (this.focusedOptionIndex !== index) { this.focusedOptionIndex = index; this.scrollInView(); if (this.selectOnFocus) { this.onOptionSelect(event, this.visibleOptions[index], false); } } }, scrollInView: function scrollInView() { var _this13 = this; var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : -1; var id = index !== -1 ? "".concat(this.id, "_").concat(index) : this.focusedOptionId; var element = DomHandler.findSingle(this.list, "li[id=\"".concat(id, "\"]")); if (element) { element.scrollIntoView && element.scrollIntoView({ block: 'nearest', inline: 'start' }); } else if (!this.virtualScrollerDisabled) { setTimeout(function () { _this13.virtualScroller && _this13.virtualScroller.scrollToIndex(index !== -1 ? index : _this13.focusedOptionIndex); }, 0); } }, autoUpdateModel: function autoUpdateModel() { if (this.selectOnFocus && this.autoOptionFocus && !this.hasSelectedOption) { this.focusedOptionIndex = this.findFirstFocusedOptionIndex(); this.onOptionSelect(null, this.visibleOptions[this.focusedOptionIndex], false); } }, updateModel: function updateModel(event, value) { this.$emit('update:modelValue', value); this.$emit('change', { originalEvent: event, value: value }); }, flatOptions: function flatOptions(options) { var _this14 = this; return (options || []).reduce(function (result, option, index) { result.push({ optionGroup: option, group: true, index: index }); var optionGroupChildren = _this14.getOptionGroupChildren(option); optionGroupChildren && optionGroupChildren.forEach(function (o) { return result.push(o); }); return result; }, []); }, overlayRef: function overlayRef(el) { this.overlay = el; }, listRef: function listRef(el, contentRef) { this.list = el; contentRef && contentRef(el); // For VirtualScroller }, virtualScrollerRef: function virtualScrollerRef(el) { this.virtualScroller = el; } }, computed: { visibleOptions: function visibleOptions() { var _this15 = this; var options = this.optionGroupLabel ? this.flatOptions(this.options) : this.options || []; if (this.filterValue) { var filteredOptions = FilterService.filter(options, this.searchFields, this.filterValue, this.filterMatchMode, this.filterLocale); if (this.optionGroupLabel) { var optionGroups = this.options || []; var filtered = []; optionGroups.forEach(function (group) { var groupChildren = _this15.getOptionGroupChildren(group); var filteredItems = groupChildren.filter(function (item) { return filteredOptions.includes(item); }); if (filteredItems.length > 0) filtered.push(_objectSpread$1(_objectSpread$1({}, group), {}, _defineProperty$1({}, typeof _this15.optionGroupChildren === 'string' ? _this15.optionGroupChildren : 'items', _toConsumableArray(filteredItems)))); }); return this.flatOptions(filtered); } return filteredOptions; } return options; }, hasSelectedOption: function hasSelectedOption() { return ObjectUtils.isNotEmpty(this.modelValue); }, label: function label() { var selectedOptionIndex = this.findSelectedOptionIndex(); return selectedOptionIndex !== -1 ? this.getOptionLabel(this.visibleOptions[selectedOptionIndex]) : this.placeholder || 'p-emptylabel'; }, editableInputValue: function editableInputValue() { var selectedOptionIndex = this.findSelectedOptionIndex(); return selectedOptionIndex !== -1 ? this.getOptionLabel(this.visibleOptions[selectedOptionIndex]) : this.modelValue || ''; }, equalityKey: function equalityKey() { return this.optionValue ? null : this.dataKey; }, searchFields: function searchFields() { return this.filterFields || [this.optionLabel]; }, filterResultMessageText: function filterResultMessageText() { return ObjectUtils.isNotEmpty(this.visibleOptions) ? this.filterMessageText.replaceAll('{0}', this.visibleOptions.length) : this.emptyFilterMessageText; }, filterMessageText: function filterMessageText() { return this.filterMessage || this.$primevue.config.locale.searchMessage || ''; }, emptyFilterMessageText: function emptyFilterMessageText() { return this.emptyFilterMessage || this.$primevue.config.locale.emptySearchMessage || this.$primevue.config.locale.emptyFilterMessage || ''; }, emptyMessageText: function emptyMessageText() { return this.emptyMessage || this.$primevue.config.locale.emptyMessage || ''; }, selectionMessageText: function selectionMessageText() { return this.selectionMessage || this.$primevue.config.locale.selectionMessage || ''; }, emptySelectionMessageText: function emptySelectionMessageText() { return this.emptySelectionMessage || this.$primevue.config.locale.emptySelectionMessage || ''; }, selectedMessageText: function selectedMessageText() { return this.hasSelectedOption ? this.selectionMessageText.replaceAll('{0}', '1') : this.emptySelectionMessageText; }, focusedOptionId: function focusedOptionId() { return this.focusedOptionIndex !== -1 ? "".concat(this.id, "_").concat(this.focusedOptionIndex) : null; }, ariaSetSize: function ariaSetSize() { var _this16 = this; return this.visibleOptions.filter(function (option) { return !_this16.isOptionGroup(option); }).length; }, virtualScrollerDisabled: function virtualScrollerDisabled() { return !this.virtualScrollerOptions; } }, directives: { ripple: Ripple }, components: { VirtualScroller: VirtualScroller, Portal: Portal, TimesIcon: TimesIcon, ChevronDownIcon: ChevronDownIcon, SpinnerIcon: SpinnerIcon, FilterIcon: FilterIcon } }; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } var _hoisted_1 = ["id"]; var _hoisted_2 = ["id", "value", "placeholder", "tabindex", "disabled", "aria-label", "aria-labelledby", "aria-expanded", "aria-controls", "aria-activedescendant"]; var _hoisted_3 = ["id", "tabindex", "aria-label", "aria-labelledby", "aria-expanded", "aria-controls", "aria-activedescendant", "aria-disabled"]; var _hoisted_4 = ["value", "placeholder", "aria-owns", "aria-activedescendant"]; var _hoisted_5 = ["id"]; var _hoisted_6 = ["id"]; var _hoisted_7 = ["id", "aria-label", "aria-selected", "aria-disabled", "aria-setsize", "aria-posinset", "onClick", "onMousemove", "data-p-highlight", "data-p-focused", "data-p-disabled"]; function render(_ctx, _cache, $props, $setup, $data, $options) { var _component_SpinnerIcon = resolveComponent("SpinnerIcon"); var _component_VirtualScroller = resolveComponent("VirtualScroller"); var _component_Portal = resolveComponent("Portal"); var _directive_ripple = resolveDirective("ripple"); return openBlock(), createElementBlock("div", mergeProps({ ref: "container", id: $data.id, "class": _ctx.cx('root'), onClick: _cache[15] || (_cache[15] = function () { return $options.onContainerClick && $options.onContainerClick.apply($options, arguments); }) }, _ctx.ptm('root'), { "data-pc-name": "dropdown" }), [_ctx.editable ? (openBlock(), createElementBlock("input", mergeProps({ key: 0, ref: "focusInput", id: _ctx.inputId, type: "text", "class": [_ctx.cx('input'), _ctx.inputClass], style: _ctx.inputStyle, value: $options.editableInputValue, placeholder: _ctx.placeholder, tabindex: !_ctx.disabled ? _ctx.tabindex : -1, disabled: _ctx.disabled, autocomplete: "off", role: "combobox", "aria-label": _ctx.ariaLabel, "aria-labelledby": _ctx.ariaLabelledby, "aria-haspopup": "listbox", "aria-expanded": $data.overlayVisible, "aria-controls": $data.id + '_list', "aria-activedescendant": $data.focused ? $options.focusedOptionId : undefined, onFocus: _cache[0] || (_cache[0] = function () { return $options.onFocus && $options.onFocus.apply($options, arguments); }), onBlur: _cache[1] || (_cache[1] = function () { return $options.onBlur && $options.onBlur.apply($options, arguments); }), onKeydown: _cache[2] || (_cache[2] = function () { return $options.onKeyDown && $options.onKeyDown.apply($options, arguments); }), onInput: _cache[3] || (_cache[3] = function () { return $options.onEditableInput && $options.onEditableInput.apply($options, arguments); }) }, _objectSpread(_objectSpread({}, _ctx.inputProps), _ctx.ptm('input'))), null, 16, _hoisted_2)) : (openBlock(), createElementBlock("span", mergeProps({ key: 1, ref: "focusInput", id: _ctx.inputId, "class": [_ctx.cx('input'), _ctx.inputClass], style: _ctx.inputStyle, tabindex: !_ctx.disabled ? _ctx.tabindex : -1, role: "combobox", "aria-label": _ctx.ariaLabel || ($options.label === 'p-emptylabel' ? undefined : $options.label), "aria-labelledby": _ctx.ariaLabelledby, "aria-haspopup": "listbox", "aria-expanded": $data.overlayVisible, "aria-controls": $data.id + '_list', "aria-activedescendant": $data.focused ? $options.focusedOptionId : undefined, "aria-disabled": _ctx.disabled, onFocus: _cache[4] || (_cache[4] = function () { return $options.onFocus && $options.onFocus.apply($options, arguments); }), onBlur: _cache[5] || (_cache[5] = function () { return $options.onBlur && $options.onBlur.apply($options, arguments); }), onKeydown: _cache[6] || (_cache[6] = function () { return $options.onKeyDown && $options.onKeyDown.apply($options, arguments); }) }, _objectSpread(_objectSpread({}, _ctx.inputProps), _ctx.ptm('input'))), [renderSlot(_ctx.$slots, "value", { value: _ctx.modelValue, placeholder: _ctx.placeholder }, function () { return [createTextVNode(toDisplayString($options.label === 'p-emptylabel' ? ' ' : $options.label || 'empty'), 1)]; })], 16, _hoisted_3)), _ctx.showClear && _ctx.modelValue != null ? renderSlot(_ctx.$slots, "clearicon", { key: 2, "class": normalizeClass(_ctx.cx('clearIcon')), onClick: $options.onClearClick, clearCallback: $options.onClearClick }, function () { return [(openBlock(), createBlock(resolveDynamicComponent(_ctx.clearIcon ? 'i' : 'TimesIcon'), mergeProps({ ref: "clearIcon", "class": [_ctx.cx('clearIcon'), _ctx.clearIcon], onClick: $options.onClearClick }, _objectSpread(_objectSpread({}, _ctx.clearIconProps), _ctx.ptm('clearIcon')), { "data-pc-section": "clearicon" }), null, 16, ["class", "onClick"]))]; }) : createCommentVNode("", true), createElementVNode("div", mergeProps({ "class": _ctx.cx('trigger') }, _ctx.ptm('trigger')), [_ctx.loading ? renderSlot(_ctx.$slots, "loadingicon", { key: 0, "class": normalizeClass(_ctx.cx('loadingIcon')) }, function () { return [_ctx.loadingIcon ? (openBlock(), createElementBlock("span", mergeProps({ key: 0, "class": [_ctx.cx('loadingIcon'), 'pi-spin', _ctx.loadingIcon], "aria-hidden": "true" }, _ctx.ptm('loadingIcon')), null, 16)) : (openBlock(), createBlock(_component_SpinnerIcon, mergeProps({ key: 1, "class": _ctx.cx('loadingIcon'), spin: "", "aria-hidden": "true" }, _ctx.ptm('loadingIcon')), null, 16, ["class"]))]; }) : renderSlot(_ctx.$slots, "dropdownicon", { key: 1, "class": normalizeClass(_ctx.cx('dropdownIcon')) }, function () { return [(openBlock(), createBlock(resolveDynamicComponent(_ctx.dropdownIcon ? 'span' : 'ChevronDownIcon'), mergeProps({ "class": [_ctx.cx('dropdownIcon'), _ctx.dropdownIcon], "aria-hidden": "true" }, _ctx.ptm('dropdownIcon')), null, 16, ["class"]))]; })], 16), createVNode(_component_Portal, { appendTo: _ctx.appendTo }, { "default": withCtx(function () { return [createVNode(Transition, mergeProps({ name: "p-connected-overlay", onEnter: $options.onOverlayEnter, onAfterEnter: $options.onOverlayAfterEnter, onLeave: $options.onOverlayLeave, onAfterLeave: $options.onOverlayAfterLeave }, _ctx.ptm('transition')), { "default": withCtx(function () { return [$data.overlayVisible ? (openBlock(), createElementBlock("div", mergeProps({ key: 0, ref: $options.overlayRef, "class": [_ctx.cx('panel'), _ctx.panelClass], style: _ctx.panelStyle, onClick: _cache[13] || (_cache[13] = function () { return $options.onOverlayClick && $options.onOverlayClick.apply($options, arguments); }), onKeydown: _cache[14] || (_cache[14] = function () { return $options.onOverlayKeyDown && $options.onOverlayKeyDown.apply($options, arguments); }) }, _objectSpread(_objectSpread({}, _ctx.panelProps), _ctx.ptm('panel'))), [createElementVNode("span", mergeProps({ ref: "firstHiddenFocusableElementOnOverlay", role: "presentation", "aria-hidden": "true", "class": "p-hidden-accessible p-hidden-focusable", tabindex: 0, onFocus: _cache[7] || (_cache[7] = function () { return $options.onFirstHiddenFocus && $options.onFirstHiddenFocus.apply($options, arguments); }) }, _ctx.ptm('hiddenFirstFocusableEl'), { "data-p-hidden-accessible": true, "data-p-hidden-focusable": true }), null, 16), renderSlot(_ctx.$slots, "header", { value: _ctx.modelValue, options: $options.visibleOptions }), _ctx.filter ? (openBlock(), createElementBlock("div", mergeProps({ key: 0, "class": _ctx.cx('header') }, _ctx.ptm('header')), [createElementVNode("div", mergeProps({ "class": _ctx.cx('filterContainer') }, _ctx.ptm('filterContainer')), [createElementVNode("input", mergeProps({ ref: "filterInput", type: "text", value: $data.filterValue, onVnodeMounted: _cache[8] || (_cache[8] = function () { return $options.onFilterUpdated && $options.onFilterUpdated.apply($options, arguments); }), "class": _ctx.cx('filterInput'), placeholder: _ctx.filterPlaceholder, role: "searchbox", autocomplete: "off", "aria-owns": $data.id + '_list', "aria-activedescendant": $options.focusedOptionId, onKeydown: _cache[9] || (_cache[9] = function () { return $options.onFilterKeyDown && $options.onFilterKeyDown.apply($options, arguments); }), onBlur: _cache[10] || (_cache[10] = function () { return $options.onFilterBlur && $options.onFilterBlur.apply($options, arguments); }), onInput: _cache[11] || (_cache[11] = function () { return $options.onFilterChange && $options.onFilterChange.apply($options, arguments); }) }, _objectSpread(_objectSpread({}, _ctx.filterInputProps), _ctx.ptm('filterInput'))), null, 16, _hoisted_4), renderSlot(_ctx.$slots, "filtericon", { "class": normalizeClass(_ctx.cx('filterIcon')) }, function () { return [(openBlock(), createBlock(resolveDynamicComponent(_ctx.filterIcon ? 'span' : 'FilterIcon'), mergeProps({ "class": [_ctx.cx('filterIcon'), _ctx.filterIcon] }, _ctx.ptm('filterIcon')), null, 16, ["class"]))]; })], 16), createElementVNode("span", mergeProps({ role: "status", "aria-live": "polite", "class": "p-hidden-accessible" }, _ctx.ptm('hiddenFilterResult'), { "data-p-hidden-accessible": true }), toDisplayString($options.filterResultMessageText), 17)], 16)) : createCommentVNode("", true), createElementVNode("div", mergeProps({ "class": _ctx.cx('wrapper'), style: { 'max-height': $options.virtualScrollerDisabled ? _ctx.scrollHeight : '' } }, _ctx.ptm('wrapper')), [createVNode(_component_VirtualScroller, mergeProps({ ref: $options.virtualScrollerRef }, _ctx.virtualScrollerOptions, { items: $options.visibleOptions, style: { height: _ctx.scrollHeight }, tabindex: -1, disabled: $options.virtualScrollerDisabled, pt: _ctx.ptm('virtualScroller') }), createSlots({ content: withCtx(function (_ref) { var styleClass = _ref.styleClass, contentRef = _ref.contentRef, items = _ref.items, getItemOptions = _ref.getItemOptions, contentStyle = _ref.contentStyle, itemSize = _ref.itemSize; return [createElementVNode("ul", mergeProps({ ref: function ref(el) { return $options.listRef(el, contentRef); }, id: $data.id + '_list', "class": [_ctx.cx('list'), styleClass], style: contentStyle, role: "listbox" }, _ctx.ptm('list')), [(openBlock(true), createElementBlock(Fragment, null, renderList(items, function (option, i) { return openBlock(), createElementBlock(Fragment, { key: $options.getOptionRenderKey(option, $options.getOptionIndex(i, getItemOptions)) }, [$options.isOptionGroup(option) ? (openBlock(), createElementBlock("li", mergeProps({ key: 0, id: $data.id + '_' + $options.getOptionIndex(i, getItemOptions), style: { height: itemSize ? itemSize + 'px' : undefined }, "class": _ctx.cx('itemGroup'), role: "option" }, _ctx.ptm('itemGroup')), [renderSlot(_ctx.$slots, "optiongroup", { option: option.optionGroup, index: $options.getOptionIndex(i, getItemOptions) }, function () { return [createTextVNode(toDisplayString($options.getOptionGroupLabel(option.optionGroup)), 1)]; })], 16, _hoisted_6)) : withDirectives((openBlock(), createElementBlock("li", mergeProps({ key: 1, id: $data.id + '_' + $options.getOptionIndex(i, getItemOptions), "class": _ctx.cx('item', { option: option, focusedOption: $options.getOptionIndex(i, getItemOptions) }), style: {