Home / File/ textarea-form.tsx — ui Source File

textarea-form.tsx — ui Source File

Architecture documentation for textarea-form.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
  059f3e90_1daa_d83e_45e7_519e8fcc5313["textarea-form.tsx"]
  3d40a3bf_c062_4304_329a_00b1b72e8523["zod"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> 3d40a3bf_c062_4304_329a_00b1b72e8523
  6d65354d_8f59_2cfc_4783_24b2eb870bc4["react-hook-form"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> 6d65354d_8f59_2cfc_4783_24b2eb870bc4
  6802ce19_522d_e5fb_e458_8826d9f6952e["zod"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> 6802ce19_522d_e5fb_e458_8826d9f6952e
  64d95022_f8e1_3e94_bb97_22b3ebca757e["use-toast"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> 64d95022_f8e1_3e94_bb97_22b3ebca757e
  aa2f3ec6_f291_3763_88ec_65a3f5ad5939["button"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> aa2f3ec6_f291_3763_88ec_65a3f5ad5939
  7a6b0be4_eca5_4970_1a93_79d670ef529e["form"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> 7a6b0be4_eca5_4970_1a93_79d670ef529e
  11676f4c_1cc5_0c74_a596_96328025a3d7["textarea"]
  059f3e90_1daa_d83e_45e7_519e8fcc5313 --> 11676f4c_1cc5_0c74_a596_96328025a3d7
  style 059f3e90_1daa_d83e_45e7_519e8fcc5313 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

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

import { toast } from "@/registry/new-york/hooks/use-toast"
import { Button } from "@/registry/new-york/ui/button"
import {
  Form,
  FormControl,
  FormDescription,
  FormField,
  FormItem,
  FormLabel,
  FormMessage,
} from "@/registry/new-york/ui/form"
import { Textarea } from "@/registry/new-york/ui/textarea"

const FormSchema = z.object({
  bio: z
    .string()
    .min(10, {
      message: "Bio must be at least 10 characters.",
    })
    .max(160, {
      message: "Bio must not be longer than 30 characters.",
    }),
})

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

  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="w-2/3 space-y-6">
        <FormField
          control={form.control}
          name="bio"
          render={({ field }) => (
            <FormItem>
              <FormLabel>Bio</FormLabel>
              <FormControl>
                <Textarea
                  placeholder="Tell us a little bit about yourself"
                  className="resize-none"
                  {...field}
                />
              </FormControl>
              <FormDescription>
                You can <span>@mention</span> other users and organizations.
              </FormDescription>
              <FormMessage />
            </FormItem>
          )}
        />
        <Button type="submit">Submit</Button>
      </form>
    </Form>
  )
}

Subdomains

Functions

Dependencies

  • button
  • form
  • react-hook-form
  • textarea
  • use-toast
  • zod
  • zod

Frequently Asked Questions

What does textarea-form.tsx do?
textarea-form.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 textarea-form.tsx?
textarea-form.tsx defines 1 function(s): TextareaForm.
What does textarea-form.tsx depend on?
textarea-form.tsx imports 7 module(s): button, form, react-hook-form, textarea, use-toast, zod, zod.
Where is textarea-form.tsx in the architecture?
textarea-form.tsx is located at deprecated/www/registry/new-york/examples/textarea-form.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/new-york/examples).

Analyze Your Own Codebase

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

Try Supermodel Free