Components
Date Picker Form
A styled form date picker component built with Shadcn UI, using Zod for schema validation and React Hook Form for form management.
Installation with shadcn/ui
CLI
npx shadcn@latest add https://ved-ui.vercel.app/registry/date-picker-form.json
Manual
Install the following dependencies:
npx shadcn@latest add calendar form button sonner popover
Copy and paste the following code into your project.
"use client";
import { z } from "zod";
import { format } from "date-fns";
import { useForm } from "react-hook-form";
import { CalendarIcon } from "lucide-react";
import { zodResolver } from "@hookform/resolvers/zod";
import { toast } from "sonner";
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui/button";
import { Calendar } from "@/components/ui/calendar";
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "@/components/ui/form";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover";
const FormSchema = z.object({
dob: z.date({
required_error: "A date of birth is required, Morty! Don't screw this up!",
}),
});
export function DatePickerForm() {
const form = useForm<z.infer<typeof FormSchema>>({
resolver: zodResolver(FormSchema),
});
function onSubmit(data: z.infer<typeof FormSchema>) {
toast.success(
"Wubba Lubba Dub-Dub! Date submitted! Now, where's my Szechuan sauce?"
);
form.reset();
}
return (
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8">
<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, Morty! Quick!</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, Morty. Try not to create a branching
timeline!
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<Button type="submit" className="hover:cursor-pointer">
Submit
</Button>
</form>
</Form>
);
}