mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 14:35:09 +00:00
* feat(v4): update colors * fix: sonner button * feat(shadcn): update base colors to oklch * fix: button gaps * fix: sidebar and chart * feat: update ring colors * feat(v4): neutral color and fixes * fix: fonts * chore: changeset * fix: revert utils
400 lines
13 KiB
TypeScript
400 lines
13 KiB
TypeScript
"use client"
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod"
|
|
import { format } from "date-fns"
|
|
import { CalendarIcon } from "lucide-react"
|
|
import { useForm } from "react-hook-form"
|
|
import { toast } from "sonner"
|
|
import { z } from "zod"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { Button } from "@/registry/new-york-v4/ui/button"
|
|
import { Calendar } from "@/registry/new-york-v4/ui/calendar"
|
|
import { Checkbox } from "@/registry/new-york-v4/ui/checkbox"
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/registry/new-york-v4/ui/form"
|
|
import { Input } from "@/registry/new-york-v4/ui/input"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/registry/new-york-v4/ui/popover"
|
|
import {
|
|
RadioGroup,
|
|
RadioGroupItem,
|
|
} from "@/registry/new-york-v4/ui/radio-group"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/registry/new-york-v4/ui/select"
|
|
import { Switch } from "@/registry/new-york-v4/ui/switch"
|
|
import { Textarea } from "@/registry/new-york-v4/ui/textarea"
|
|
|
|
const items = [
|
|
{
|
|
id: "recents",
|
|
label: "Recents",
|
|
},
|
|
{
|
|
id: "home",
|
|
label: "Home",
|
|
},
|
|
{
|
|
id: "applications",
|
|
label: "Applications",
|
|
},
|
|
{
|
|
id: "desktop",
|
|
label: "Desktop",
|
|
},
|
|
{
|
|
id: "downloads",
|
|
label: "Downloads",
|
|
},
|
|
{
|
|
id: "documents",
|
|
label: "Documents",
|
|
},
|
|
] as const
|
|
|
|
const FormSchema = z.object({
|
|
username: z.string().min(2, {
|
|
message: "Username must be at least 2 characters.",
|
|
}),
|
|
bio: z
|
|
.string()
|
|
.min(10, {
|
|
message: "Bio must be at least 10 characters.",
|
|
})
|
|
.max(160, {
|
|
message: "Bio must not be longer than 30 characters.",
|
|
}),
|
|
email: z
|
|
.string({
|
|
required_error: "Please select an email to display.",
|
|
})
|
|
.email(),
|
|
type: z.enum(["all", "mentions", "none"], {
|
|
required_error: "You need to select a notification type.",
|
|
}),
|
|
mobile: z.boolean().default(false).optional(),
|
|
items: z.array(z.string()).refine((value) => value.some((item) => item), {
|
|
message: "You have to select at least one item.",
|
|
}),
|
|
dob: z.date({
|
|
required_error: "A date of birth is required.",
|
|
}),
|
|
marketing_emails: z.boolean().default(false).optional(),
|
|
security_emails: z.boolean(),
|
|
})
|
|
|
|
export function FormDemo() {
|
|
const form = useForm<z.infer<typeof FormSchema>>({
|
|
resolver: zodResolver(FormSchema),
|
|
defaultValues: {
|
|
username: "",
|
|
items: ["recents", "home"],
|
|
},
|
|
})
|
|
|
|
function onSubmit(data: z.infer<typeof FormSchema>) {
|
|
toast("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="grid w-full max-w-sm gap-6"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="shadcn" {...field} />
|
|
</FormControl>
|
|
<FormDescription>
|
|
This is your public display name.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<Select onValueChange={field.onChange} defaultValue={field.value}>
|
|
<FormControl>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select a verified email to display" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
<SelectContent>
|
|
<SelectItem value="m@example.com">m@example.com</SelectItem>
|
|
<SelectItem value="m@google.com">m@google.com</SelectItem>
|
|
<SelectItem value="m@support.com">m@support.com</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormDescription>
|
|
You can manage email addresses in your email settings.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<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>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="type"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-col gap-3">
|
|
<FormLabel>Notify me about...</FormLabel>
|
|
<FormControl>
|
|
<RadioGroup
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value}
|
|
className="flex flex-col gap-3"
|
|
>
|
|
<FormItem className="flex items-center gap-2">
|
|
<FormControl>
|
|
<RadioGroupItem value="all" />
|
|
</FormControl>
|
|
<FormLabel className="font-normal">
|
|
All new messages
|
|
</FormLabel>
|
|
</FormItem>
|
|
<FormItem className="flex items-center gap-2">
|
|
<FormControl>
|
|
<RadioGroupItem value="mentions" />
|
|
</FormControl>
|
|
<FormLabel className="font-normal">
|
|
Direct messages and mentions
|
|
</FormLabel>
|
|
</FormItem>
|
|
<FormItem className="flex items-center gap-2">
|
|
<FormControl>
|
|
<RadioGroupItem value="none" />
|
|
</FormControl>
|
|
<FormLabel className="font-normal">Nothing</FormLabel>
|
|
</FormItem>
|
|
</RadioGroup>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="mobile"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-start gap-3 rounded-md border p-4 shadow-xs">
|
|
<FormControl>
|
|
<Checkbox
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
<div className="flex flex-col gap-1">
|
|
<FormLabel className="leading-snug">
|
|
Use different settings for my mobile devices
|
|
</FormLabel>
|
|
<FormDescription className="leading-snug">
|
|
You can manage your mobile notifications in the mobile
|
|
settings page.
|
|
</FormDescription>
|
|
</div>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="items"
|
|
render={() => (
|
|
<FormItem className="flex flex-col gap-4">
|
|
<div>
|
|
<FormLabel className="text-base">Sidebar</FormLabel>
|
|
<FormDescription>
|
|
Select the items you want to display in the sidebar.
|
|
</FormDescription>
|
|
</div>
|
|
<div className="flex flex-col gap-2">
|
|
{items.map((item) => (
|
|
<FormField
|
|
key={item.id}
|
|
control={form.control}
|
|
name="items"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem
|
|
key={item.id}
|
|
className="flex items-start gap-3"
|
|
>
|
|
<FormControl>
|
|
<Checkbox
|
|
checked={field.value?.includes(item.id)}
|
|
onCheckedChange={(checked) => {
|
|
return checked
|
|
? field.onChange([...field.value, item.id])
|
|
: field.onChange(
|
|
field.value?.filter(
|
|
(value) => value !== item.id
|
|
)
|
|
)
|
|
}}
|
|
/>
|
|
</FormControl>
|
|
<FormLabel className="text-sm leading-tight font-normal">
|
|
{item.label}
|
|
</FormLabel>
|
|
</FormItem>
|
|
)
|
|
}}
|
|
/>
|
|
))}
|
|
</div>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="dob"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-col">
|
|
<FormLabel>Date of birth</FormLabel>
|
|
<Popover>
|
|
<PopoverTrigger asChild>
|
|
<FormControl>
|
|
<Button
|
|
variant={"outline"}
|
|
className={cn(
|
|
"w-[240px] pl-3 text-left font-normal",
|
|
!field.value && "text-muted-foreground"
|
|
)}
|
|
>
|
|
{field.value ? (
|
|
format(field.value, "PPP")
|
|
) : (
|
|
<span>Pick a date</span>
|
|
)}
|
|
<CalendarIcon className="ml-auto h-4 w-4 opacity-50" />
|
|
</Button>
|
|
</FormControl>
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-auto p-0" align="start">
|
|
<Calendar
|
|
mode="single"
|
|
selected={field.value}
|
|
onSelect={field.onChange}
|
|
disabled={(date) =>
|
|
date > new Date() || date < new Date("1900-01-01")
|
|
}
|
|
initialFocus
|
|
/>
|
|
</PopoverContent>
|
|
</Popover>
|
|
<FormDescription>
|
|
Your date of birth is used to calculate your age.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<div>
|
|
<h3 className="mb-4 text-lg font-medium">Email Notifications</h3>
|
|
<div className="flex flex-col gap-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="marketing_emails"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-start justify-between rounded-lg border p-4 shadow-xs">
|
|
<div className="flex flex-col gap-0.5">
|
|
<FormLabel className="leading-normal">
|
|
Marketing emails
|
|
</FormLabel>
|
|
<FormDescription className="leading-snug">
|
|
Receive emails about new products, features, and more.
|
|
</FormDescription>
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="security_emails"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-start justify-between rounded-lg border p-4 shadow-xs">
|
|
<div className="flex flex-col gap-0.5 opacity-60">
|
|
<FormLabel className="leading-normal">
|
|
Security emails
|
|
</FormLabel>
|
|
<FormDescription className="leading-snug">
|
|
Receive emails about your account security.
|
|
</FormDescription>
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
disabled
|
|
aria-readonly
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<Button type="submit">Submit</Button>
|
|
</form>
|
|
</Form>
|
|
)
|
|
}
|