|
|
|
|
@@ -3,26 +3,19 @@
|
|
|
|
|
import * as React from "react";
|
|
|
|
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
|
|
|
import { Slot } from "@radix-ui/react-slot";
|
|
|
|
|
import {
|
|
|
|
|
Controller,
|
|
|
|
|
ControllerProps,
|
|
|
|
|
FieldPath,
|
|
|
|
|
FieldValues,
|
|
|
|
|
FormProvider,
|
|
|
|
|
useFormContext,
|
|
|
|
|
} from "react-hook-form";
|
|
|
|
|
import { Controller, ControllerProps, FieldPath, FieldValues, FormProvider, useFormContext } from "react-hook-form";
|
|
|
|
|
|
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
import { Label } from "@/components/ui/label";
|
|
|
|
|
|
|
|
|
|
const Form = FormProvider;
|
|
|
|
|
|
|
|
|
|
type FormFieldContextValue<
|
|
|
|
|
interface FormFieldContextValue<
|
|
|
|
|
TFieldValues extends FieldValues = FieldValues,
|
|
|
|
|
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>
|
|
|
|
|
> = {
|
|
|
|
|
> {
|
|
|
|
|
name: TName;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const FormFieldContext = React.createContext<FormFieldContextValue>({} as FormFieldContextValue);
|
|
|
|
|
|
|
|
|
|
@@ -62,9 +55,9 @@ const useFormField = () => {
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type FormItemContextValue = {
|
|
|
|
|
interface FormItemContextValue {
|
|
|
|
|
id: string;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const FormItemContext = React.createContext<FormItemContextValue>({} as FormItemContextValue);
|
|
|
|
|
|
|
|
|
|
@@ -87,56 +80,38 @@ const FormLabel = React.forwardRef<
|
|
|
|
|
>(({ className, ...props }, ref) => {
|
|
|
|
|
const { error, formItemId } = useFormField();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Label
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn(error && "text-destructive", className)}
|
|
|
|
|
htmlFor={formItemId}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
return <Label ref={ref} className={cn(error && "text-destructive", className)} htmlFor={formItemId} {...props} />;
|
|
|
|
|
});
|
|
|
|
|
FormLabel.displayName = "FormLabel";
|
|
|
|
|
|
|
|
|
|
const FormControl = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof Slot>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof Slot>
|
|
|
|
|
>(({ ...props }, ref) => {
|
|
|
|
|
const FormControl = React.forwardRef<React.ElementRef<typeof Slot>, React.ComponentPropsWithoutRef<typeof Slot>>(
|
|
|
|
|
({ ...props }, ref) => {
|
|
|
|
|
const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Slot
|
|
|
|
|
ref={ref}
|
|
|
|
|
id={formItemId}
|
|
|
|
|
aria-describedby={!error ? `${formDescriptionId}` : `${formDescriptionId} ${formMessageId}`}
|
|
|
|
|
aria-describedby={!error ? formDescriptionId : `${formDescriptionId} ${formMessageId}`}
|
|
|
|
|
aria-invalid={!!error}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
FormControl.displayName = "FormControl";
|
|
|
|
|
|
|
|
|
|
const FormDescription = React.forwardRef<
|
|
|
|
|
HTMLParagraphElement,
|
|
|
|
|
React.HTMLAttributes<HTMLParagraphElement>
|
|
|
|
|
>(({ className, ...props }, ref) => {
|
|
|
|
|
const FormDescription = React.forwardRef<HTMLParagraphElement, React.HTMLAttributes<HTMLParagraphElement>>(
|
|
|
|
|
({ className, ...props }, ref) => {
|
|
|
|
|
const { formDescriptionId } = useFormField();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<p
|
|
|
|
|
ref={ref}
|
|
|
|
|
id={formDescriptionId}
|
|
|
|
|
className={cn("text-sm text-muted-foreground", className)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
return <p ref={ref} id={formDescriptionId} className={cn("text-sm text-muted-foreground", className)} {...props} />;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
FormDescription.displayName = "FormDescription";
|
|
|
|
|
|
|
|
|
|
const FormMessage = React.forwardRef<
|
|
|
|
|
HTMLParagraphElement,
|
|
|
|
|
React.HTMLAttributes<HTMLParagraphElement>
|
|
|
|
|
>(({ className, children, ...props }, ref) => {
|
|
|
|
|
const FormMessage = React.forwardRef<HTMLParagraphElement, React.HTMLAttributes<HTMLParagraphElement>>(
|
|
|
|
|
({ className, children, ...props }, ref) => {
|
|
|
|
|
const { error, formMessageId } = useFormField();
|
|
|
|
|
const body = error ? String(error?.message) : children;
|
|
|
|
|
|
|
|
|
|
@@ -145,25 +120,12 @@ const FormMessage = React.forwardRef<
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<p
|
|
|
|
|
ref={ref}
|
|
|
|
|
id={formMessageId}
|
|
|
|
|
className={cn("text-sm font-medium text-destructive", className)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<p ref={ref} id={formMessageId} className={cn("text-sm font-medium text-destructive", className)} {...props}>
|
|
|
|
|
{body}
|
|
|
|
|
</p>
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
FormMessage.displayName = "FormMessage";
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
useFormField,
|
|
|
|
|
Form,
|
|
|
|
|
FormItem,
|
|
|
|
|
FormLabel,
|
|
|
|
|
FormControl,
|
|
|
|
|
FormDescription,
|
|
|
|
|
FormMessage,
|
|
|
|
|
FormField,
|
|
|
|
|
};
|
|
|
|
|
export { useFormField, Form, FormItem, FormLabel, FormControl, FormDescription, FormMessage, FormField };
|
|
|
|
|
|