-
-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Combobox): defer highlighted item scrollIntoView (#1328)
* fix(Combobox): use nextTick when scrolling highlighted item into view * chore(Combobox): add scrolling combobox story * fix(Combobox): await nextTick before focusing selected element, instead
- Loading branch information
Showing
2 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
packages/radix-vue/src/Combobox/story/ComboboxScrolling.story.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<script setup lang="ts"> | ||
import { ref } from 'vue' | ||
import { ComboboxAnchor, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxItemIndicator, ComboboxLabel, ComboboxRoot, ComboboxSeparator, ComboboxTrigger, ComboboxViewport } from '..' | ||
import { Icon } from '@iconify/vue' | ||
const v = ref('Carrot') | ||
const selectedValue = ref(undefined) | ||
const options = ['Apple', 'Banana', 'Blueberry', 'Grapes', 'Pineapple'] | ||
const vegetables = ['Aubergine', 'Broccoli', 'Carrot', 'Courgette', 'Leek'] | ||
</script> | ||
|
||
<template> | ||
<Story | ||
title="Combobox/Scrolling" | ||
:layout="{ type: 'single', iframe: false }" | ||
> | ||
<Variant title="default"> | ||
<ComboboxRoot | ||
v-model="v" | ||
v-model:selected-value="selectedValue" | ||
> | ||
<ComboboxAnchor class="min-w-[160px] inline-flex items-center justify-between rounded px-[15px] text-[13px] leading-none h-[35px] gap-[5px] bg-white text-grass11 shadow-[0_2px_10px] shadow-black/10 hover:bg-mauve3 focus:shadow-[0_0_0_2px] focus:shadow-black data-[placeholder]:text-grass9 outline-none"> | ||
<ComboboxInput | ||
class="bg-transparent outline-none text-grass11 placeholder-gray-400" | ||
placeholder="Test" | ||
/> | ||
<ComboboxTrigger> | ||
<Icon | ||
icon="radix-icons:chevron-down" | ||
class="h-4 w-4 text-grass11" | ||
/> | ||
</ComboboxTrigger> | ||
</ComboboxAnchor> | ||
<ComboboxContent class="max-h-40 mt-2 min-w-[160px] bg-white overflow-hidden rounded shadow-[0px_10px_38px_-10px_rgba(22,_23,_24,_0.35),_0px_10px_20px_-15px_rgba(22,_23,_24,_0.2)] will-change-[opacity,transform] data-[side=top]:animate-slideDownAndFade data-[side=right]:animate-slideLeftAndFade data-[side=bottom]:animate-slideUpAndFade data-[side=left]:animate-slideRightAndFade"> | ||
<ComboboxViewport class="p-[5px]"> | ||
<ComboboxEmpty class="text-gray-400 text-xs font-medium text-center py-2" /> | ||
|
||
<ComboboxGroup> | ||
<ComboboxLabel class="px-[25px] text-xs leading-[25px] text-mauve11"> | ||
Fruits | ||
</ComboboxLabel> | ||
|
||
<ComboboxItem | ||
v-for="(option, index) in options" | ||
:key="index" | ||
class="text-[13px] leading-none text-grass11 rounded-[3px] flex items-center h-[25px] pr-[35px] pl-[25px] relative select-none data-[disabled]:text-mauve8 data-[disabled]:pointer-events-none data-[highlighted]:outline-none data-[highlighted]:bg-grass9 data-[highlighted]:text-grass1" | ||
:value="option" | ||
> | ||
<ComboboxItemIndicator | ||
class="absolute left-0 w-[25px] inline-flex items-center justify-center" | ||
> | ||
<Icon icon="radix-icons:check" /> | ||
</ComboboxItemIndicator> | ||
<span> | ||
{{ option }} | ||
</span> | ||
</ComboboxItem> | ||
<ComboboxSeparator class="h-[1px] bg-grass6 m-[5px]" /> | ||
</ComboboxGroup> | ||
|
||
<ComboboxGroup> | ||
<ComboboxLabel | ||
class="px-[25px] text-xs leading-[25px] text-mauve11" | ||
> | ||
Vegetables | ||
</ComboboxLabel> | ||
<ComboboxItem | ||
v-for="(option, index) in vegetables" | ||
:key="index" | ||
class="text-[13px] leading-none text-grass11 rounded-[3px] flex items-center h-[25px] pr-[35px] pl-[25px] relative select-none data-[disabled]:text-mauve8 data-[disabled]:pointer-events-none data-[highlighted]:outline-none data-[highlighted]:bg-grass9 data-[highlighted]:text-grass1" | ||
:value="option" | ||
> | ||
<ComboboxItemIndicator | ||
class="absolute left-0 w-[25px] inline-flex items-center justify-center" | ||
> | ||
<Icon icon="radix-icons:check" /> | ||
</ComboboxItemIndicator> | ||
<span> | ||
{{ option }} | ||
</span> | ||
</ComboboxItem> | ||
</ComboboxGroup> | ||
</ComboboxViewport> | ||
</ComboboxContent> | ||
</ComboboxRoot> | ||
</Variant> | ||
</Story> | ||
</template> |