UNPKG

vuetify

Version:

Vue Material Component Framework

386 lines (384 loc) 14 kB
import { createTextVNode as _createTextVNode, mergeProps as _mergeProps, createVNode as _createVNode, Fragment as _Fragment } from "vue"; // Styles import "./VCombobox.css"; // Components import { makeSelectProps } from "../VSelect/VSelect.mjs"; import { VCheckboxBtn } from "../VCheckbox/index.mjs"; import { VChip } from "../VChip/index.mjs"; import { VDefaultsProvider } from "../VDefaultsProvider/index.mjs"; import { VList, VListItem } from "../VList/index.mjs"; import { VMenu } from "../VMenu/index.mjs"; import { VTextField } from "../VTextField/index.mjs"; // Composables import { forwardRefs } from "../../composables/forwardRefs.mjs"; import { makeFilterProps, useFilter } from "../../composables/filter.mjs"; import { makeTransitionProps } from "../../composables/transition.mjs"; import { transformItem, useItems } from "../../composables/items.mjs"; import { useForm } from "../../composables/form.mjs"; import { useLocale } from "../../composables/locale.mjs"; import { useProxiedModel } from "../../composables/proxiedModel.mjs"; import { useTextColor } from "../../composables/color.mjs"; // Utility import { computed, mergeProps, nextTick, ref, watch } from 'vue'; import { genericComponent, omit, useRender, wrapInArray } from "../../util/index.mjs"; import { filterVTextFieldProps, makeVTextFieldProps } from "../VTextField/VTextField.mjs"; // Types function highlightResult(text, matches, length) { if (matches == null) return text; if (Array.isArray(matches)) throw new Error('Multiple matches is not implemented'); return typeof matches === 'number' && ~matches ? _createVNode(_Fragment, null, [_createVNode("span", { "class": "v-combobox__unmask" }, [text.substr(0, matches)]), _createVNode("span", { "class": "v-combobox__mask" }, [text.substr(matches, length)]), _createVNode("span", { "class": "v-combobox__unmask" }, [text.substr(matches + length)])]) : text; } export const VCombobox = genericComponent()({ name: 'VCombobox', props: { // TODO: implement post keyboard support // autoSelectFirst: Boolean, delimiters: Array, ...makeFilterProps({ filterKeys: ['title'] }), ...makeSelectProps({ hideNoData: true, returnObject: true }), ...omit(makeVTextFieldProps({ modelValue: null }), ['validationValue', 'dirty', 'appendInnerIcon']), ...makeTransitionProps({ transition: false }) }, emits: { 'update:modelValue': val => true, 'update:search': val => true, 'update:menu': val => true }, setup(props, _ref) { let { emit, slots } = _ref; const { t } = useLocale(); const vTextFieldRef = ref(); const isFocused = ref(false); const isPristine = ref(true); const vMenuRef = ref(); const _menu = useProxiedModel(props, 'menu'); const menu = computed({ get: () => _menu.value, set: v => { if (_menu.value && !v && vMenuRef.value?.ΨopenChildren) return; _menu.value = v; } }); const selectionIndex = ref(-1); const color = computed(() => vTextFieldRef.value?.color); const { items, transformIn, transformOut } = useItems(props); const { textColorClasses, textColorStyles } = useTextColor(color); const model = useProxiedModel(props, 'modelValue', [], v => transformIn(wrapInArray(v || [])), v => { const transformed = transformOut(v); return props.multiple ? transformed : transformed[0] ?? null; }); const form = useForm(); const _search = ref(!props.multiple ? model.value[0]?.title ?? '' : ''); const search = computed({ get: () => { return _search.value; }, set: val => { _search.value = val; if (!props.multiple) { model.value = [transformItem(props, val)]; } if (val && props.multiple && props.delimiters?.length) { const values = val.split(new RegExp(`(?:${props.delimiters.join('|')})+`)); if (values.length > 1) { values.forEach(v => { v = v.trim(); if (v) select(transformItem(props, v)); }); _search.value = ''; } } if (!val) selectionIndex.value = -1; if (isFocused.value) menu.value = true; isPristine.value = !val; } }); watch(_search, value => { emit('update:search', value); }); watch(model, value => { if (!props.multiple) { _search.value = value[0]?.title ?? ''; } }); const { filteredItems, getMatches } = useFilter(props, items, computed(() => isPristine.value ? undefined : search.value)); const selections = computed(() => { return model.value.map(v => { return items.value.find(item => props.valueComparator(item.value, v.value)) || v; }); }); const displayItems = computed(() => { if (props.hideSelected) { return filteredItems.value.filter(filteredItem => !selections.value.some(s => s.value === filteredItem.value)); } return filteredItems.value; }); const selected = computed(() => selections.value.map(selection => selection.props.value)); const selection = computed(() => selections.value[selectionIndex.value]); const listRef = ref(); function onClear(e) { if (props.openOnClear) { menu.value = true; } } function onMousedownControl() { if (props.hideNoData && !items.value.length || props.readonly || form?.isReadonly.value) return; menu.value = true; } function onKeydown(e) { if (props.readonly || form?.isReadonly.value) return; const selectionStart = vTextFieldRef.value.selectionStart; const length = selected.value.length; if (selectionIndex.value > -1 || ['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) { e.preventDefault(); } if (['Enter', 'ArrowDown'].includes(e.key)) { menu.value = true; } if (['Escape'].includes(e.key)) { menu.value = false; } if (['Enter', 'Escape', 'Tab'].includes(e.key)) { isPristine.value = true; } if (e.key === 'ArrowDown') { listRef.value?.focus('next'); } else if (e.key === 'ArrowUp') { listRef.value?.focus('prev'); } if (!props.multiple) return; if (['Backspace', 'Delete'].includes(e.key)) { if (selectionIndex.value < 0) { if (e.key === 'Backspace' && !search.value) { selectionIndex.value = length - 1; } return; } select(selection.value); nextTick(() => !selection.value && (selectionIndex.value = length - 2)); } if (e.key === 'ArrowLeft') { if (selectionIndex.value < 0 && selectionStart > 0) return; const prev = selectionIndex.value > -1 ? selectionIndex.value - 1 : length - 1; if (selections.value[prev]) { selectionIndex.value = prev; } else { selectionIndex.value = -1; vTextFieldRef.value.setSelectionRange(search.value.length, search.value.length); } } if (e.key === 'ArrowRight') { if (selectionIndex.value < 0) return; const next = selectionIndex.value + 1; if (selections.value[next]) { selectionIndex.value = next; } else { selectionIndex.value = -1; vTextFieldRef.value.setSelectionRange(0, 0); } } if (e.key === 'Enter' && search.value) { select(transformItem(props, search.value)); search.value = ''; } } function onAfterLeave() { if (isFocused.value) isPristine.value = true; } function select(item) { if (props.multiple) { const index = selected.value.findIndex(selection => props.valueComparator(selection, item.value)); if (index === -1) { model.value = [...model.value, item]; } else { const value = [...model.value]; value.splice(index, 1); model.value = value; } search.value = ''; } else { model.value = [item]; _search.value = item.title; // watch for search watcher to trigger nextTick(() => { menu.value = false; isPristine.value = true; }); } } function onFocusin(e) { isFocused.value = true; } function onFocusout(e) { if (e.relatedTarget == null) { vTextFieldRef.value?.focus(); } } watch(filteredItems, val => { if (!val.length && props.hideNoData) menu.value = false; }); watch(isFocused, val => { if (val) { selectionIndex.value = -1; } else { menu.value = false; if (!props.multiple || !search.value) return; model.value = [...model.value, transformItem(props, search.value)]; search.value = ''; } }); useRender(() => { const hasChips = !!(props.chips || slots.chip); const hasList = !!(!props.hideNoData || displayItems.value.length || slots.prepend || slots.append || slots['no-data']); const [textFieldProps] = filterVTextFieldProps(props); return _createVNode(VTextField, _mergeProps({ "ref": vTextFieldRef }, textFieldProps, { "modelValue": search.value, "onUpdate:modelValue": [$event => search.value = $event, v => { if (v == null) model.value = []; }], "validationValue": model.externalValue, "dirty": model.value.length > 0, "class": ['v-combobox', { 'v-combobox--active-menu': menu.value, 'v-combobox--chips': !!props.chips, 'v-combobox--selecting-index': selectionIndex.value > -1, [`v-combobox--${props.multiple ? 'multiple' : 'single'}`]: true }], "appendInnerIcon": props.items.length ? props.menuIcon : undefined, "readonly": props.readonly, "onClick:clear": onClear, "onMousedown:control": onMousedownControl, "onFocus": () => isFocused.value = true, "onBlur": () => isFocused.value = false, "onKeydown": onKeydown }), { ...slots, default: () => _createVNode(_Fragment, null, [_createVNode(VMenu, _mergeProps({ "ref": vMenuRef, "modelValue": menu.value, "onUpdate:modelValue": $event => menu.value = $event, "activator": "parent", "contentClass": "v-combobox__content", "eager": props.eager, "maxHeight": 310, "openOnClick": false, "closeOnContentClick": false, "transition": props.transition, "onAfterLeave": onAfterLeave }, props.menuProps), { default: () => [hasList && _createVNode(VList, { "ref": listRef, "selected": selected.value, "selectStrategy": props.multiple ? 'independent' : 'single-independent', "onMousedown": e => e.preventDefault(), "onFocusin": onFocusin, "onFocusout": onFocusout }, { default: () => [!displayItems.value.length && !props.hideNoData && (slots['no-data']?.() ?? _createVNode(VListItem, { "title": t(props.noDataText) }, null)), slots['prepend-item']?.(), displayItems.value.map((item, index) => slots.item?.({ item, index, props: mergeProps(item.props, { onClick: () => select(item) }) }) ?? _createVNode(VListItem, _mergeProps({ "key": index }, item.props, { "onClick": () => select(item) }), { prepend: _ref2 => { let { isSelected } = _ref2; return props.multiple && !props.hideSelected ? _createVNode(VCheckboxBtn, { "modelValue": isSelected, "ripple": false }, null) : undefined; }, title: () => { return isPristine.value ? item.title : highlightResult(item.title, getMatches(item)?.title, search.value?.length ?? 0); } })), slots['append-item']?.()] })] }), selections.value.map((item, index) => { function onChipClose(e) { e.stopPropagation(); e.preventDefault(); select(item); } const slotProps = { 'onClick:close': onChipClose, modelValue: true, 'onUpdate:modelValue': undefined }; return _createVNode("div", { "key": item.value, "class": ['v-combobox__selection', index === selectionIndex.value && ['v-combobox__selection--selected', textColorClasses.value]], "style": index === selectionIndex.value ? textColorStyles.value : {} }, [hasChips ? _createVNode(VDefaultsProvider, { "defaults": { VChip: { closable: props.closableChips, size: 'small', text: item.title } } }, { default: () => [slots.chip ? slots.chip({ item, index, props: slotProps }) : _createVNode(VChip, slotProps, null)] }) : slots.selection ? slots.selection({ item, index }) : _createVNode("span", { "class": "v-combobox__selection-text" }, [item.title, props.multiple && index < selections.value.length - 1 && _createVNode("span", { "class": "v-combobox__selection-comma" }, [_createTextVNode(",")])])]); })]) }); }); return forwardRefs({ isFocused, isPristine, menu, search, selectionIndex, filteredItems, select }, vTextFieldRef); } }); //# sourceMappingURL=VCombobox.mjs.map