'use client'
import { CalendarIcon, CheckCheckIcon } from 'lucide-react'
import { format } from 'date-fns'
import { zodResolver } from '@hookform/resolvers/zod'
import { useForm } from 'react-hook-form'
import { toast } from 'sonner'
import { z } from 'zod'
import { Alert, AlertTitle } from '@/registry/new-york/ui/alert'
import { Button } from '@/registry/new-york/ui/button'
import { Calendar } from '@/registry/new-york/ui/calendar'
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage
} from '@/registry/new-york/ui/form'
import { Popover, PopoverContent, PopoverTrigger } from '@/registry/new-york/ui/popover'
import { cn } from '@/registry/new-york/lib/utils'
const FormSchema = z.object({
dob: z.date({
required_error: 'A date of birth is required.'
})
})
const DatePickerFormDemo = () => {
const form = useForm<z.infer<typeof FormSchema>>({
resolver: zodResolver(FormSchema)
})
function onSubmit() {
toast.custom(() => (
<Alert className='border-green-600 text-green-600 sm:w-100 dark:border-green-400 dark:text-green-400'>
<CheckCheckIcon />
<AlertTitle>Great we send you a personalized outfit suggestion!</AlertTitle>
</Alert>
))
}
return (
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className='w-full max-w-xs space-y-6'>
<FormField
control={form.control}
name='dob'
render={({ field }) => (
<FormItem className='flex flex-col'>
<FormLabel>Timeless Trends for You</FormLabel>
<Popover>
<PopoverTrigger asChild>
<FormControl>
<Button
variant={'outline'}
className={cn('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 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')}
/>
</PopoverContent>
</Popover>
<FormDescription>
Enter your birth date to reveal styles and outfits tailored to your fashion journey.
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<Button type='submit'>Submit</Button>
</form>
</Form>
)
}
export default DatePickerFormDemo