mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 22:54:18 +00:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { format } from "date-fns"
|
|
import { ChevronDownIcon } from "lucide-react"
|
|
|
|
import { Button } from "@/styles/base-nova/ui/button"
|
|
import { Calendar } from "@/styles/base-nova/ui/calendar"
|
|
import { Field, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/styles/base-nova/ui/popover"
|
|
|
|
export function DataPickerWithDropdowns() {
|
|
const [date, setDate] = React.useState<Date>()
|
|
const [open, setOpen] = React.useState(false)
|
|
|
|
return (
|
|
<Field className="mx-auto w-72">
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<FieldLabel htmlFor="date-picker-with-dropdowns-desktop">
|
|
Date
|
|
</FieldLabel>
|
|
<PopoverTrigger
|
|
render={
|
|
<Button
|
|
variant="outline"
|
|
id="date-picker-with-dropdowns-desktop"
|
|
className="justify-start px-2.5 font-normal"
|
|
/>
|
|
}
|
|
>
|
|
<ChevronDownIcon className="ml-auto" />
|
|
{date ? format(date, "PPP") : <span>Pick a date</span>}
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-auto p-0" align="start">
|
|
<Calendar
|
|
mode="single"
|
|
selected={date}
|
|
onSelect={setDate}
|
|
captionLayout="dropdown"
|
|
/>
|
|
<div className="flex gap-2 border-t p-2">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
className="w-full"
|
|
onClick={() => setOpen(false)}
|
|
>
|
|
Done
|
|
</Button>
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</Field>
|
|
)
|
|
}
|