@@ -8,14 +8,14 @@ import theme from '#build/ui/command-palette'
8
8
import type { UseComponentIconsProps } from ' ../composables/useComponentIcons'
9
9
import { extendDevtoolsMeta } from ' ../composables/extendDevtoolsMeta'
10
10
import { tv } from ' ../utils/tv'
11
- import type { AvatarProps , ButtonProps , ChipProps , KbdProps , InputProps } from ' ../types'
11
+ import type { AvatarProps , ButtonProps , ChipProps , KbdProps , InputProps , LinkProps } from ' ../types'
12
12
import type { DynamicSlots , PartialString } from ' ../types/utils'
13
13
14
14
const appConfigCommandPalette = _appConfig as AppConfig & { ui: { commandPalette: Partial <typeof theme > } }
15
15
16
16
const commandPalette = tv ({ extend: tv (theme ), ... (appConfigCommandPalette .ui ?.commandPalette || {}) })
17
17
18
- export interface CommandPaletteItem {
18
+ export interface CommandPaletteItem extends Omit < LinkProps , ' type ' | ' raw ' | ' custom ' > {
19
19
prefix? : string
20
20
label? : string
21
21
suffix? : string
@@ -136,12 +136,15 @@ import { useAppConfig } from '#imports'
136
136
import { useLocale } from ' ../composables/useLocale'
137
137
import { omit , get } from ' ../utils'
138
138
import { highlight } from ' ../utils/fuse'
139
+ import { pickLinkProps } from ' ../utils/link'
139
140
import UIcon from ' ./Icon.vue'
140
141
import UAvatar from ' ./Avatar.vue'
141
142
import UButton from ' ./Button.vue'
142
143
import UChip from ' ./Chip.vue'
143
- import UKbd from ' ./Kbd.vue'
144
+ import ULinkBase from ' ./LinkBase.vue'
145
+ import ULink from ' ./Link.vue'
144
146
import UInput from ' ./Input.vue'
147
+ import UKbd from ' ./Kbd.vue'
145
148
146
149
const props = withDefaults (defineProps <CommandPaletteProps <G , T >>(), {
147
150
modelValue: ' ' ,
@@ -281,47 +284,51 @@ const groups = computed(() => {
281
284
:key="`group-${groupIndex}-${index}`"
282
285
:value="omit(item, ['matches' as any, 'group' as any, 'onSelect', 'labelHtml', 'suffixHtml'])"
283
286
:disabled="item.disabled"
284
- :class="ui.item({ class: props.ui?.item, active: item.active })"
287
+ as-child
285
288
@select="item.onSelect"
286
289
>
287
- <slot :name="item.slot || group.slot || 'item'" :item="item" :index="index">
288
- <slot :name="item.slot ? `${item.slot}-leading` : group.slot ? `${group.slot}-leading` : `item-leading`" :item="item" :index="index">
289
- <UIcon v-if="item.loading" :name="loadingIcon || appConfig.ui.icons.loading" :class="ui.itemLeadingIcon({ class: props.ui?.itemLeadingIcon, loading: true })" />
290
- <UIcon v-else-if="item.icon" :name="item.icon" :class="ui.itemLeadingIcon({ class: props.ui?.itemLeadingIcon, active: item.active })" />
291
- <UAvatar v-else-if="item.avatar" :size="((props.ui?.itemLeadingAvatarSize || ui.itemLeadingAvatarSize()) as AvatarProps['size'])" v-bind="item.avatar" :class="ui.itemLeadingAvatar({ class: props.ui?.itemLeadingAvatar, active: item.active })" />
292
- <UChip
293
- v-else-if="item.chip"
294
- :size="((props.ui?.itemLeadingChipSize || ui.itemLeadingChipSize()) as ChipProps['size'])"
295
- inset
296
- standalone
297
- v-bind="item.chip"
298
- :class="ui.itemLeadingChip({ class: props.ui?.itemLeadingChip, active: item.active })"
299
- />
300
- </slot>
301
-
302
- <span v-if="item.labelHtml || get(item, props.labelKey as string) || !!slots[item.slot ? `${item.slot}-label` : group.slot ? `${group.slot}-label` : `item-label`]" :class="ui.itemLabel({ class: props.ui?.itemLabel, active: item.active })">
303
- <slot :name="item.slot ? `${item.slot}-label` : group.slot ? `${group.slot}-label` : `item-label`" :item="item" :index="index">
304
- <span v-if="item.prefix" :class="ui.itemLabelPrefix({ class: props.ui?.itemLabelPrefix })">{{ item.prefix }}</span>
305
-
306
- <span :class="ui.itemLabelBase({ class: props.ui?.itemLabelBase, active: item.active })" v-html="item.labelHtml || get(item, props.labelKey as string)" />
307
-
308
- <span :class="ui.itemLabelSuffix({ class: props.ui?.itemLabelSuffix, active: item.active })" v-html="item.suffixHtml || item.suffix" />
309
- </slot>
310
- </span>
290
+ <ULink v-slot="{ active, ...slotProps }" v-bind="pickLinkProps(item)" custom>
291
+ <ULinkBase v-bind="slotProps" :class="ui.item({ class: props.ui?.item, active: active || item.active })">
292
+ <slot :name="item.slot || group.slot || 'item'" :item="item" :index="index">
293
+ <slot :name="item.slot ? `${item.slot}-leading` : group.slot ? `${group.slot}-leading` : `item-leading`" :item="item" :index="index">
294
+ <UIcon v-if="item.loading" :name="loadingIcon || appConfig.ui.icons.loading" :class="ui.itemLeadingIcon({ class: props.ui?.itemLeadingIcon, loading: true })" />
295
+ <UIcon v-else-if="item.icon" :name="item.icon" :class="ui.itemLeadingIcon({ class: props.ui?.itemLeadingIcon, active: active || item.active })" />
296
+ <UAvatar v-else-if="item.avatar" :size="((props.ui?.itemLeadingAvatarSize || ui.itemLeadingAvatarSize()) as AvatarProps['size'])" v-bind="item.avatar" :class="ui.itemLeadingAvatar({ class: props.ui?.itemLeadingAvatar, active: active || item.active })" />
297
+ <UChip
298
+ v-else-if="item.chip"
299
+ :size="((props.ui?.itemLeadingChipSize || ui.itemLeadingChipSize()) as ChipProps['size'])"
300
+ inset
301
+ standalone
302
+ v-bind="item.chip"
303
+ :class="ui.itemLeadingChip({ class: props.ui?.itemLeadingChip, active: active || item.active })"
304
+ />
305
+ </slot>
306
+
307
+ <span v-if="item.labelHtml || get(item, props.labelKey as string) || !!slots[item.slot ? `${item.slot}-label` : group.slot ? `${group.slot}-label` : `item-label`]" :class="ui.itemLabel({ class: props.ui?.itemLabel, active: active || item.active })">
308
+ <slot :name="item.slot ? `${item.slot}-label` : group.slot ? `${group.slot}-label` : `item-label`" :item="item" :index="index">
309
+ <span v-if="item.prefix" :class="ui.itemLabelPrefix({ class: props.ui?.itemLabelPrefix })">{{ item.prefix }}</span>
310
+
311
+ <span :class="ui.itemLabelBase({ class: props.ui?.itemLabelBase, active: active || item.active })" v-html="item.labelHtml || get(item, props.labelKey as string)" />
312
+
313
+ <span :class="ui.itemLabelSuffix({ class: props.ui?.itemLabelSuffix, active: active || item.active })" v-html="item.suffixHtml || item.suffix" />
314
+ </slot>
315
+ </span>
311
316
312
- <span :class="ui.itemTrailing({ class: props.ui?.itemTrailing })">
313
- <slot :name="item.slot ? `${item.slot}-trailing` : group.slot ? `${group.slot}-trailing` : `item-trailing`" :item="item" :index="index">
314
- <span v-if="item.kbds?.length" :class="ui.itemTrailingKbds({ class: props.ui?.itemTrailingKbds })">
315
- <UKbd v-for="(kbd, kbdIndex) in item.kbds" :key="kbdIndex" :size="((props.ui?.itemTrailingKbdsSize || ui.itemTrailingKbdsSize()) as KbdProps['size'])" v-bind="typeof kbd === 'string' ? { value: kbd } : kbd" />
317
+ <span :class="ui.itemTrailing({ class: props.ui?.itemTrailing })">
318
+ <slot :name="item.slot ? `${item.slot}-trailing` : group.slot ? `${group.slot}-trailing` : `item-trailing`" :item="item" :index="index">
319
+ <span v-if="item.kbds?.length" :class="ui.itemTrailingKbds({ class: props.ui?.itemTrailingKbds })">
320
+ <UKbd v-for="(kbd, kbdIndex) in item.kbds" :key="kbdIndex" :size="((props.ui?.itemTrailingKbdsSize || ui.itemTrailingKbdsSize()) as KbdProps['size'])" v-bind="typeof kbd === 'string' ? { value: kbd } : kbd" />
321
+ </span>
322
+ <UIcon v-else-if="group.highlightedIcon" :name="group.highlightedIcon" :class="ui.itemTrailingHighlightedIcon({ class: props.ui?.itemTrailingHighlightedIcon })" />
323
+ </slot>
324
+
325
+ <ListboxItemIndicator as-child>
326
+ <UIcon :name="selectedIcon || appConfig.ui.icons.check" :class="ui.itemTrailingIcon({ class: props.ui?.itemTrailingIcon })" />
327
+ </ListboxItemIndicator>
316
328
</span>
317
- <UIcon v-else-if="group.highlightedIcon" :name="group.highlightedIcon" :class="ui.itemTrailingHighlightedIcon({ class: props.ui?.itemTrailingHighlightedIcon })" />
318
329
</slot>
319
-
320
- <ListboxItemIndicator as-child>
321
- <UIcon :name="selectedIcon || appConfig.ui.icons.check" :class="ui.itemTrailingIcon({ class: props.ui?.itemTrailingIcon })" />
322
- </ListboxItemIndicator>
323
- </span>
324
- </slot>
330
+ </ULinkBase>
331
+ </ULink>
325
332
</ListboxItem>
326
333
</ListboxGroup>
327
334
</div>
0 commit comments