58 lines
1.7 KiB
JavaScript
58 lines
1.7 KiB
JavaScript
import { Listbox } from '@headlessui/react'
|
|
import { ChevronDownIcon, ChevronUpIcon } from '@heroicons/react/solid'
|
|
|
|
const Select = ({ value, onChange, children, className = '' }) => {
|
|
return (
|
|
<div className={`relative ${className}`}>
|
|
<Listbox value={value} onChange={onChange}>
|
|
{({ open }) => (
|
|
<>
|
|
<Listbox.Button
|
|
className={`h-full w-full bg-th-bkg-1 border border-th-fgd-4 rounded focus:outline-none focus:ring-1 focus:ring-th-primary`}
|
|
>
|
|
<div
|
|
className={`flex items-center justify-between space-x-4 pl-2 pr-1`}
|
|
>
|
|
<span>{value}</span>
|
|
{open ? (
|
|
<ChevronUpIcon className={`h-5 w-5 mr-1 text-th-primary`} />
|
|
) : (
|
|
<ChevronDownIcon className={`h-5 w-5 mr-1 text-th-primary`} />
|
|
)}
|
|
</div>
|
|
</Listbox.Button>
|
|
{open ? (
|
|
<Listbox.Options
|
|
static
|
|
className={`z-20 w-full p-1 absolute left-0 mt-1 bg-th-bkg-1 origin-top-left divide-y divide-th-bkg-3 shadow-lg outline-none rounded-md`}
|
|
>
|
|
{children}
|
|
</Listbox.Options>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</Listbox>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const Option = ({ key, value, children }) => {
|
|
return (
|
|
<Listbox.Option key={key} value={value}>
|
|
{({ selected }) => (
|
|
<div
|
|
className={`p-2 hover:bg-th-bkg-3 hover:cursor-pointer tracking-wider ${
|
|
selected && `text-th-primary`
|
|
}`}
|
|
>
|
|
{children}
|
|
</div>
|
|
)}
|
|
</Listbox.Option>
|
|
)
|
|
}
|
|
|
|
Select.Option = Option
|
|
|
|
export default Select
|