// Inspired from https://github.com/tailwindlabs/headlessui/issues/2913 // as the alternative, and a fallback for Vue version < 3.5 import { injectConfigProviderContext } from '@/ConfigProvider/ConfigProvider.vue' import * as vue from 'vue' let count = 0 /** * The `useId` function generates a unique identifier using a provided deterministic ID or a default * one prefixed with "reka-", or the provided one via `useId` props from ``. * @param {string | null | undefined} [deterministicId] - The `useId` function you provided takes an * optional parameter `deterministicId`, which can be a string, null, or undefined. If * `deterministicId` is provided, the function will return it. Otherwise, it will generate an id using * the `useId` function obtained */ export function useId(deterministicId?: string | null | undefined, prefix = 'reka') { if (deterministicId) return deterministicId const configProviderContext = injectConfigProviderContext({ useId: undefined }) if (vue.useId) { return `${prefix}-${vue.useId()}` } else if (configProviderContext.useId) { return `${prefix}-${configProviderContext.useId()}` } return `${prefix}-${++count}` }