626fbc70d8
- Migrate to eslint flat config + composite tsconfig. - Complete the asChild→as="template" refactor (remove asChild prop + :as-child bindings across components, matching Primitive's slot model). - Fix test type errors and source type-safety (useGraceArea hull/point math, FocusScope/util ref typing). Note: ~53 vue-tsc errors remain (HTML attr/event passthrough typing on transparent wrapper components + a couple of duplicate-export naming collisions) — not gated by CI (build/lint/test green); pending a component-attribute-typing design decision.
121 lines
3.5 KiB
Vue
121 lines
3.5 KiB
Vue
<script lang="ts">
|
|
import type { PrimitiveProps } from '../primitive';
|
|
import type { AcceptableValue } from './utils';
|
|
|
|
export interface ComboboxItemProps<T extends AcceptableValue = AcceptableValue> extends PrimitiveProps {
|
|
/** Item value. Selected/registered identity. */
|
|
value: T;
|
|
/** Optional explicit text for filter + typeahead. */
|
|
textValue?: string;
|
|
/** Disable this item. */
|
|
disabled?: boolean;
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts" generic="T extends AcceptableValue = AcceptableValue">
|
|
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
|
|
|
import { useForwardExpose } from '@robonen/vue';
|
|
import { useId } from '../config-provider';
|
|
import { Primitive } from '../primitive';
|
|
import { provideComboboxItemContext, useComboboxGroupContext, useComboboxRootContext } from './context';
|
|
|
|
const props = defineProps<ComboboxItemProps<T>>();
|
|
|
|
const { forwardRef, currentElement } = useForwardExpose();
|
|
const rootCtx = useComboboxRootContext();
|
|
let groupCtx: { id: { value: string } } | null = null;
|
|
try {
|
|
groupCtx = useComboboxGroupContext() as any;
|
|
}
|
|
catch {
|
|
groupCtx = null;
|
|
}
|
|
|
|
const id = useId(undefined, 'combobox-item');
|
|
const textValue = ref(props.textValue ?? '');
|
|
|
|
const isDisabled = computed(() => rootCtx.disabled.value || !!props.disabled);
|
|
const isSelected = computed(() => rootCtx.isSelected(props.value));
|
|
const isHighlighted = computed(() => rootCtx.selectedValueId.value === id.value);
|
|
const isVisible = computed(() => rootCtx.filterState.value.items.has(id.value));
|
|
|
|
function syncRegistration() {
|
|
rootCtx.onItemRegister(id.value, {
|
|
value: props.value,
|
|
textValue: textValue.value,
|
|
disabled: isDisabled.value,
|
|
});
|
|
}
|
|
|
|
onMounted(() => {
|
|
const el = currentElement.value as HTMLElement | undefined;
|
|
if (el && !props.textValue) {
|
|
textValue.value = el.textContent?.trim() ?? '';
|
|
}
|
|
syncRegistration();
|
|
if (groupCtx) rootCtx.onGroupItemRegister(groupCtx.id.value, id.value);
|
|
});
|
|
|
|
watch(() => [props.value, props.textValue, isDisabled.value], () => {
|
|
if (props.textValue) textValue.value = props.textValue;
|
|
syncRegistration();
|
|
});
|
|
|
|
onBeforeUnmount(() => {
|
|
rootCtx.onItemUnregister(id.value);
|
|
if (groupCtx) rootCtx.onGroupItemUnregister(groupCtx.id.value, id.value);
|
|
if (rootCtx.selectedValueId.value === id.value) {
|
|
rootCtx.onSelectedValueChange(undefined, undefined);
|
|
}
|
|
});
|
|
|
|
function handleClick(event: MouseEvent) {
|
|
if (isDisabled.value) return;
|
|
event.preventDefault();
|
|
rootCtx.onValueChange(props.value);
|
|
if (rootCtx.resetSearchTermOnSelect.value && !rootCtx.multiple.value) {
|
|
rootCtx.onSearchTermChange('');
|
|
rootCtx.onUserInputtedChange(false);
|
|
}
|
|
}
|
|
|
|
function handlePointerMove() {
|
|
if (isDisabled.value) return;
|
|
if (rootCtx.selectedValueId.value !== id.value) {
|
|
rootCtx.onSelectedValueChange(props.value, id.value);
|
|
}
|
|
}
|
|
|
|
provideComboboxItemContext({
|
|
id,
|
|
value: props.value,
|
|
textValue,
|
|
isSelected,
|
|
isDisabled,
|
|
});
|
|
|
|
defineExpose({ id, isVisible, isHighlighted });
|
|
</script>
|
|
|
|
<template>
|
|
<Primitive
|
|
v-show="isVisible"
|
|
:ref="forwardRef"
|
|
:id="id"
|
|
:as="props.as ?? 'div'"
|
|
role="option"
|
|
:aria-selected="isSelected"
|
|
:aria-disabled="isDisabled || undefined"
|
|
:data-state="isSelected ? 'checked' : 'unchecked'"
|
|
:data-highlighted="isHighlighted ? '' : undefined"
|
|
:data-disabled="isDisabled ? '' : undefined"
|
|
:tabindex="-1"
|
|
data-primitives-combobox-item
|
|
@click="handleClick"
|
|
@pointermove="handlePointerMove"
|
|
>
|
|
<slot :selected="isSelected" :highlighted="isHighlighted" />
|
|
</Primitive>
|
|
</template>
|