CalendarWithPresets() — ui Function Reference
Architecture documentation for the CalendarWithPresets() function in calendar-presets.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 642a0b87_b5cc_8480_3573_75cccf155a70["CalendarWithPresets()"] 1b76bd85_9b96_ffe6_674e_d7f0eace0d25["calendar-presets.tsx"] 642a0b87_b5cc_8480_3573_75cccf155a70 -->|defined in| 1b76bd85_9b96_ffe6_674e_d7f0eace0d25 style 642a0b87_b5cc_8480_3573_75cccf155a70 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/examples/radix/calendar-presets.tsx lines 9–57
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>
)
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does CalendarWithPresets() do?
CalendarWithPresets() is a function in the ui codebase, defined in apps/v4/examples/radix/calendar-presets.tsx.
Where is CalendarWithPresets() defined?
CalendarWithPresets() is defined in apps/v4/examples/radix/calendar-presets.tsx at line 9.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free