65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
import React, { Fragment } from 'react'
|
|
import { useWallet } from '@solana/wallet-adapter-react'
|
|
import { ChevronDownIcon } from '@heroicons/react/20/solid'
|
|
import { Menu, Transition } from '@headlessui/react'
|
|
import mangoStore from '@store/mangoStore'
|
|
|
|
const WalletSelect = () => {
|
|
const { wallets, select } = useWallet()
|
|
const group = mangoStore((s) => s.group)
|
|
|
|
return (
|
|
<Menu>
|
|
{({ open }) => (
|
|
<>
|
|
<Menu.Button
|
|
className={`flex h-full w-12 cursor-pointer items-center justify-center rounded-none bg-transparent text-white hover:brightness-[1.1] focus:outline-none disabled:opacity-25`}
|
|
disabled={!group}
|
|
>
|
|
<ChevronDownIcon
|
|
className={`default-transition h-6 w-6 ${
|
|
open ? 'rotate-180' : 'rotate-360'
|
|
}`}
|
|
/>
|
|
</Menu.Button>
|
|
<Transition
|
|
appear={true}
|
|
show={open}
|
|
as={Fragment}
|
|
enter="transition ease-in duration-200"
|
|
enterFrom="opacity-0 scale-75"
|
|
enterTo="opacity-100 scale-100"
|
|
leave="transition ease-out duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Menu.Items className="absolute top-16 right-0 z-20 w-44 rounded-md rounded-t-none border border-t-0 border-th-bkg-3 bg-th-bkg-1 px-4 py-2.5 outline-none">
|
|
{wallets?.map((wallet, index) => (
|
|
<Menu.Item key={index}>
|
|
<button
|
|
className="flex w-full flex-row items-center justify-between rounded-none py-1.5 font-normal focus:outline-none md:hover:cursor-pointer md:hover:text-th-primary"
|
|
onClick={() => {
|
|
select(wallet.adapter.name)
|
|
}}
|
|
>
|
|
<div className="flex items-center">
|
|
<img
|
|
src={wallet.adapter.icon}
|
|
className="mr-2 h-5 w-5"
|
|
alt={`${wallet.adapter.name} icon`}
|
|
/>
|
|
{wallet.adapter.name}
|
|
</div>
|
|
</button>
|
|
</Menu.Item>
|
|
))}
|
|
</Menu.Items>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Menu>
|
|
)
|
|
}
|
|
|
|
export default WalletSelect
|