81 lines
2.4 KiB
TypeScript
81 lines
2.4 KiB
TypeScript
import { Fragment, FunctionComponent, ReactNode } from 'react'
|
|
import { Listbox, Transition } from '@headlessui/react'
|
|
import Tooltip from './Tooltip'
|
|
|
|
type DropMenuProps = {
|
|
button: ReactNode
|
|
buttonClassName?: string
|
|
disabled?: boolean
|
|
onChange: (...args: any[]) => any
|
|
options: Array<any>
|
|
toolTipContent?: string
|
|
value?: any
|
|
}
|
|
|
|
const DropMenu: FunctionComponent<DropMenuProps> = ({
|
|
button,
|
|
buttonClassName,
|
|
disabled,
|
|
value,
|
|
onChange,
|
|
options,
|
|
toolTipContent,
|
|
}) => {
|
|
return (
|
|
<div className={`relative`}>
|
|
<Listbox value={value} onChange={onChange}>
|
|
{({ open }) => (
|
|
<>
|
|
<Listbox.Button
|
|
className={`${buttonClassName} default-transition`}
|
|
disabled={disabled}
|
|
>
|
|
{toolTipContent && !open ? (
|
|
<Tooltip content={toolTipContent} className="text-xs py-1">
|
|
{button}
|
|
</Tooltip>
|
|
) : (
|
|
button
|
|
)}
|
|
</Listbox.Button>
|
|
|
|
<Transition
|
|
show={open}
|
|
as={Fragment}
|
|
enter="transition ease-out duration-200"
|
|
enterFrom="opacity-0 translate-y-1"
|
|
enterTo="opacity-100 translate-y-0"
|
|
leave="transition ease-in duration-150"
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
leaveTo="opacity-0 translate-y-1"
|
|
>
|
|
<Listbox.Options
|
|
className={`absolute z-10 mt-4 p-1 right-0 w-24 bg-th-bkg-1 divide-y divide-th-bkg-3 shadow-lg outline-none rounded-md`}
|
|
>
|
|
{options.map((option) => (
|
|
<Listbox.Option key={option.name} value={option.name}>
|
|
{({ selected }) => (
|
|
<div
|
|
className={`p-2 hover:bg-th-bkg-2 hover:cursor-pointer tracking-wider ${
|
|
selected && `text-th-primary`
|
|
} ${option.icon && `flex items-center`}`}
|
|
>
|
|
{option.icon ? (
|
|
<div className="mr-2">{option.icon}</div>
|
|
) : null}
|
|
{option.name}
|
|
</div>
|
|
)}
|
|
</Listbox.Option>
|
|
))}
|
|
</Listbox.Options>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Listbox>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default DropMenu
|