mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
563 lines
22 KiB
Vue
563 lines
22 KiB
Vue
<script lang="ts">
|
|
import type { InputHTMLAttributes } from 'vue'
|
|
import type { ComboboxRootProps, ComboboxRootEmits, ComboboxContentProps, ComboboxContentEmits, ComboboxArrowProps } from 'reka-ui'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import theme from '#build/ui/input-menu'
|
|
import type { UseComponentIconsProps } from '../composables/useComponentIcons'
|
|
import type { AvatarProps, ChipProps, InputProps } from '../types'
|
|
import type { AcceptableValue, ArrayOrNested, GetItemKeys, GetModelValue, GetModelValueEmits, NestedItem, EmitsToProps, ComponentConfig } from '../types/utils'
|
|
|
|
type InputMenu = ComponentConfig<typeof theme, AppConfig, 'inputMenu'>
|
|
|
|
interface _InputMenuItem {
|
|
label?: string
|
|
/**
|
|
* @IconifyIcon
|
|
*/
|
|
icon?: string
|
|
avatar?: AvatarProps
|
|
chip?: ChipProps
|
|
/**
|
|
* The item type.
|
|
* @defaultValue 'item'
|
|
*/
|
|
type?: 'label' | 'separator' | 'item'
|
|
disabled?: boolean
|
|
onSelect?(e?: Event): void
|
|
class?: any
|
|
ui?: Pick<InputMenu['slots'], 'tagsItem' | 'tagsItemText' | 'tagsItemDelete' | 'tagsItemDeleteIcon' | 'label' | 'separator' | 'item' | 'itemLeadingIcon' | 'itemLeadingAvatarSize' | 'itemLeadingAvatar' | 'itemLeadingChip' | 'itemLeadingChipSize' | 'itemLabel' | 'itemTrailing' | 'itemTrailingIcon'>
|
|
[key: string]: any
|
|
}
|
|
export type InputMenuItem = _InputMenuItem | AcceptableValue | boolean
|
|
|
|
export interface InputMenuProps<T extends ArrayOrNested<InputMenuItem> = ArrayOrNested<InputMenuItem>, VK extends GetItemKeys<T> | undefined = undefined, M extends boolean = false> extends Pick<ComboboxRootProps<T>, 'open' | 'defaultOpen' | 'disabled' | 'name' | 'resetSearchTermOnBlur' | 'resetSearchTermOnSelect' | 'highlightOnHover'>, UseComponentIconsProps {
|
|
/**
|
|
* The element or component this component should render as.
|
|
* @defaultValue 'div'
|
|
*/
|
|
as?: any
|
|
id?: string
|
|
type?: InputHTMLAttributes['type']
|
|
/** The placeholder text when the input is empty. */
|
|
placeholder?: string
|
|
/**
|
|
* @defaultValue 'primary'
|
|
*/
|
|
color?: InputMenu['variants']['color']
|
|
/**
|
|
* @defaultValue 'outline'
|
|
*/
|
|
variant?: InputMenu['variants']['variant']
|
|
/**
|
|
* @defaultValue 'md'
|
|
*/
|
|
size?: InputMenu['variants']['size']
|
|
required?: boolean
|
|
autofocus?: boolean
|
|
autofocusDelay?: number
|
|
/**
|
|
* The icon displayed to open the menu.
|
|
* @defaultValue appConfig.ui.icons.chevronDown
|
|
* @IconifyIcon
|
|
*/
|
|
trailingIcon?: string
|
|
/**
|
|
* The icon displayed when an item is selected.
|
|
* @defaultValue appConfig.ui.icons.check
|
|
* @IconifyIcon
|
|
*/
|
|
selectedIcon?: string
|
|
/**
|
|
* The icon displayed to delete a tag.
|
|
* Works only when `multiple` is `true`.
|
|
* @defaultValue appConfig.ui.icons.close
|
|
* @IconifyIcon
|
|
*/
|
|
deleteIcon?: string
|
|
/**
|
|
* The content of the menu.
|
|
* @defaultValue { side: 'bottom', sideOffset: 8, collisionPadding: 8, position: 'popper' }
|
|
*/
|
|
content?: Omit<ComboboxContentProps, 'as' | 'asChild' | 'forceMount'> & Partial<EmitsToProps<ComboboxContentEmits>>
|
|
/**
|
|
* Display an arrow alongside the menu.
|
|
* @defaultValue false
|
|
*/
|
|
arrow?: boolean | Omit<ComboboxArrowProps, 'as' | 'asChild'>
|
|
/**
|
|
* Render the menu in a portal.
|
|
* @defaultValue true
|
|
*/
|
|
portal?: boolean | string | HTMLElement
|
|
/**
|
|
* When `items` is an array of objects, select the field to use as the value instead of the object itself.
|
|
* @defaultValue undefined
|
|
*/
|
|
valueKey?: VK
|
|
/**
|
|
* When `items` is an array of objects, select the field to use as the label.
|
|
* @defaultValue 'label'
|
|
*/
|
|
labelKey?: keyof NestedItem<T>
|
|
items?: T
|
|
/** The value of the InputMenu when initially rendered. Use when you do not need to control the state of the InputMenu. */
|
|
defaultValue?: GetModelValue<T, VK, M>
|
|
/** The controlled value of the InputMenu. Can be binded-with with `v-model`. */
|
|
modelValue?: GetModelValue<T, VK, M>
|
|
/** Whether multiple options can be selected or not. */
|
|
multiple?: M & boolean
|
|
/** Highlight the ring color like a focus state. */
|
|
highlight?: boolean
|
|
/**
|
|
* Determines if custom user input that does not exist in options can be added.
|
|
* @defaultValue false
|
|
*/
|
|
createItem?: boolean | 'always' | { position?: 'top' | 'bottom', when?: 'empty' | 'always' }
|
|
/**
|
|
* Fields to filter items by.
|
|
* @defaultValue [labelKey]
|
|
*/
|
|
filterFields?: string[]
|
|
/**
|
|
* When `true`, disable the default filters, useful for custom filtering (useAsyncData, useFetch, etc.).
|
|
* @defaultValue false
|
|
*/
|
|
ignoreFilter?: boolean
|
|
class?: any
|
|
ui?: InputMenu['slots']
|
|
}
|
|
|
|
export type InputMenuEmits<A extends ArrayOrNested<InputMenuItem>, VK extends GetItemKeys<A> | undefined, M extends boolean> = Pick<ComboboxRootEmits, 'update:open'> & {
|
|
'change': [payload: Event]
|
|
'blur': [payload: FocusEvent]
|
|
'focus': [payload: FocusEvent]
|
|
'create': [item: string]
|
|
/** Event handler when highlighted element changes. */
|
|
'highlight': [payload: {
|
|
ref: HTMLElement
|
|
value: GetModelValue<A, VK, M>
|
|
} | undefined]
|
|
'remove-tag': [item: GetModelValue<A, VK, M>]
|
|
} & GetModelValueEmits<A, VK, M>
|
|
|
|
type SlotProps<T extends InputMenuItem> = (props: { item: T, index: number }) => any
|
|
|
|
export interface InputMenuSlots<
|
|
A extends ArrayOrNested<InputMenuItem> = ArrayOrNested<InputMenuItem>,
|
|
VK extends GetItemKeys<A> | undefined = undefined,
|
|
M extends boolean = false,
|
|
T extends NestedItem<A> = NestedItem<A>
|
|
> {
|
|
'leading'(props: {
|
|
modelValue?: GetModelValue<A, VK, M>
|
|
open: boolean
|
|
ui: { [K in keyof Required<InputMenu['slots']>]: (props?: Record<string, any>) => string }
|
|
}): any
|
|
'trailing'(props: {
|
|
modelValue?: GetModelValue<A, VK, M>
|
|
open: boolean
|
|
ui: { [K in keyof Required<InputMenu['slots']>]: (props?: Record<string, any>) => string }
|
|
}): any
|
|
'empty'(props: { searchTerm?: string }): any
|
|
'item': SlotProps<T>
|
|
'item-leading': SlotProps<T>
|
|
'item-label': SlotProps<T>
|
|
'item-trailing': SlotProps<T>
|
|
'tags-item-text': SlotProps<T>
|
|
'tags-item-delete': SlotProps<T>
|
|
'content-top': (props?: {}) => any
|
|
'content-bottom': (props?: {}) => any
|
|
'create-item-label'(props: { item: string }): any
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends ArrayOrNested<InputMenuItem>, VK extends GetItemKeys<T> | undefined = undefined, M extends boolean = false">
|
|
import { computed, ref, toRef, onMounted, toRaw, nextTick } from 'vue'
|
|
import { ComboboxRoot, ComboboxArrow, ComboboxAnchor, ComboboxInput, ComboboxTrigger, ComboboxPortal, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxLabel, ComboboxSeparator, ComboboxItem, ComboboxItemIndicator, TagsInputRoot, TagsInputItem, TagsInputItemText, TagsInputItemDelete, TagsInputInput, useForwardPropsEmits, useFilter } from 'reka-ui'
|
|
import { defu } from 'defu'
|
|
import { isEqual } from 'ohash/utils'
|
|
import { reactivePick, createReusableTemplate } from '@vueuse/core'
|
|
import { useAppConfig } from '#imports'
|
|
import { useButtonGroup } from '../composables/useButtonGroup'
|
|
import { useComponentIcons } from '../composables/useComponentIcons'
|
|
import { useFormField } from '../composables/useFormField'
|
|
import { useLocale } from '../composables/useLocale'
|
|
import { usePortal } from '../composables/usePortal'
|
|
import { compare, get, isArrayOfArray } from '../utils'
|
|
import { tv } from '../utils/tv'
|
|
import UIcon from './Icon.vue'
|
|
import UAvatar from './Avatar.vue'
|
|
import UChip from './Chip.vue'
|
|
|
|
defineOptions({ inheritAttrs: false })
|
|
|
|
const props = withDefaults(defineProps<InputMenuProps<T, VK, M>>(), {
|
|
type: 'text',
|
|
autofocusDelay: 0,
|
|
portal: true,
|
|
labelKey: 'label' as never,
|
|
resetSearchTermOnBlur: true,
|
|
resetSearchTermOnSelect: true
|
|
})
|
|
const emits = defineEmits<InputMenuEmits<T, VK, M>>()
|
|
const slots = defineSlots<InputMenuSlots<T, VK, M>>()
|
|
|
|
const searchTerm = defineModel<string>('searchTerm', { default: '' })
|
|
|
|
const { t } = useLocale()
|
|
const appConfig = useAppConfig() as InputMenu['AppConfig']
|
|
const { contains } = useFilter({ sensitivity: 'base' })
|
|
|
|
const rootProps = useForwardPropsEmits(reactivePick(props, 'as', 'modelValue', 'defaultValue', 'open', 'defaultOpen', 'required', 'multiple', 'resetSearchTermOnBlur', 'resetSearchTermOnSelect', 'highlightOnHover', 'ignoreFilter'), emits)
|
|
const portalProps = usePortal(toRef(() => props.portal))
|
|
const contentProps = toRef(() => defu(props.content, { side: 'bottom', sideOffset: 8, collisionPadding: 8, position: 'popper' }) as ComboboxContentProps)
|
|
const arrowProps = toRef(() => props.arrow as ComboboxArrowProps)
|
|
|
|
const { emitFormBlur, emitFormFocus, emitFormChange, emitFormInput, size: formGroupSize, color, id, name, highlight, disabled, ariaAttrs } = useFormField<InputProps>(props)
|
|
const { orientation, size: buttonGroupSize } = useButtonGroup<InputProps>(props)
|
|
const { isLeading, isTrailing, leadingIconName, trailingIconName } = useComponentIcons(toRef(() => defu(props, { trailingIcon: appConfig.ui.icons.chevronDown })))
|
|
|
|
const inputSize = computed(() => buttonGroupSize.value || formGroupSize.value)
|
|
|
|
const [DefineCreateItemTemplate, ReuseCreateItemTemplate] = createReusableTemplate()
|
|
|
|
const ui = computed(() => tv({ extend: tv(theme), ...(appConfig.ui?.inputMenu || {}) })({
|
|
color: color.value,
|
|
variant: props.variant,
|
|
size: inputSize?.value,
|
|
loading: props.loading,
|
|
highlight: highlight.value,
|
|
leading: isLeading.value || !!props.avatar || !!slots.leading,
|
|
trailing: isTrailing.value || !!slots.trailing,
|
|
multiple: props.multiple,
|
|
buttonGroup: orientation.value
|
|
}))
|
|
|
|
function displayValue(value: T): string {
|
|
const item = items.value.find(item => compare(typeof item === 'object' && props.valueKey ? get(item as Record<string, any>, props.valueKey as string) : item, value))
|
|
return item && (typeof item === 'object' ? get(item, props.labelKey as string) : item)
|
|
}
|
|
|
|
const groups = computed<InputMenuItem[][]>(() =>
|
|
props.items?.length
|
|
? isArrayOfArray(props.items)
|
|
? props.items
|
|
: [props.items]
|
|
: []
|
|
)
|
|
// eslint-disable-next-line vue/no-dupe-keys
|
|
const items = computed(() => groups.value.flatMap(group => group))
|
|
|
|
const filteredGroups = computed(() => {
|
|
if (props.ignoreFilter || !searchTerm.value) {
|
|
return groups.value
|
|
}
|
|
|
|
const fields = Array.isArray(props.filterFields) ? props.filterFields : [props.labelKey] as string[]
|
|
|
|
return groups.value.map(items => items.filter((item) => {
|
|
if (item === undefined || item === null) {
|
|
return false
|
|
}
|
|
|
|
if (typeof item !== 'object') {
|
|
return contains(String(item), searchTerm.value)
|
|
}
|
|
|
|
if (item.type && ['label', 'separator'].includes(item.type)) {
|
|
return true
|
|
}
|
|
|
|
return fields.some((field) => {
|
|
const value = get(item, field)
|
|
return value !== undefined && value !== null && contains(String(value), searchTerm.value)
|
|
})
|
|
})).filter(group => group.filter(item =>
|
|
!isInputItem(item) || (!item.type || !['label', 'separator'].includes(item.type))
|
|
).length > 0)
|
|
})
|
|
const filteredItems = computed(() => filteredGroups.value.flatMap(group => group))
|
|
|
|
const createItem = computed(() => {
|
|
if (!props.createItem || !searchTerm.value) {
|
|
return false
|
|
}
|
|
|
|
const newItem = props.valueKey ? { [props.valueKey]: searchTerm.value } as NestedItem<T> : searchTerm.value
|
|
|
|
if ((typeof props.createItem === 'object' && props.createItem.when === 'always') || props.createItem === 'always') {
|
|
return !filteredItems.value.find(item => compare(item, newItem, props.valueKey as string))
|
|
}
|
|
|
|
return !filteredItems.value.length
|
|
})
|
|
const createItemPosition = computed(() => typeof props.createItem === 'object' ? props.createItem.position : 'bottom')
|
|
|
|
const inputRef = ref<InstanceType<typeof ComboboxInput> | null>(null)
|
|
|
|
function autoFocus() {
|
|
if (props.autofocus) {
|
|
inputRef.value?.$el?.focus()
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
nextTick(() => {
|
|
searchTerm.value = ''
|
|
})
|
|
|
|
setTimeout(() => {
|
|
autoFocus()
|
|
}, props.autofocusDelay)
|
|
})
|
|
|
|
function onUpdate(value: any) {
|
|
if (toRaw(props.modelValue) === value) {
|
|
return
|
|
}
|
|
// @ts-expect-error - 'target' does not exist in type 'EventInit'
|
|
const event = new Event('change', { target: { value } })
|
|
emits('change', event)
|
|
emitFormChange()
|
|
emitFormInput()
|
|
|
|
if (props.resetSearchTermOnSelect) {
|
|
searchTerm.value = ''
|
|
}
|
|
}
|
|
|
|
function onBlur(event: FocusEvent) {
|
|
emits('blur', event)
|
|
emitFormBlur()
|
|
}
|
|
|
|
function onFocus(event: FocusEvent) {
|
|
emits('focus', event)
|
|
emitFormFocus()
|
|
}
|
|
|
|
function onUpdateOpen(value: boolean) {
|
|
let timeoutId
|
|
|
|
if (!value) {
|
|
const event = new FocusEvent('blur')
|
|
|
|
emits('blur', event)
|
|
emitFormBlur()
|
|
|
|
// Since we use `displayValue` prop inside ComboboxInput we should reset searchTerm manually
|
|
// https://reka-ui.com/docs/components/combobox#api-reference
|
|
if (props.resetSearchTermOnBlur) {
|
|
const STATE_ANIMATION_DELAY_MS = 100
|
|
|
|
timeoutId = setTimeout(() => {
|
|
searchTerm.value = ''
|
|
}, STATE_ANIMATION_DELAY_MS)
|
|
}
|
|
} else {
|
|
const event = new FocusEvent('focus')
|
|
emits('focus', event)
|
|
emitFormFocus()
|
|
clearTimeout(timeoutId)
|
|
}
|
|
}
|
|
|
|
function onRemoveTag(event: any) {
|
|
if (props.multiple) {
|
|
const modelValue = props.modelValue as GetModelValue<T, VK, true>
|
|
const filteredValue = modelValue.filter(value => !isEqual(value, event))
|
|
emits('update:modelValue', filteredValue as GetModelValue<T, VK, M>)
|
|
emits('remove-tag', event)
|
|
onUpdate(filteredValue)
|
|
}
|
|
}
|
|
|
|
function onSelect(e: Event, item: InputMenuItem) {
|
|
if (!isInputItem(item)) {
|
|
return
|
|
}
|
|
|
|
if (item.disabled) {
|
|
e.preventDefault()
|
|
return
|
|
}
|
|
|
|
item.onSelect?.(e)
|
|
}
|
|
|
|
function isInputItem(item: InputMenuItem): item is _InputMenuItem {
|
|
return typeof item === 'object' && item !== null
|
|
}
|
|
|
|
defineExpose({
|
|
inputRef
|
|
})
|
|
</script>
|
|
|
|
<!-- eslint-disable vue/no-template-shadow -->
|
|
<template>
|
|
<DefineCreateItemTemplate>
|
|
<ComboboxGroup :class="ui.group({ class: props.ui?.group })">
|
|
<ComboboxItem
|
|
:class="ui.item({ class: props.ui?.item })"
|
|
:value="searchTerm"
|
|
@select.prevent="emits('create', searchTerm)"
|
|
>
|
|
<span :class="ui.itemLabel({ class: props.ui?.itemLabel })">
|
|
<slot name="create-item-label" :item="searchTerm">
|
|
{{ t('inputMenu.create', { label: searchTerm }) }}
|
|
</slot>
|
|
</span>
|
|
</ComboboxItem>
|
|
</ComboboxGroup>
|
|
</DefineCreateItemTemplate>
|
|
|
|
<ComboboxRoot
|
|
:id="id"
|
|
v-slot="{ modelValue, open }"
|
|
v-bind="rootProps"
|
|
:name="name"
|
|
:disabled="disabled"
|
|
:class="ui.root({ class: [props.ui?.root, props.class] })"
|
|
:as-child="!!multiple"
|
|
ignore-filter
|
|
@update:model-value="onUpdate"
|
|
@update:open="onUpdateOpen"
|
|
@keydown.enter="$event.preventDefault()"
|
|
>
|
|
<ComboboxAnchor :as-child="!multiple" :class="ui.base({ class: props.ui?.base })">
|
|
<TagsInputRoot
|
|
v-if="multiple"
|
|
v-slot="{ modelValue: tags }"
|
|
:model-value="(modelValue as string[])"
|
|
:disabled="disabled"
|
|
:required="required"
|
|
delimiter=""
|
|
as-child
|
|
@blur="onBlur"
|
|
@focus="onFocus"
|
|
@remove-tag="onRemoveTag"
|
|
>
|
|
<TagsInputItem v-for="(item, index) in tags" :key="index" :value="item" :class="ui.tagsItem({ class: [props.ui?.tagsItem, isInputItem(item) && item.ui?.tagsItem] })">
|
|
<TagsInputItemText :class="ui.tagsItemText({ class: [props.ui?.tagsItemText, isInputItem(item) && item.ui?.tagsItemText] })">
|
|
<slot name="tags-item-text" :item="(item as NestedItem<T>)" :index="index">
|
|
{{ displayValue(item as T) ?? item }}
|
|
</slot>
|
|
</TagsInputItemText>
|
|
|
|
<TagsInputItemDelete :class="ui.tagsItemDelete({ class: [props.ui?.tagsItemDelete, isInputItem(item) && item.ui?.tagsItemDelete] })" :disabled="disabled">
|
|
<slot name="tags-item-delete" :item="(item as NestedItem<T>)" :index="index">
|
|
<UIcon :name="deleteIcon || appConfig.ui.icons.close" :class="ui.tagsItemDeleteIcon({ class: [props.ui?.tagsItemDeleteIcon, isInputItem(item) && item.ui?.tagsItemDeleteIcon] })" />
|
|
</slot>
|
|
</TagsInputItemDelete>
|
|
</TagsInputItem>
|
|
|
|
<ComboboxInput v-model="searchTerm" as-child>
|
|
<TagsInputInput
|
|
ref="inputRef"
|
|
v-bind="{ ...$attrs, ...ariaAttrs }"
|
|
:placeholder="placeholder"
|
|
:class="ui.tagsInput({ class: props.ui?.tagsInput })"
|
|
@keydown.enter.prevent
|
|
/>
|
|
</ComboboxInput>
|
|
</TagsInputRoot>
|
|
|
|
<ComboboxInput
|
|
v-else
|
|
ref="inputRef"
|
|
:display-value="displayValue"
|
|
v-bind="{ ...$attrs, ...ariaAttrs }"
|
|
:type="type"
|
|
:placeholder="placeholder"
|
|
:required="required"
|
|
@blur="onBlur"
|
|
@focus="onFocus"
|
|
@update:model-value="searchTerm = $event"
|
|
/>
|
|
|
|
<span v-if="isLeading || !!avatar || !!slots.leading" :class="ui.leading({ class: props.ui?.leading })">
|
|
<slot name="leading" :model-value="(modelValue as GetModelValue<T, VK, M>)" :open="open" :ui="ui">
|
|
<UIcon v-if="isLeading && leadingIconName" :name="leadingIconName" :class="ui.leadingIcon({ class: props.ui?.leadingIcon })" />
|
|
<UAvatar v-else-if="!!avatar" :size="((props.ui?.itemLeadingAvatarSize || ui.itemLeadingAvatarSize()) as AvatarProps['size'])" v-bind="avatar" :class="ui.itemLeadingAvatar({ class: props.ui?.itemLeadingAvatar })" />
|
|
</slot>
|
|
</span>
|
|
|
|
<ComboboxTrigger v-if="isTrailing || !!slots.trailing" :class="ui.trailing({ class: props.ui?.trailing })">
|
|
<slot name="trailing" :model-value="(modelValue as GetModelValue<T, VK, M>)" :open="open" :ui="ui">
|
|
<UIcon v-if="trailingIconName" :name="trailingIconName" :class="ui.trailingIcon({ class: props.ui?.trailingIcon })" />
|
|
</slot>
|
|
</ComboboxTrigger>
|
|
</ComboboxAnchor>
|
|
|
|
<ComboboxPortal v-bind="portalProps">
|
|
<ComboboxContent :class="ui.content({ class: props.ui?.content })" v-bind="contentProps">
|
|
<slot name="content-top" />
|
|
|
|
<ComboboxEmpty :class="ui.empty({ class: props.ui?.empty })">
|
|
<slot name="empty" :search-term="searchTerm">
|
|
{{ searchTerm ? t('inputMenu.noMatch', { searchTerm }) : t('inputMenu.noData') }}
|
|
</slot>
|
|
</ComboboxEmpty>
|
|
|
|
<div role="presentation" :class="ui.viewport({ class: props.ui?.viewport })">
|
|
<ReuseCreateItemTemplate v-if="createItem && createItemPosition === 'top'" />
|
|
|
|
<ComboboxGroup v-for="(group, groupIndex) in filteredGroups" :key="`group-${groupIndex}`" :class="ui.group({ class: props.ui?.group })">
|
|
<template v-for="(item, index) in group" :key="`group-${groupIndex}-${index}`">
|
|
<ComboboxLabel v-if="isInputItem(item) && item.type === 'label'" :class="ui.label({ class: [props.ui?.label, item.ui?.label, item.class] })">
|
|
{{ get(item, props.labelKey as string) }}
|
|
</ComboboxLabel>
|
|
|
|
<ComboboxSeparator v-else-if="isInputItem(item) && item.type === 'separator'" :class="ui.separator({ class: [props.ui?.separator, item.ui?.separator, item.class] })" />
|
|
|
|
<ComboboxItem
|
|
v-else
|
|
:class="ui.item({ class: [props.ui?.item, isInputItem(item) && item.ui?.item, isInputItem(item) && item.class] })"
|
|
:disabled="isInputItem(item) && item.disabled"
|
|
:value="props.valueKey && isInputItem(item) ? get(item, props.valueKey as string) : item"
|
|
@select="onSelect($event, item)"
|
|
>
|
|
<slot name="item" :item="(item as NestedItem<T>)" :index="index">
|
|
<slot name="item-leading" :item="(item as NestedItem<T>)" :index="index">
|
|
<UIcon v-if="isInputItem(item) && item.icon" :name="item.icon" :class="ui.itemLeadingIcon({ class: [props.ui?.itemLeadingIcon, item.ui?.itemLeadingIcon] })" />
|
|
<UAvatar v-else-if="isInputItem(item) && item.avatar" :size="((item.ui?.itemLeadingAvatarSize || props.ui?.itemLeadingAvatarSize || ui.itemLeadingAvatarSize()) as AvatarProps['size'])" v-bind="item.avatar" :class="ui.itemLeadingAvatar({ class: [props.ui?.itemLeadingAvatar, item.ui?.itemLeadingAvatar] })" />
|
|
<UChip
|
|
v-else-if="isInputItem(item) && item.chip"
|
|
:size="((item.ui?.itemLeadingChipSize || props.ui?.itemLeadingChipSize || ui.itemLeadingChipSize()) as ChipProps['size'])"
|
|
inset
|
|
standalone
|
|
v-bind="item.chip"
|
|
:class="ui.itemLeadingChip({ class: [props.ui?.itemLeadingChip, item.ui?.itemLeadingChip] })"
|
|
/>
|
|
</slot>
|
|
|
|
<span :class="ui.itemLabel({ class: [props.ui?.itemLabel, isInputItem(item) && item.ui?.itemLabel] })">
|
|
<slot name="item-label" :item="(item as NestedItem<T>)" :index="index">
|
|
{{ isInputItem(item) ? get(item, props.labelKey as string) : item }}
|
|
</slot>
|
|
</span>
|
|
|
|
<span :class="ui.itemTrailing({ class: [props.ui?.itemTrailing, isInputItem(item) && item.ui?.itemTrailing] })">
|
|
<slot name="item-trailing" :item="(item as NestedItem<T>)" :index="index" />
|
|
|
|
<ComboboxItemIndicator as-child>
|
|
<UIcon :name="selectedIcon || appConfig.ui.icons.check" :class="ui.itemTrailingIcon({ class: [props.ui?.itemTrailingIcon, isInputItem(item) && item.ui?.itemTrailingIcon] })" />
|
|
</ComboboxItemIndicator>
|
|
</span>
|
|
</slot>
|
|
</ComboboxItem>
|
|
</template>
|
|
</ComboboxGroup>
|
|
|
|
<ReuseCreateItemTemplate v-if="createItem && createItemPosition === 'bottom'" />
|
|
</div>
|
|
|
|
<slot name="content-bottom" />
|
|
|
|
<ComboboxArrow v-if="!!arrow" v-bind="arrowProps" :class="ui.arrow({ class: props.ui?.arrow })" />
|
|
</ComboboxContent>
|
|
</ComboboxPortal>
|
|
</ComboboxRoot>
|
|
</template>
|