'use client'
import { useState } from 'react'
import { CheckIcon, ChevronsUpDownIcon } from 'lucide-react'
import { Button } from '@/registry/new-york/ui/button'
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList
} from '@/registry/new-york/ui/command'
import { Popover, PopoverContent, PopoverTrigger } from '@/registry/new-york/ui/popover'
import { cn } from '@/registry/new-york/lib/utils'
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 ComboboxDemo = () => {
const [open, setOpen] = useState(false)
const [value, setValue] = useState('')
return (
<Popover open={open} onOpenChange={setOpen}>
<PopoverTrigger asChild>
<Button
variant='outline'
role='combobox'
aria-expanded={open}
className='w-full max-w-xs justify-between'
aria-label='Framework combobox'
>
{value ? frameworks.find(framework => framework.value === value)?.label : 'Select framework...'}
<ChevronsUpDownIcon className='opacity-50' />
</Button>
</PopoverTrigger>
<PopoverContent className='p-0'>
<Command>
<CommandInput placeholder='Search framework...' className='h-9' />
<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)
}}
>
{framework.label}
<CheckIcon className={cn('ml-auto', value === framework.value ? 'opacity-100' : 'opacity-0')} />
</CommandItem>
))}
</CommandGroup>
</CommandList>
</Command>
</PopoverContent>
</Popover>
)
}
export default ComboboxDemo