mango-ui-v3/components/WalletSelect.tsx

52 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-04-14 18:54:23 -07:00
import { Menu } from '@headlessui/react'
2021-11-01 05:35:26 -07:00
import { ChevronDownIcon, ChevronUpIcon } from '@heroicons/react/solid'
2021-04-13 22:23:50 -07:00
import useMangoStore from '../stores/useMangoStore'
2021-11-01 05:35:26 -07:00
import { WALLET_PROVIDERS } from '../hooks/useWallet'
2021-04-13 22:23:50 -07:00
2021-04-19 09:15:49 -07:00
export default function WalletSelect({ isPrimary = false }) {
2021-04-13 22:23:50 -07:00
const setMangoStore = useMangoStore((s) => s.set)
const handleSelectProvider = (url) => {
setMangoStore((state) => {
state.wallet.providerUrl = url
})
}
return (
<Menu>
{({ open }) => (
<>
<Menu.Button
className={`flex justify-center items-center h-full rounded-none focus:outline-none text-th-primary hover:text-th-fgd-1 ${
isPrimary
2021-09-01 07:30:34 -07:00
? 'px-3 hover:bg-th-bkg-4'
: 'px-2 hover:bg-th-bkg-4 border-l border-th-fgd-4'
} cursor-pointer`}
>
2021-04-14 16:47:13 -07:00
{open ? (
<ChevronUpIcon className="h-4 w-4" />
2021-04-14 16:47:13 -07:00
) : (
<ChevronDownIcon className="h-4 w-4" />
2021-04-14 16:47:13 -07:00
)}
2021-04-13 22:23:50 -07:00
</Menu.Button>
2021-11-01 05:35:26 -07:00
<Menu.Items className="absolute bg-th-bkg-1 divide-y divide-th-bkg-3 p-1 rounded-md right-0.5 mt-1 shadow-lg outline-none w-36 z-20">
2021-04-14 18:54:23 -07:00
{WALLET_PROVIDERS.map(({ name, url, icon }) => (
<Menu.Item key={name}>
<button
2021-11-01 05:35:26 -07:00
className="flex flex-row items-center justify-between rounded-none text-xs w-full p-2 hover:bg-th-bkg-2 hover:cursor-pointer font-normal focus:outline-none"
2021-04-14 18:54:23 -07:00
onClick={() => handleSelectProvider(url)}
>
<div className="flex">
2021-11-01 05:35:26 -07:00
<img src={icon} className="w-4 h-4 mr-2" />
2021-04-13 22:23:50 -07:00
{name}
2021-04-14 18:54:23 -07:00
</div>
</button>
</Menu.Item>
))}
</Menu.Items>
2021-04-13 22:23:50 -07:00
</>
)}
</Menu>
)
}