Home / Function/ CalendarWithPresets() — ui Function Reference

CalendarWithPresets() — ui Function Reference

Architecture documentation for the CalendarWithPresets() function in calendar-presets.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  28d6e407_535f_4882_eb32_fb0fac7096ab["CalendarWithPresets()"]
  92d2efdf_d940_a734_a276_5b4b268d08b2["calendar-presets.tsx"]
  28d6e407_535f_4882_eb32_fb0fac7096ab -->|defined in| 92d2efdf_d940_a734_a276_5b4b268d08b2
  style 28d6e407_535f_4882_eb32_fb0fac7096ab fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/examples/base/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>
  )
}

Subdomains

Frequently Asked Questions

What does CalendarWithPresets() do?
CalendarWithPresets() is a function in the ui codebase, defined in apps/v4/examples/base/calendar-presets.tsx.
Where is CalendarWithPresets() defined?
CalendarWithPresets() is defined in apps/v4/examples/base/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