Home / File/ checkbox-form-single.tsx — ui Source File

checkbox-form-single.tsx — ui Source File

Architecture documentation for checkbox-form-single.tsx, a tsx file in the ui codebase. 8 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 8 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  6c90799c_841d_83e6_9937_a0f8cb1870a6["checkbox-form-single.tsx"]
  ba3d44f3_7b34_f9cc_6283_44817785c0df["link"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> ba3d44f3_7b34_f9cc_6283_44817785c0df
  3d40a3bf_c062_4304_329a_00b1b72e8523["zod"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> 3d40a3bf_c062_4304_329a_00b1b72e8523
  6d65354d_8f59_2cfc_4783_24b2eb870bc4["react-hook-form"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> 6d65354d_8f59_2cfc_4783_24b2eb870bc4
  6802ce19_522d_e5fb_e458_8826d9f6952e["zod"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> 6802ce19_522d_e5fb_e458_8826d9f6952e
  1d9c6c27_a443_c5fd_35f3_e80b7125bc9f["use-toast"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> 1d9c6c27_a443_c5fd_35f3_e80b7125bc9f
  d418ad18_b947_f4e5_6e4c_01100d7a63e4["button"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> d418ad18_b947_f4e5_6e4c_01100d7a63e4
  77366ecd_665f_1a24_5286_cfd88309c336["checkbox"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> 77366ecd_665f_1a24_5286_cfd88309c336
  2f59b429_1e60_57e1_0581_cc5440e0bd30["form"]
  6c90799c_841d_83e6_9937_a0f8cb1870a6 --> 2f59b429_1e60_57e1_0581_cc5440e0bd30
  style 6c90799c_841d_83e6_9937_a0f8cb1870a6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import Link from "next/link"
import { zodResolver } from "@hookform/resolvers/zod"
import { useForm } from "react-hook-form"
import { z } from "zod"

import { toast } from "@/registry/default/hooks/use-toast"
import { Button } from "@/registry/default/ui/button"
import { Checkbox } from "@/registry/default/ui/checkbox"
import {
  Form,
  FormControl,
  FormDescription,
  FormField,
  FormItem,
  FormLabel,
} from "@/registry/default/ui/form"

const FormSchema = z.object({
  mobile: z.boolean().default(false).optional(),
})

export default function CheckboxReactHookFormSingle() {
  const form = useForm<z.infer<typeof FormSchema>>({
    resolver: zodResolver(FormSchema),
    defaultValues: {
      mobile: true,
    },
  })

  function onSubmit(data: z.infer<typeof FormSchema>) {
    toast({
      title: "You submitted the following values:",
      description: (
        <pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4">
          <code className="text-white">{JSON.stringify(data, null, 2)}</code>
        </pre>
      ),
    })
  }

  return (
    <Form {...form}>
      <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
        <FormField
          control={form.control}
          name="mobile"
          render={({ field }) => (
            <FormItem className="flex flex-row items-start space-x-3 space-y-0 rounded-md border p-4">
              <FormControl>
                <Checkbox
                  checked={field.value}
                  onCheckedChange={field.onChange}
                />
              </FormControl>
              <div className="space-y-1 leading-none">
                <FormLabel>
                  Use different settings for my mobile devices
                </FormLabel>
                <FormDescription>
                  You can manage your mobile notifications in the{" "}
                  <Link href="/examples/forms">mobile settings</Link> page.
                </FormDescription>
              </div>
            </FormItem>
          )}
        />
        <Button type="submit">Submit</Button>
      </form>
    </Form>
  )
}

Subdomains

Dependencies

  • button
  • checkbox
  • form
  • link
  • react-hook-form
  • use-toast
  • zod
  • zod

Frequently Asked Questions

What does checkbox-form-single.tsx do?
checkbox-form-single.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in checkbox-form-single.tsx?
checkbox-form-single.tsx defines 1 function(s): CheckboxReactHookFormSingle.
What does checkbox-form-single.tsx depend on?
checkbox-form-single.tsx imports 8 module(s): button, checkbox, form, link, react-hook-form, use-toast, zod, zod.
Where is checkbox-form-single.tsx in the architecture?
checkbox-form-single.tsx is located at deprecated/www/registry/default/examples/checkbox-form-single.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/default/examples).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free