59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { CalendarIcon } from "lucide-react"
|
|
import { addDays, format } from "date-fns"
|
|
import type { DateRange } from "react-day-picker"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Calendar } from "@/components/ui/calendar"
|
|
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"
|
|
import { useTranslation } from "@/lib/i18n"
|
|
|
|
export function CalendarDateRangePicker({ className }: React.HTMLAttributes<HTMLDivElement>) {
|
|
const { t } = useTranslation()
|
|
const [date, setDate] = React.useState<DateRange | undefined>({
|
|
from: new Date(2023, 0, 20),
|
|
to: addDays(new Date(2023, 0, 20), 20),
|
|
})
|
|
|
|
return (
|
|
<div className={cn("grid gap-2", className)}>
|
|
<Popover>
|
|
<PopoverTrigger asChild>
|
|
<Button
|
|
id="date"
|
|
variant={"outline"}
|
|
size="sm"
|
|
className={cn("w-[260px] justify-start text-left font-normal", !date && "text-muted-foreground")}
|
|
>
|
|
<CalendarIcon className="mr-2 h-4 w-4" />
|
|
{date?.from ? (
|
|
date.to ? (
|
|
<>
|
|
{format(date.from, "LLL dd, y")} - {format(date.to, "LLL dd, y")}
|
|
</>
|
|
) : (
|
|
format(date.from, "LLL dd, y")
|
|
)
|
|
) : (
|
|
<span>{t("datePicker.pickDate")}</span>
|
|
)}
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-auto p-0" align="start">
|
|
<Calendar
|
|
initialFocus
|
|
mode="range"
|
|
defaultMonth={date?.from}
|
|
selected={date}
|
|
onSelect={setDate}
|
|
numberOfMonths={2}
|
|
/>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</div>
|
|
)
|
|
}
|