2024-03-15 21:03:28 +00:00
|
|
|
'use client';
|
2024-03-15 21:01:41 +00:00
|
|
|
|
2024-03-15 21:03:28 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
import { ChevronLeft, ChevronRight } from 'lucide-react';
|
2024-07-25 18:48:44 +00:00
|
|
|
import { Chevron, DayPicker } from 'react-day-picker';
|
2024-03-15 21:01:41 +00:00
|
|
|
|
2024-03-15 21:03:28 +00:00
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
import { buttonVariants } from '@/components/ui/button';
|
2024-03-15 21:01:41 +00:00
|
|
|
|
2024-03-15 21:03:28 +00:00
|
|
|
export type CalendarProps = React.ComponentProps<typeof DayPicker>;
|
2024-03-15 21:01:41 +00:00
|
|
|
|
|
|
|
function Calendar({
|
|
|
|
className,
|
|
|
|
classNames,
|
|
|
|
showOutsideDays = true,
|
|
|
|
...props
|
|
|
|
}: CalendarProps) {
|
|
|
|
return (
|
|
|
|
<DayPicker
|
|
|
|
showOutsideDays={showOutsideDays}
|
2024-03-15 21:03:28 +00:00
|
|
|
className={cn('p-3', className)}
|
2024-03-15 21:01:41 +00:00
|
|
|
classNames={{
|
2024-03-15 21:03:28 +00:00
|
|
|
months: 'flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0',
|
|
|
|
month: 'space-y-4',
|
2024-07-25 18:48:44 +00:00
|
|
|
month_caption: 'flex justify-center pt-1 relative items-center',
|
2024-03-15 21:03:28 +00:00
|
|
|
caption_label: 'text-sm font-medium',
|
|
|
|
nav: 'space-x-1 flex items-center',
|
2024-07-25 18:48:44 +00:00
|
|
|
button_previous: cn(
|
2024-03-15 21:03:28 +00:00
|
|
|
buttonVariants({ variant: 'outline' }),
|
2024-07-25 18:48:44 +00:00
|
|
|
'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100 absolute left-1 top-3'
|
2024-03-15 21:01:41 +00:00
|
|
|
),
|
2024-07-25 18:48:44 +00:00
|
|
|
button_next: cn(
|
|
|
|
buttonVariants({ variant: 'outline' }),
|
|
|
|
'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100 absolute right-1 top-3'
|
|
|
|
),
|
|
|
|
month_grid: 'w-full border-collapse space-y-1',
|
|
|
|
weekdays: 'flex',
|
|
|
|
weekday:
|
2024-03-15 21:03:28 +00:00
|
|
|
'text-muted-foreground rounded-md w-9 font-normal text-[0.8rem]',
|
2024-07-25 18:48:44 +00:00
|
|
|
week: 'flex w-full mt-2',
|
|
|
|
day: 'h-9 w-9 text-center text-sm p-0 relative [&:has([aria-selected].range-end)]:rounded-r-md [&:has([aria-selected].outside)]:bg-accent/50 [&:has([aria-selected])]:bg-accent first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20',
|
|
|
|
day_button: cn(
|
2024-03-15 21:03:28 +00:00
|
|
|
buttonVariants({ variant: 'ghost' }),
|
|
|
|
'h-9 w-9 p-0 font-normal aria-selected:opacity-100'
|
2024-03-15 21:01:41 +00:00
|
|
|
),
|
2024-07-25 18:48:44 +00:00
|
|
|
range_end: 'day-range-end',
|
|
|
|
selected:
|
|
|
|
'bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground rounded-md',
|
|
|
|
today: 'bg-accent text-accent-foreground rounded-md',
|
|
|
|
outside:
|
2024-03-15 21:03:28 +00:00
|
|
|
'day-outside text-muted-foreground opacity-50 aria-selected:bg-accent/50 aria-selected:text-muted-foreground aria-selected:opacity-30',
|
2024-07-25 18:48:44 +00:00
|
|
|
disabled: 'text-muted-foreground opacity-50',
|
|
|
|
range_middle:
|
2024-03-15 21:03:28 +00:00
|
|
|
'aria-selected:bg-accent aria-selected:text-accent-foreground',
|
2024-07-25 18:48:44 +00:00
|
|
|
hidden: 'invisible',
|
2024-03-15 21:01:41 +00:00
|
|
|
...classNames,
|
|
|
|
}}
|
|
|
|
components={{
|
2024-07-25 18:48:44 +00:00
|
|
|
Chevron: (props) => {
|
|
|
|
if (props.orientation === 'left')
|
|
|
|
return <ChevronLeft className='h-4 w-4' />;
|
|
|
|
|
|
|
|
if (props.orientation === 'right')
|
|
|
|
return <ChevronRight className='h-4 w-4' />;
|
|
|
|
|
|
|
|
return <Chevron {...props} />;
|
|
|
|
},
|
2024-03-15 21:01:41 +00:00
|
|
|
}}
|
|
|
|
{...props}
|
|
|
|
/>
|
2024-03-15 21:03:28 +00:00
|
|
|
);
|
2024-03-15 21:01:41 +00:00
|
|
|
}
|
2024-03-15 21:03:28 +00:00
|
|
|
Calendar.displayName = 'Calendar';
|
2024-03-15 21:01:41 +00:00
|
|
|
|
2024-03-15 21:03:28 +00:00
|
|
|
export { Calendar };
|