98 lines
2.4 KiB
TypeScript
98 lines
2.4 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { Check, ChevronsUpDown } from "lucide-react"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
Command,
|
|
CommandEmpty,
|
|
CommandGroup,
|
|
CommandInput,
|
|
CommandItem,
|
|
CommandList,
|
|
} from "@/components/ui/command"
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from "@/components/ui/popover"
|
|
|
|
const frameworks = [
|
|
{
|
|
value: "next.js",
|
|
label: "Next.js",
|
|
},
|
|
{
|
|
value: "sveltekit",
|
|
label: "SvelteKit",
|
|
},
|
|
{
|
|
value: "nuxt.js",
|
|
label: "Nuxt.js",
|
|
},
|
|
{
|
|
value: "remix",
|
|
label: "Remix",
|
|
},
|
|
{
|
|
value: "astro",
|
|
label: "Astro",
|
|
},
|
|
]
|
|
|
|
const BasicCombobox = () => {
|
|
const [open, setOpen] = React.useState(false)
|
|
const [value, setValue] = React.useState("")
|
|
|
|
return (
|
|
<div className="flex justify-center">
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<PopoverTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
role="combobox"
|
|
aria-expanded={open}
|
|
className="w-[300px] justify-between"
|
|
>
|
|
{value
|
|
? frameworks.find((framework) => framework.value === value)?.label
|
|
: "Select framework..."}
|
|
<ChevronsUpDown className="ms-2 h-4 w-4 shrink-0 opacity-50" />
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent className="w-[300px] p-0">
|
|
<Command>
|
|
<CommandInput placeholder="Search framework..." />
|
|
<CommandList>
|
|
<CommandEmpty>No framework found.</CommandEmpty>
|
|
<CommandGroup>
|
|
{frameworks.map((framework) => (
|
|
<CommandItem
|
|
key={framework.value}
|
|
value={framework.value}
|
|
onSelect={(currentValue) => {
|
|
setValue(currentValue === value ? "" : currentValue)
|
|
setOpen(false)
|
|
}}
|
|
>
|
|
<Check
|
|
className={cn(
|
|
"me-2 h-4 w-4",
|
|
value === framework.value ? "opacity-100" : "opacity-0"
|
|
)}
|
|
/>
|
|
{framework.label}
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BasicCombobox; |