Skip to content

Commit 3765537

Browse files
committedNov 25, 2024·
feat(CommandPalette): add active field on items for consistency
1 parent 7ab88d3 commit 3765537

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed
 

‎docs/content/3.components/command-palette.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Each group takes some `items` as an array of objects with the following properti
4242
- `avatar?: AvatarProps`{lang="ts-type"}
4343
- `chip?: ChipProps`{lang="ts-type"}
4444
- `kbds?: string[] | KbdProps[]`{lang="ts-type"}
45+
- `active?: boolean`{lang="ts-type"}
4546
- `loading?: boolean`{lang="ts-type"}
4647
- `disabled?: boolean`{lang="ts-type"}
4748
- [`slot?: string`{lang="ts-type"}](#with-custom-slot)

‎src/runtime/components/CommandPalette.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export interface CommandPaletteItem {
2323
avatar?: AvatarProps
2424
chip?: ChipProps
2525
kbds?: KbdProps['value'][] | KbdProps[]
26+
active?: boolean
2627
loading?: boolean
2728
disabled?: boolean
2829
slot?: string
@@ -276,7 +277,7 @@ const groups = computed(() => {
276277
:key="`group-${groupIndex}-${index}`"
277278
:value="omit(item, ['matches' as any, 'group' as any, 'onSelect', 'labelHtml', 'suffixHtml'])"
278279
:disabled="item.disabled"
279-
:class="ui.item({ class: props.ui?.item })"
280+
:class="ui.item({ class: props.ui?.item, active: item.active })"
280281
@select="item.onSelect"
281282
>
282283
<slot :name="item.slot || group.slot || 'item'" :item="item" :index="index">

‎src/theme/command-palette.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export default (options: Required<ModuleOptions>) => ({
1010
group: 'p-1 isolate',
1111
empty: 'py-6 text-center text-sm text-[var(--ui-text-muted)]',
1212
label: 'px-2 py-1.5 text-xs font-semibold text-[var(--ui-text-highlighted)]',
13-
item: ['group relative w-full flex items-center gap-2 px-2 py-1.5 text-sm select-none outline-none before:absolute before:z-[-1] before:inset-px before:rounded-[calc(var(--ui-radius)*1.5)] data-disabled:cursor-not-allowed data-disabled:opacity-75 text-[var(--ui-text)] data-highlighted:text-[var(--ui-text-highlighted)] data-highlighted:before:bg-[var(--ui-bg-elevated)]/50', options.theme.transitions && 'transition-colors before:transition-colors'],
14-
itemLeadingIcon: ['shrink-0 size-5 text-[var(--ui-text-dimmed)] group-data-highlighted:text-[var(--ui-text)]', options.theme.transitions && 'transition-colors'],
13+
item: 'group relative w-full flex items-center gap-2 px-2 py-1.5 text-sm select-none outline-none before:absolute before:z-[-1] before:inset-px before:rounded-[calc(var(--ui-radius)*1.5)] data-disabled:cursor-not-allowed data-disabled:opacity-75',
14+
itemLeadingIcon: 'shrink-0 size-5',
1515
itemLeadingAvatar: 'shrink-0',
1616
itemLeadingAvatarSize: '2xs',
1717
itemLeadingChip: 'shrink-0 size-5',
@@ -27,6 +27,16 @@ export default (options: Required<ModuleOptions>) => ({
2727
itemLabelSuffix: 'text-[var(--ui-text-dimmed)] [&>mark]:text-[var(--ui-bg)] [&>mark]:bg-[var(--ui-primary)]'
2828
},
2929
variants: {
30+
active: {
31+
true: {
32+
item: 'text-[var(--ui-text-highlighted)] before:bg-[var(--ui-bg-elevated)]',
33+
itemLeadingIcon: 'text-[var(--ui-text)]'
34+
},
35+
false: {
36+
item: ['text-[var(--ui-text)] data-highlighted:text-[var(--ui-text-highlighted)] data-highlighted:before:bg-[var(--ui-bg-elevated)]/50', options.theme.transitions && 'transition-colors before:transition-colors'],
37+
itemLeadingIcon: ['text-[var(--ui-text-dimmed)] group-data-highlighted:text-[var(--ui-text)]', options.theme.transitions && 'transition-colors']
38+
}
39+
},
3040
loading: {
3141
true: {
3242
itemLeadingIcon: 'animate-spin'

0 commit comments

Comments
 (0)