Files
tools/vue/primitives/src/combobox/ComboboxGroup.vue
T

44 lines
1.2 KiB
Vue

<script lang="ts">
import type { PrimitiveProps } from '../primitive';
/**
* Groups related items under a shared ComboboxLabel. Hides itself automatically when none
* of its items survive the current filter.
*/
export interface ComboboxGroupProps extends PrimitiveProps {}
</script>
<script setup lang="ts">
import { computed, onBeforeUnmount, onMounted } from 'vue';
import { useForwardExpose } from '@robonen/vue';
import { useId } from '../config-provider';
import { Primitive } from '../primitive';
import { provideComboboxGroupContext, useComboboxRootContext } from './context';
const { as = 'div' } = defineProps<ComboboxGroupProps>();
const { forwardRef } = useForwardExpose();
const rootCtx = useComboboxRootContext();
const id = useId(undefined, 'combobox-group');
const isVisible = computed(() => rootCtx.filterState.value.groups.has(id.value));
onMounted(() => rootCtx.onGroupRegister(id.value));
onBeforeUnmount(() => rootCtx.onGroupUnregister(id.value));
provideComboboxGroupContext({ id });
</script>
<template>
<Primitive
v-show="isVisible"
:ref="forwardRef"
:as="as"
role="group"
:aria-labelledby="id"
>
<slot />
</Primitive>
</template>