98 lines
2.1 KiB
TypeScript
98 lines
2.1 KiB
TypeScript
import {
|
|
computed,
|
|
defineComponent,
|
|
inject,
|
|
onMounted,
|
|
onUnmounted,
|
|
provide,
|
|
ref,
|
|
unref,
|
|
type ComputedRef,
|
|
type InjectionKey,
|
|
type Ref,
|
|
} from 'vue'
|
|
import { useId } from '../../hooks/use-id'
|
|
import { render } from '../../utils/render'
|
|
|
|
// ---
|
|
|
|
let DescriptionContext = Symbol('DescriptionContext') as InjectionKey<{
|
|
register(value: string): () => void
|
|
slot: Ref<Record<string, any>>
|
|
name: string
|
|
props: Record<string, any>
|
|
}>
|
|
|
|
function useDescriptionContext() {
|
|
let context = inject(DescriptionContext, null)
|
|
if (context === null) {
|
|
throw new Error('Missing parent')
|
|
}
|
|
return context
|
|
}
|
|
|
|
export function useDescriptions({
|
|
slot = ref({}),
|
|
name = 'Description',
|
|
props = {},
|
|
}: {
|
|
slot?: Ref<Record<string, unknown>>
|
|
name?: string
|
|
props?: Record<string, unknown>
|
|
} = {}): ComputedRef<string | undefined> {
|
|
let descriptionIds = ref<string[]>([])
|
|
|
|
function register(value: string) {
|
|
descriptionIds.value.push(value)
|
|
|
|
return () => {
|
|
let idx = descriptionIds.value.indexOf(value)
|
|
if (idx === -1) return
|
|
descriptionIds.value.splice(idx, 1)
|
|
}
|
|
}
|
|
|
|
provide(DescriptionContext, { register, slot, name, props })
|
|
|
|
// The actual id's as string or undefined.
|
|
return computed(() =>
|
|
descriptionIds.value.length > 0 ? descriptionIds.value.join(' ') : undefined
|
|
)
|
|
}
|
|
|
|
// ---
|
|
|
|
export let Description = defineComponent({
|
|
name: 'Description',
|
|
props: {
|
|
as: { type: [Object, String], default: 'p' },
|
|
id: { type: String, default: () => `headlessui-description-${useId()}` },
|
|
},
|
|
setup(myProps, { attrs, slots }) {
|
|
let context = useDescriptionContext()
|
|
|
|
onMounted(() => onUnmounted(context.register(myProps.id)))
|
|
|
|
return () => {
|
|
let { name = 'Description', slot = ref({}), props = {} } = context
|
|
let { id, ...theirProps } = myProps
|
|
let ourProps = {
|
|
...Object.entries(props).reduce(
|
|
(acc, [key, value]) => Object.assign(acc, { [key]: unref(value) }),
|
|
{}
|
|
),
|
|
id,
|
|
}
|
|
|
|
return render({
|
|
ourProps,
|
|
theirProps,
|
|
slot: slot.value,
|
|
attrs,
|
|
slots,
|
|
name,
|
|
})
|
|
}
|
|
},
|
|
})
|