import * as React from 'react'; import * as LabelPrimitive from '@radix-ui/react-label'; import { Slot } from '@radix-ui/react-slot'; import { Controller, FormProvider, useFormContext, useFormState, type ControllerProps, type FieldPath, type FieldValues } from 'react-hook-form'; import { cn } from '@/lib/utils'; import { Label } from '@/components/ui/label'; const Form = FormProvider; type FormFieldContextValue = FieldPath> = { name: TName; }; const FormFieldContext = React.createContext({} as FormFieldContextValue); const FormField = = FieldPath>({ ...props }: ControllerProps) => { return ( ); }; type FormItemContextValue = { id: string; }; const FormItemContext = React.createContext({} as FormItemContextValue); const useFormField = () => { const fieldContext = React.useContext(FormFieldContext); const itemContext = React.useContext(FormItemContext); const { getFieldState } = useFormContext(); const formState = useFormState({ name: fieldContext.name }); const fieldState = getFieldState(fieldContext.name, formState); if (!fieldContext) { throw new Error('useFormField should be used within '); } const { id } = itemContext; return { id, name: fieldContext.name, formItemId: `${id}-form-item`, formDescriptionId: `${id}-form-item-description`, formMessageId: `${id}-form-item-message`, ...fieldState, }; }; function FormItem({ className, ...props }: React.ComponentProps<'div'>) { const id = React.useId(); return (
); } function FormLabel({ className, ...props }: React.ComponentProps) { const { error, formItemId } = useFormField(); return (