mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { addDays } from "date-fns"
|
|
|
|
import { Button } from "@/styles/base-nova/ui/button"
|
|
import { Calendar } from "@/styles/base-nova/ui/calendar"
|
|
import { Card, CardContent, CardFooter } from "@/styles/base-nova/ui/card"
|
|
|
|
export function CalendarWithPresets() {
|
|
const [date, setDate] = React.useState<Date | undefined>(
|
|
new Date(new Date().getFullYear(), 1, 12)
|
|
)
|
|
const [currentMonth, setCurrentMonth] = React.useState<Date>(
|
|
new Date(new Date().getFullYear(), new Date().getMonth(), 1)
|
|
)
|
|
|
|
return (
|
|
<Card className="mx-auto w-fit max-w-[300px]" size="sm">
|
|
<CardContent>
|
|
<Calendar
|
|
mode="single"
|
|
selected={date}
|
|
onSelect={setDate}
|
|
month={currentMonth}
|
|
onMonthChange={setCurrentMonth}
|
|
fixedWeeks
|
|
className="p-0 [--cell-size:--spacing(9.5)]"
|
|
/>
|
|
</CardContent>
|
|
<CardFooter className="flex flex-wrap gap-2 border-t">
|
|
{[
|
|
{ label: "Today", value: 0 },
|
|
{ label: "Tomorrow", value: 1 },
|
|
{ label: "In 3 days", value: 3 },
|
|
{ label: "In a week", value: 7 },
|
|
{ label: "In 2 weeks", value: 14 },
|
|
].map((preset) => (
|
|
<Button
|
|
key={preset.value}
|
|
variant="outline"
|
|
size="sm"
|
|
className="flex-1"
|
|
onClick={() => {
|
|
const newDate = addDays(new Date(), preset.value)
|
|
setDate(newDate)
|
|
setCurrentMonth(
|
|
new Date(newDate.getFullYear(), newDate.getMonth(), 1)
|
|
)
|
|
}}
|
|
>
|
|
{preset.label}
|
|
</Button>
|
|
))}
|
|
</CardFooter>
|
|
</Card>
|
|
)
|
|
}
|