form-tanstack-input.tsx — ui Source File
Architecture documentation for form-tanstack-input.tsx, a tsx file in the ui codebase. 7 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 7e69ebed_98e4_a09b_b28e_1801c7683c88["form-tanstack-input.tsx"] 32ce9c09_437f_bced_67c5_ff04d8757a76["react-form"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> 32ce9c09_437f_bced_67c5_ff04d8757a76 e750d152_1191_1793_7244_99c7f9c595f4["sonner"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> e750d152_1191_1793_7244_99c7f9c595f4 6802ce19_522d_e5fb_e458_8826d9f6952e["zod"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> 6802ce19_522d_e5fb_e458_8826d9f6952e 57e86e45_ac6e_7278_be08_9092724e8401["button"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> 57e86e45_ac6e_7278_be08_9092724e8401 c6d6139d_ea69_3d79_5004_68419bae2ac0["card"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> c6d6139d_ea69_3d79_5004_68419bae2ac0 169af77a_46c3_8fec_4801_f34a0f1a3471["field"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> 169af77a_46c3_8fec_4801_f34a0f1a3471 80cf663d_a411_487c_d69e_ac9d405cd2ec["input"] 7e69ebed_98e4_a09b_b28e_1801c7683c88 --> 80cf663d_a411_487c_d69e_ac9d405cd2ec style 7e69ebed_98e4_a09b_b28e_1801c7683c88 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 {
Field,
FieldDescription,
FieldError,
FieldGroup,
FieldLabel,
} from "@/registry/new-york-v4/ui/field"
import { Input } from "@/registry/new-york-v4/ui/input"
const formSchema = z.object({
username: z
.string()
.min(3, "Username must be at least 3 characters.")
.max(10, "Username must be at most 10 characters.")
.regex(
/^[a-zA-Z0-9_]+$/,
"Username can only contain letters, numbers, and underscores."
),
})
export default function FormTanstackInput() {
const form = useForm({
defaultValues: {
username: "",
},
validators: {
onSubmit: formSchema,
},
onSubmit: async ({ value }) => {
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(value, null, 2)}</code>
</pre>
),
position: "bottom-right",
classNames: {
content: "flex flex-col gap-2",
},
style: {
"--border-radius": "calc(var(--radius) + 4px)",
} as React.CSSProperties,
})
},
// ... (68 more lines)
Domain
Subdomains
Functions
Dependencies
- button
- card
- field
- input
- react-form
- sonner
- zod
Source
Frequently Asked Questions
What does form-tanstack-input.tsx do?
form-tanstack-input.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-input.tsx?
form-tanstack-input.tsx defines 1 function(s): FormTanstackInput.
What does form-tanstack-input.tsx depend on?
form-tanstack-input.tsx imports 7 module(s): button, card, field, input, react-form, sonner, zod.
Where is form-tanstack-input.tsx in the architecture?
form-tanstack-input.tsx is located at apps/v4/registry/new-york-v4/examples/form-tanstack-input.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