mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
324 lines
13 KiB
Vue
324 lines
13 KiB
Vue
<script lang="ts">
|
|
import { tv, type VariantProps } from 'tailwind-variants'
|
|
import type { ComboboxRootProps, ComboboxRootEmits, ComboboxContentProps, ComboboxItemProps, ComboboxArrowProps } from 'radix-vue'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import _appConfig from '#build/app.config'
|
|
import theme from '#build/ui/select-menu'
|
|
import type { UseComponentIconsProps } from '../composables/useComponentIcons'
|
|
import type { AvatarProps, ChipProps, InputProps } from '../types'
|
|
import type { AcceptableValue, ArrayOrWrapped, PartialString } from '../types/utils'
|
|
|
|
const appConfig = _appConfig as AppConfig & { ui: { selectMenu: Partial<typeof theme> } }
|
|
|
|
const selectMenu = tv({ extend: tv(theme), ...(appConfig.ui?.selectMenu || {}) })
|
|
|
|
export interface SelectMenuItem extends Pick<ComboboxItemProps, 'disabled'> {
|
|
label?: string
|
|
icon?: string
|
|
avatar?: AvatarProps
|
|
chip?: ChipProps
|
|
/**
|
|
* The item type.
|
|
* @defaultValue 'item'
|
|
*/
|
|
type?: 'label' | 'separator' | 'item'
|
|
select?(e?: Event): void
|
|
}
|
|
|
|
type SelectMenuVariants = VariantProps<typeof selectMenu>
|
|
|
|
export interface SelectMenuProps<T> extends Pick<ComboboxRootProps<T>, 'modelValue' | 'defaultValue' | 'selectedValue' | 'open' | 'defaultOpen' | 'searchTerm' | 'multiple' | 'disabled' | 'name' | 'resetSearchTermOnBlur'>, UseComponentIconsProps {
|
|
id?: string
|
|
/** The placeholder text when the select is empty. */
|
|
placeholder?: string
|
|
/**
|
|
* Wether to display the search input or not.
|
|
* Can be an object to pass additional props to the input.
|
|
* @defaultValue { placeholder: 'Search...' }
|
|
*/
|
|
searchInput?: boolean | { placeholder?: string }
|
|
color?: SelectMenuVariants['color']
|
|
variant?: SelectMenuVariants['variant']
|
|
size?: SelectMenuVariants['size']
|
|
required?: boolean
|
|
/**
|
|
* The icon displayed to open the menu.
|
|
* @defaultValue appConfig.ui.icons.chevronDown
|
|
*/
|
|
trailingIcon?: string
|
|
/**
|
|
* The icon displayed when an item is selected.
|
|
* @defaultValue appConfig.ui.icons.check
|
|
*/
|
|
selectedIcon?: string
|
|
/**
|
|
* The content of the menu.
|
|
* @defaultValue { side: 'bottom', sideOffset: 8, position: 'popper' }
|
|
*/
|
|
content?: Omit<ComboboxContentProps, 'as' | 'asChild' | 'forceMount'>
|
|
/**
|
|
* Display an arrow alongside the menu.
|
|
* @defaultValue false
|
|
*/
|
|
arrow?: boolean | Omit<ComboboxArrowProps, 'as' | 'asChild'>
|
|
/**
|
|
* Render the menu in a portal.
|
|
* @defaultValue true
|
|
*/
|
|
portal?: boolean
|
|
/**
|
|
* Whether to filter items or not, can be an array of fields to filter.
|
|
* When `false`, items will not be filtered which is useful for custom filtering (useAsyncData, useFetch, etc.).
|
|
* @defaultValue ['label']
|
|
*/
|
|
filter?: boolean | string[]
|
|
/**
|
|
* When `items` is an array of objects, select the field to use as the value instead of the object itself.
|
|
* @defaultValue undefined
|
|
*/
|
|
valueKey?: keyof T
|
|
/**
|
|
* When `items` is an array of objects, select the field to use as the label.
|
|
* @defaultValue 'label'
|
|
*/
|
|
labelKey?: keyof T
|
|
items?: T[] | T[][]
|
|
/** Highlight the ring color like a focus state. */
|
|
highlight?: boolean
|
|
class?: any
|
|
ui?: PartialString<typeof selectMenu.slots>
|
|
}
|
|
|
|
export type SelectMenuEmits<T> = ComboboxRootEmits<T> & {
|
|
change: [payload: Event]
|
|
blur: [payload: FocusEvent]
|
|
focus: [payload: FocusEvent]
|
|
}
|
|
|
|
type SlotProps<T> = (props: { item: T, index: number }) => any
|
|
|
|
export interface SelectMenuSlots<T> {
|
|
'leading'(props: { modelValue: T, open: boolean, ui: any }): any
|
|
'default'(props: { modelValue: T, open: boolean }): any
|
|
'trailing'(props: { modelValue: T, open: boolean, ui: any }): any
|
|
'empty'(props: { searchTerm?: string }): any
|
|
'item': SlotProps<T>
|
|
'item-leading': SlotProps<T>
|
|
'item-label': SlotProps<T>
|
|
'item-trailing': SlotProps<T>
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends SelectMenuItem | AcceptableValue">
|
|
import { computed, toRef } from 'vue'
|
|
import { ComboboxRoot, ComboboxAnchor, ComboboxInput, ComboboxTrigger, ComboboxPortal, ComboboxContent, ComboboxViewport, ComboboxEmpty, ComboboxGroup, ComboboxLabel, ComboboxSeparator, ComboboxItem, ComboboxItemIndicator, useForwardPropsEmits } from 'radix-vue'
|
|
import { defu } from 'defu'
|
|
import isEqual from 'fast-deep-equal'
|
|
import { reactivePick } from '@vueuse/core'
|
|
import { useAppConfig } from '#imports'
|
|
import { useButtonGroup } from '../composables/useButtonGroup'
|
|
import { useComponentIcons } from '../composables/useComponentIcons'
|
|
import { useFormField } from '../composables/useFormField'
|
|
import { get, escapeRegExp } from '../utils'
|
|
import UIcon from './Icon.vue'
|
|
import UAvatar from './Avatar.vue'
|
|
import UChip from './Chip.vue'
|
|
|
|
const props = withDefaults(defineProps<SelectMenuProps<T>>(), {
|
|
search: true,
|
|
portal: true,
|
|
autofocusDelay: 0,
|
|
searchInput: () => ({ placeholder: 'Search...' }),
|
|
filter: () => ['label'],
|
|
labelKey: 'label' as keyof T
|
|
})
|
|
const emits = defineEmits<SelectMenuEmits<T>>()
|
|
const slots = defineSlots<SelectMenuSlots<T>>()
|
|
|
|
const searchTerm = defineModel<string>('searchTerm', { default: '' })
|
|
|
|
const appConfig = useAppConfig()
|
|
const rootProps = useForwardPropsEmits(reactivePick(props, 'modelValue', 'defaultValue', 'selectedValue', 'open', 'defaultOpen', 'multiple', 'resetSearchTermOnBlur'), emits)
|
|
const contentProps = toRef(() => defu(props.content, { side: 'bottom', sideOffset: 8, position: 'popper' }) as ComboboxContentProps)
|
|
const { emitFormBlur, emitFormInput, emitFormChange, size: formGroupSize, color, id, name, highlight, disabled } = 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 selectSize = computed(() => buttonGroupSize.value || formGroupSize.value)
|
|
|
|
const ui = computed(() => selectMenu({
|
|
color: color.value,
|
|
variant: props.variant,
|
|
size: selectSize?.value,
|
|
loading: props.loading,
|
|
highlight: highlight.value,
|
|
leading: isLeading.value || !!slots.leading,
|
|
trailing: isTrailing.value || !!slots.trailing,
|
|
buttonGroup: orientation.value
|
|
}))
|
|
|
|
function displayValue(value: T): string {
|
|
if (props.multiple && Array.isArray(value)) {
|
|
return value.map(v => displayValue(v)).join(', ')
|
|
}
|
|
|
|
const item = items.value.find(item => props.valueKey ? isEqual(get(item as Record<string, any>, props.valueKey as string), value) : isEqual(item, value))
|
|
|
|
return item && (typeof item === 'object' ? get(item, props.labelKey as string) : item)
|
|
}
|
|
|
|
function filterFunction(items: ArrayOrWrapped<AcceptableValue>, searchTerm: string): ArrayOrWrapped<AcceptableValue> {
|
|
if (props.filter === false) {
|
|
return items
|
|
}
|
|
|
|
const fields = Array.isArray(props.filter) ? props.filter : [props.labelKey]
|
|
const escapedSearchTerm = escapeRegExp(searchTerm)
|
|
|
|
return items.filter((item) => {
|
|
if (typeof item !== 'object') {
|
|
return String(item).search(new RegExp(escapedSearchTerm, 'i')) !== -1
|
|
}
|
|
|
|
return fields.some((field) => {
|
|
const child = get(item, field as string)
|
|
|
|
return child !== null && child !== undefined && String(child).search(new RegExp(escapedSearchTerm, 'i')) !== -1
|
|
})
|
|
}) as ArrayOrWrapped<T>
|
|
}
|
|
|
|
const groups = computed(() => props.items?.length ? (Array.isArray(props.items[0]) ? props.items : [props.items]) as SelectMenuItem[][] : [])
|
|
// eslint-disable-next-line vue/no-dupe-keys
|
|
const items = computed(() => groups.value.flatMap(group => group) as T[])
|
|
|
|
function onUpdate(value: any) {
|
|
// @ts-expect-error - 'target' does not exist in type 'EventInit'
|
|
const event = new Event('change', { target: { value } })
|
|
emits('change', event)
|
|
emitFormChange()
|
|
emitFormInput()
|
|
}
|
|
|
|
function onUpdateOpen(value: boolean) {
|
|
if (!value) {
|
|
const event = new FocusEvent('blur')
|
|
emits('blur', event)
|
|
emitFormBlur()
|
|
} else {
|
|
const event = new FocusEvent('focus')
|
|
emits('focus', event)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<ComboboxRoot
|
|
:id="id"
|
|
v-slot="{ modelValue, open }"
|
|
v-bind="rootProps"
|
|
v-model:search-term="searchTerm"
|
|
as-child
|
|
:name="name"
|
|
:disabled="disabled"
|
|
:display-value="() => searchTerm"
|
|
:filter-function="filterFunction"
|
|
@update:model-value="onUpdate"
|
|
@update:open="onUpdateOpen"
|
|
>
|
|
<ComboboxAnchor as-child>
|
|
<ComboboxTrigger :class="ui.base({ class: [props.class, props.ui?.base] })" tabindex="0">
|
|
<span v-if="isLeading || !!slots.leading" :class="ui.leading({ class: props.ui?.leading })">
|
|
<slot name="leading" :model-value="(modelValue as T)" :open="open" :ui="ui">
|
|
<UIcon v-if="leadingIconName" :name="leadingIconName" :class="ui.leadingIcon({ class: props.ui?.leadingIcon })" />
|
|
</slot>
|
|
</span>
|
|
|
|
<slot :model-value="(modelValue as T)" :open="open">
|
|
<template v-for="displayedModelValue in [displayValue(modelValue)]" :key="displayedModelValue">
|
|
<span v-if="displayedModelValue" :class="ui.value({ class: props.ui?.value })">
|
|
{{ displayedModelValue }}
|
|
</span>
|
|
<span v-else :class="ui.placeholder({ class: props.ui?.placeholder })">
|
|
{{ placeholder ?? ' ' }}
|
|
</span>
|
|
</template>
|
|
</slot>
|
|
|
|
<span v-if="isTrailing || !!slots.trailing" :class="ui.trailing({ class: props.ui?.trailing })">
|
|
<slot name="trailing" :model-value="(modelValue as T)" :open="open" :ui="ui">
|
|
<UIcon v-if="trailingIconName" :name="trailingIconName" :class="ui.trailingIcon({ class: props.ui?.trailingIcon })" />
|
|
</slot>
|
|
</span>
|
|
</ComboboxTrigger>
|
|
</ComboboxAnchor>
|
|
|
|
<ComboboxPortal :disabled="!portal">
|
|
<ComboboxContent :class="ui.content({ class: props.ui?.content })" v-bind="contentProps">
|
|
<ComboboxInput
|
|
v-if="!!searchInput"
|
|
autofocus
|
|
autocomplete="off"
|
|
v-bind="typeof searchInput === 'object' ? searchInput : {}"
|
|
:class="ui.input({ class: props.ui?.input })"
|
|
/>
|
|
|
|
<ComboboxEmpty :class="ui.empty({ class: props.ui?.empty })">
|
|
<slot name="empty" :search-term="searchTerm">
|
|
{{ searchTerm ? `No results for ${searchTerm}` : 'No results' }}
|
|
</slot>
|
|
</ComboboxEmpty>
|
|
|
|
<ComboboxViewport :class="ui.viewport({ class: props.ui?.viewport })">
|
|
<ComboboxGroup v-for="(group, groupIndex) in groups" :key="`group-${groupIndex}`" :class="ui.group({ class: props.ui?.group })">
|
|
<template v-for="(item, index) in group" :key="`group-${groupIndex}-${index}`">
|
|
<ComboboxLabel v-if="item?.type === 'label'" :class="ui.label({ class: props.ui?.label })">
|
|
{{ get(item, props.labelKey as string) }}
|
|
</ComboboxLabel>
|
|
|
|
<ComboboxSeparator v-else-if="item?.type === 'separator'" :class="ui.separator({ class: props.ui?.separator })" />
|
|
|
|
<ComboboxItem
|
|
v-else
|
|
:class="ui.item({ class: props.ui?.item })"
|
|
:disabled="item.disabled"
|
|
:value="valueKey && typeof item === 'object' ? get(item, props.valueKey as string) : item"
|
|
@select="item.select"
|
|
>
|
|
<slot name="item" :item="(item as T)" :index="index">
|
|
<slot name="item-leading" :item="(item as T)" :index="index">
|
|
<UAvatar v-if="item.avatar" :size="((props.ui?.itemLeadingAvatarSize || ui.itemLeadingAvatarSize()) as AvatarProps['size'])" v-bind="item.avatar" :class="ui.itemLeadingAvatar({ class: props.ui?.itemLeadingAvatar })" />
|
|
<UIcon v-else-if="item.icon" :name="item.icon" :class="ui.itemLeadingIcon({ class: props.ui?.itemLeadingIcon })" />
|
|
<UChip
|
|
v-else-if="item.chip"
|
|
:size="((props.ui?.itemLeadingChipSize || ui.itemLeadingChipSize()) as ChipProps['size'])"
|
|
inset
|
|
standalone
|
|
v-bind="item.chip"
|
|
:class="ui.itemLeadingChip({ class: props.ui?.itemLeadingChip })"
|
|
/>
|
|
</slot>
|
|
|
|
<span :class="ui.itemLabel({ class: props.ui?.itemLabel })">
|
|
<slot name="item-label" :item="(item as T)" :index="index">
|
|
{{ typeof item === 'object' ? get(item, props.labelKey as string) : item }}
|
|
</slot>
|
|
</span>
|
|
|
|
<span :class="ui.itemTrailing({ class: props.ui?.itemTrailing })">
|
|
<slot name="item-trailing" :item="(item as T)" :index="index" />
|
|
|
|
<ComboboxItemIndicator as-child>
|
|
<UIcon :name="selectedIcon || appConfig.ui.icons.check" :class="ui.itemTrailingIcon({ class: props.ui?.itemTrailingIcon })" />
|
|
</ComboboxItemIndicator>
|
|
</span>
|
|
</slot>
|
|
</ComboboxItem>
|
|
</template>
|
|
</ComboboxGroup>
|
|
</ComboboxViewport>
|
|
</ComboboxContent>
|
|
</ComboboxPortal>
|
|
</ComboboxRoot>
|
|
</template>
|