mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
226 lines
9.1 KiB
Vue
226 lines
9.1 KiB
Vue
<script lang="ts">
|
|
import { tv, type VariantProps } from 'tailwind-variants'
|
|
import type { SelectRootProps, SelectRootEmits, SelectContentProps, SelectArrowProps, SelectItemProps } from 'radix-vue'
|
|
import type { AppConfig } from '@nuxt/schema'
|
|
import _appConfig from '#build/app.config'
|
|
import theme from '#build/ui/select'
|
|
import type { UseComponentIconsProps } from '../composables/useComponentIcons'
|
|
import type { AvatarProps, ChipProps, InputProps } from '../types'
|
|
import type { AcceptableValue, PartialString } from '../types/utils'
|
|
|
|
const appConfig = _appConfig as AppConfig & { ui: { select: Partial<typeof theme> } }
|
|
|
|
const select = tv({ extend: tv(theme), ...(appConfig.ui?.select || {}) })
|
|
|
|
export interface SelectItem extends Pick<SelectItemProps, 'disabled' | 'value'> {
|
|
label?: string
|
|
icon?: string
|
|
avatar?: AvatarProps
|
|
chip?: ChipProps
|
|
/**
|
|
* The item type.
|
|
* @defaultValue 'item'
|
|
*/
|
|
type?: 'label' | 'separator' | 'item'
|
|
}
|
|
|
|
type SelectVariants = VariantProps<typeof select>
|
|
|
|
export interface SelectProps<T> extends Omit<SelectRootProps, 'dir'>, UseComponentIconsProps {
|
|
id?: string
|
|
/** The placeholder text when the select is empty. */
|
|
placeholder?: string
|
|
color?: SelectVariants['color']
|
|
variant?: SelectVariants['variant']
|
|
size?: SelectVariants['size']
|
|
/**
|
|
* 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<SelectContentProps, 'as' | 'asChild' | 'forceMount'>
|
|
/**
|
|
* Display an arrow alongside the menu.
|
|
* @defaultValue false
|
|
*/
|
|
arrow?: boolean | Omit<SelectArrowProps, 'as' | 'asChild'>
|
|
/**
|
|
* Render the menu in a portal.
|
|
* @defaultValue true
|
|
*/
|
|
portal?: boolean
|
|
/**
|
|
* When `items` is an array of objects, select the field to use as the value.
|
|
* @defaultValue 'value'
|
|
*/
|
|
valueKey?: string
|
|
items?: T[] | T[][]
|
|
/** Highlight the ring color like a focus state. */
|
|
highlight?: boolean
|
|
class?: any
|
|
ui?: PartialString<typeof select.slots>
|
|
}
|
|
|
|
export type SelectEmits = SelectRootEmits & {
|
|
change: [payload: Event]
|
|
blur: [payload: FocusEvent]
|
|
focus: [payload: FocusEvent]
|
|
}
|
|
|
|
type SlotProps<T> = (props: { item: T, index: number }) => any
|
|
|
|
export interface SelectSlots<T> {
|
|
'leading'(props: { modelValue: string, open: boolean, ui: any }): any
|
|
'trailing'(props: { modelValue: string, open: boolean, ui: any }): any
|
|
'item': SlotProps<T>
|
|
'item-leading': SlotProps<T>
|
|
'item-label': SlotProps<T>
|
|
'item-trailing': SlotProps<T>
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends SelectItem | AcceptableValue">
|
|
import { computed, toRef } from 'vue'
|
|
import { SelectRoot, SelectTrigger, SelectValue, SelectPortal, SelectContent, SelectViewport, SelectLabel, SelectGroup, SelectItem, SelectItemIndicator, SelectItemText, SelectSeparator, useForwardPropsEmits } from 'radix-vue'
|
|
import { defu } from 'defu'
|
|
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 UIcon from './Icon.vue'
|
|
import UAvatar from './Avatar.vue'
|
|
import UChip from './Chip.vue'
|
|
|
|
const props = withDefaults(defineProps<SelectProps<T>>(), {
|
|
valueKey: 'value' as any,
|
|
portal: true
|
|
})
|
|
const emits = defineEmits<SelectEmits>()
|
|
const slots = defineSlots<SelectSlots<T>>()
|
|
|
|
const appConfig = useAppConfig()
|
|
const rootProps = useForwardPropsEmits(reactivePick(props, 'modelValue', 'defaultValue', 'open', 'defaultOpen', 'disabled', 'autocomplete', 'required'), emits)
|
|
const contentProps = toRef(() => defu(props.content, { side: 'bottom', sideOffset: 8, position: 'popper' }) as SelectContentProps)
|
|
|
|
const { emitFormChange, emitFormInput, emitFormBlur, 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(() => select({
|
|
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
|
|
}))
|
|
|
|
const groups = computed(() => props.items?.length ? (Array.isArray(props.items[0]) ? props.items : [props.items]) as SelectItem[][] : [])
|
|
|
|
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>
|
|
<SelectRoot
|
|
:id="id"
|
|
v-slot="{ modelValue, open }"
|
|
v-bind="rootProps"
|
|
:name="name"
|
|
:disabled="disabled"
|
|
@update:model-value="onUpdate"
|
|
@update:open="onUpdateOpen"
|
|
>
|
|
<SelectTrigger :class="ui.base({ class: props.class })">
|
|
<span v-if="isLeading || !!slots.leading" :class="ui.leading({ class: props.ui?.leading })">
|
|
<slot name="leading" :model-value="modelValue" :open="open" :ui="ui">
|
|
<UIcon v-if="leadingIconName" :name="leadingIconName" :class="ui.leadingIcon({ class: props.ui?.leadingIcon })" />
|
|
</slot>
|
|
</span>
|
|
|
|
<SelectValue :placeholder="placeholder ?? ' '" :class="ui.value({ class: props.ui?.value })" />
|
|
|
|
<span v-if="isTrailing || !!slots.trailing" :class="ui.trailing({ class: props.ui?.trailing })">
|
|
<slot name="trailing" :model-value="modelValue" :open="open" :ui="ui">
|
|
<UIcon v-if="trailingIconName" :name="trailingIconName" :class="ui.trailingIcon({ class: props.ui?.trailingIcon })" />
|
|
</slot>
|
|
</span>
|
|
</SelectTrigger>
|
|
|
|
<SelectPortal :disabled="!portal">
|
|
<SelectContent :class="ui.content({ class: props.ui?.content })" v-bind="contentProps">
|
|
<SelectViewport :class="ui.viewport({ class: props.ui?.viewport })">
|
|
<SelectGroup 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}`">
|
|
<SelectLabel v-if="item?.type === 'label'" :class="ui.label({ class: props.ui?.label })">
|
|
{{ item.label }}
|
|
</SelectLabel>
|
|
<SelectSeparator v-else-if="item?.type === 'separator'" :class="ui.separator({ class: props.ui?.separator })" />
|
|
<SelectItem v-else :class="ui.item({ class: props.ui?.item })" :disabled="item.disabled" :value="typeof item === 'object' ? (item[valueKey as keyof SelectItem] as string) : item">
|
|
<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>
|
|
|
|
<SelectItemText :class="ui.itemLabel({ class: props.ui?.itemLabel })">
|
|
<slot name="item-label" :item="(item as T)" :index="index">
|
|
{{ typeof item === 'object' ? item.label : item }}
|
|
</slot>
|
|
</SelectItemText>
|
|
|
|
<span :class="ui.itemTrailing({ class: props.ui?.itemTrailing })">
|
|
<slot name="item-trailing" :item="(item as T)" :index="index" />
|
|
|
|
<SelectItemIndicator as-child>
|
|
<UIcon :name="selectedIcon || appConfig.ui.icons.check" :class="ui.itemTrailingIcon({ class: props.ui?.itemTrailingIcon })" />
|
|
</SelectItemIndicator>
|
|
</span>
|
|
</slot>
|
|
</SelectItem>
|
|
</template>
|
|
</SelectGroup>
|
|
</SelectViewport>
|
|
</SelectContent>
|
|
</SelectPortal>
|
|
</SelectRoot>
|
|
</template>
|