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

form-tanstack-checkbox.tsx — ui Source File

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

File tsx ComponentRegistry ChartRegistry 7 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  f7e15869_ccfe_4157_f9ae_321a69a23f51["form-tanstack-checkbox.tsx"]
  32ce9c09_437f_bced_67c5_ff04d8757a76["react-form"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> 32ce9c09_437f_bced_67c5_ff04d8757a76
  e750d152_1191_1793_7244_99c7f9c595f4["sonner"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> e750d152_1191_1793_7244_99c7f9c595f4
  6802ce19_522d_e5fb_e458_8826d9f6952e["zod"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> 6802ce19_522d_e5fb_e458_8826d9f6952e
  57e86e45_ac6e_7278_be08_9092724e8401["button"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> 57e86e45_ac6e_7278_be08_9092724e8401
  c6d6139d_ea69_3d79_5004_68419bae2ac0["card"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> c6d6139d_ea69_3d79_5004_68419bae2ac0
  4f6bcac7_12b3_b724_9762_64ace071aa20["checkbox"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> 4f6bcac7_12b3_b724_9762_64ace071aa20
  169af77a_46c3_8fec_4801_f34a0f1a3471["field"]
  f7e15869_ccfe_4157_f9ae_321a69a23f51 --> 169af77a_46c3_8fec_4801_f34a0f1a3471
  style f7e15869_ccfe_4157_f9ae_321a69a23f51 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

/* eslint-disable react/no-children-prop */
"use client"

import { useForm } from "@tanstack/react-form"
import { toast } from "sonner"
import * as z from "zod"

import { Button } from "@/registry/new-york-v4/ui/button"
import {
  Card,
  CardContent,
  CardDescription,
  CardFooter,
  CardHeader,
  CardTitle,
} from "@/registry/new-york-v4/ui/card"
import { Checkbox } from "@/registry/new-york-v4/ui/checkbox"
import {
  Field,
  FieldDescription,
  FieldError,
  FieldGroup,
  FieldLabel,
  FieldLegend,
  FieldSeparator,
  FieldSet,
} from "@/registry/new-york-v4/ui/field"

const tasks = [
  {
    id: "push",
    label: "Push notifications",
  },
  {
    id: "email",
    label: "Email notifications",
  },
] as const

const formSchema = z.object({
  responses: z.boolean(),
  tasks: z
    .array(z.string())
    .min(1, "Please select at least one notification type.")
    .refine(
      (value) => value.every((task) => tasks.some((t) => t.id === task)),
      {
        message: "Invalid notification type selected.",
      }
    ),
})

export default function FormTanstackCheckbox() {
  const form = useForm({
    defaultValues: {
      responses: true,
      tasks: [] as string[],
    },
    validators: {
      onSubmit: formSchema,
// ... (141 more lines)

Subdomains

Dependencies

  • button
  • card
  • checkbox
  • field
  • react-form
  • sonner
  • zod

Frequently Asked Questions

What does form-tanstack-checkbox.tsx do?
form-tanstack-checkbox.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 form-tanstack-checkbox.tsx?
form-tanstack-checkbox.tsx defines 1 function(s): FormTanstackCheckbox.
What does form-tanstack-checkbox.tsx depend on?
form-tanstack-checkbox.tsx imports 7 module(s): button, card, checkbox, field, react-form, sonner, zod.
Where is form-tanstack-checkbox.tsx in the architecture?
form-tanstack-checkbox.tsx is located at apps/v4/registry/new-york-v4/examples/form-tanstack-checkbox.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/examples).

Analyze Your Own Codebase

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

Try Supermodel Free