72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { Listbox } from '@headlessui/react'
|
|
import styled from '@emotion/styled'
|
|
import { ChevronDownIcon, ChevronUpIcon } from '@heroicons/react/solid'
|
|
|
|
const StyledDiv = styled.div`
|
|
min-height: 2.5rem;
|
|
`
|
|
|
|
const Select = ({
|
|
value,
|
|
onChange,
|
|
children,
|
|
className = '',
|
|
placeholder = '',
|
|
disabled = false,
|
|
}) => {
|
|
return (
|
|
<div className={`relative ${className}`}>
|
|
<Listbox value={value} onChange={onChange} disabled={disabled}>
|
|
{({ open }) => (
|
|
<>
|
|
<Listbox.Button
|
|
className={`h-full w-full font-normal bg-th-bkg-1 ring-1 ring-th-fgd-4 ring-inset rounded hover:ring-th-primary focus:outline-none focus:border-th-primary`}
|
|
>
|
|
<StyledDiv
|
|
className={`flex items-center justify-between space-x-4 p-2`}
|
|
>
|
|
<span className="text-th-fgd-1">
|
|
{value ? value : placeholder}
|
|
</span>
|
|
{open ? (
|
|
<ChevronUpIcon className={`h-5 w-5 mr-1 text-th-primary`} />
|
|
) : (
|
|
<ChevronDownIcon className={`h-5 w-5 mr-1 text-th-primary`} />
|
|
)}
|
|
</StyledDiv>
|
|
</Listbox.Button>
|
|
{open ? (
|
|
<Listbox.Options
|
|
static
|
|
className={`text-th-fgd-1 max-h-40 overflow-auto 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 thin-scroll`}
|
|
>
|
|
{children}
|
|
</Listbox.Options>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</Listbox>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const Option = ({ value, children, className = '' }) => {
|
|
return (
|
|
<Listbox.Option value={value}>
|
|
{({ selected }) => (
|
|
<div
|
|
className={`p-2 hover:bg-th-bkg-3 hover:cursor-pointer tracking-wider ${
|
|
selected && `text-th-primary`
|
|
} ${className}`}
|
|
>
|
|
{children}
|
|
</div>
|
|
)}
|
|
</Listbox.Option>
|
|
)
|
|
}
|
|
|
|
Select.Option = Option
|
|
|
|
export default Select
|