FormRhfCheckbox() — ui Function Reference
Architecture documentation for the FormRhfCheckbox() function in form-rhf-checkbox.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 22b237bf_6028_ce0b_0870_49c7f2a2a2ad["FormRhfCheckbox()"] 34e5a8d7_973b_4a24_991e_653527c30c9e["form-rhf-checkbox.tsx"] 22b237bf_6028_ce0b_0870_49c7f2a2a2ad -->|defined in| 34e5a8d7_973b_4a24_991e_653527c30c9e style 22b237bf_6028_ce0b_0870_49c7f2a2a2ad fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/new-york-v4/examples/form-rhf-checkbox.tsx lines 54–181
export default function FormRhfCheckbox() {
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
responses: true,
tasks: [],
},
})
function onSubmit(data: z.infer<typeof formSchema>) {
toast("You submitted the following values:", {
description: (
<pre className="bg-code text-code-foreground mt-2 w-[320px] overflow-x-auto rounded-md p-4">
<code>{JSON.stringify(data, null, 2)}</code>
</pre>
),
position: "bottom-right",
classNames: {
content: "flex flex-col gap-2",
},
style: {
"--border-radius": "calc(var(--radius) + 4px)",
} as React.CSSProperties,
})
}
return (
<Card className="w-full sm:max-w-md">
<CardHeader>
<CardTitle>Notifications</CardTitle>
<CardDescription>Manage your notification preferences.</CardDescription>
</CardHeader>
<CardContent>
<form id="form-rhf-checkbox" onSubmit={form.handleSubmit(onSubmit)}>
<FieldGroup>
<Controller
name="responses"
control={form.control}
render={({ field, fieldState }) => (
<FieldSet data-invalid={fieldState.invalid}>
<FieldLegend variant="label">Responses</FieldLegend>
<FieldDescription>
Get notified for requests that take time, like research or
image generation.
</FieldDescription>
<FieldGroup data-slot="checkbox-group">
<Field orientation="horizontal">
<Checkbox
id="form-rhf-checkbox-responses"
name={field.name}
checked={field.value}
onCheckedChange={field.onChange}
disabled
/>
<FieldLabel
htmlFor="form-rhf-checkbox-responses"
className="font-normal"
>
Push notifications
</FieldLabel>
</Field>
</FieldGroup>
{fieldState.invalid && (
<FieldError errors={[fieldState.error]} />
)}
</FieldSet>
)}
/>
<FieldSeparator />
<Controller
name="tasks"
control={form.control}
render={({ field, fieldState }) => (
<FieldSet data-invalid={fieldState.invalid}>
<FieldLegend variant="label">Tasks</FieldLegend>
<FieldDescription>
Get notified when tasks you've created have updates.
</FieldDescription>
<FieldGroup data-slot="checkbox-group">
{tasks.map((task) => (
<Field
Domain
Subdomains
Source
Frequently Asked Questions
What does FormRhfCheckbox() do?
FormRhfCheckbox() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/examples/form-rhf-checkbox.tsx.
Where is FormRhfCheckbox() defined?
FormRhfCheckbox() is defined in apps/v4/registry/new-york-v4/examples/form-rhf-checkbox.tsx at line 54.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free