3022ae9a6a
* style: fund account font size adjustments * client instance. contract addresses updates. prices hook added * persist lend assets value for every credit account * feat: account stats and semi circular progress * minor code cleanup * display borrowed assets interest rate * fallback screen when no wallet is connected * fix: hydration mismatch * update osmosis testnet endpoints * style: body text color * coin interface imported from cosmos package * risk calculation from ltv assets comment added * svgr setup. inline svg extracted to Icons folder * address removed from local storage. wallet store improvements * rename setAddress action to connect * yield page renamed to earn * refactor: accountStats using BigNumber * update contract addresses * update hardcoded fee * update market mocked values * current leverage added to useAccountStats hook return * leverage naming disambiguation * debt positions labels color update. negative sign before values * remove prefers-color-scheme media query * update redbank mock data
195 lines
7.8 KiB
TypeScript
195 lines
7.8 KiB
TypeScript
import React, { Fragment, useState } from 'react'
|
|
import Image from 'next/image'
|
|
import { Dialog, Transition } from '@headlessui/react'
|
|
import { toast } from 'react-toastify'
|
|
import { SigningCosmWasmClient } from '@cosmjs/cosmwasm-stargate'
|
|
import { Coin } from '@cosmjs/stargate'
|
|
|
|
import { getInjectiveAddress } from 'utils/address'
|
|
import { getExperimentalChainConfigBasedOnChainId } from 'utils/experimental-chains'
|
|
import { ChainId, Wallet } from 'types'
|
|
import useWalletStore from 'stores/useWalletStore'
|
|
import { chain } from 'utils/chains'
|
|
|
|
type Props = {
|
|
isOpen: boolean
|
|
onClose: () => void
|
|
}
|
|
|
|
const ConnectModal = ({ isOpen, onClose }: Props) => {
|
|
const [isLoading, setIsLoading] = useState(false)
|
|
|
|
const actions = useWalletStore((s) => s.actions)
|
|
const metamaskInstalled = useWalletStore((s) => s.metamaskInstalled)
|
|
const isKeplrInstalled = typeof window !== 'undefined' && window.keplr
|
|
|
|
const handleConnectSuccess = () => {
|
|
onClose()
|
|
|
|
// defering update on loading state to avoid updating before close animation is finished
|
|
setTimeout(() => {
|
|
setIsLoading(false)
|
|
}, 500)
|
|
}
|
|
|
|
const handleConnectKeplr = async () => {
|
|
if (!window.keplr) {
|
|
toast.error('You need Keplr extension installed')
|
|
return
|
|
}
|
|
|
|
setIsLoading(true)
|
|
|
|
try {
|
|
const chainData = getExperimentalChainConfigBasedOnChainId(chain.chainId)
|
|
|
|
if (chainData) {
|
|
await window.keplr.experimentalSuggestChain(chainData)
|
|
}
|
|
|
|
const key = await window.keplr.getKey(chain.chainId)
|
|
actions.connect(key.bech32Address, Wallet.Keplr)
|
|
|
|
handleConnectSuccess()
|
|
} catch (e) {
|
|
// TODO: handle exception
|
|
console.log(e)
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
const handleConnectMetamask = async () => {
|
|
if (!metamaskInstalled) {
|
|
toast.error('You need Metamask extension installed')
|
|
return
|
|
}
|
|
|
|
setIsLoading(true)
|
|
|
|
try {
|
|
// TODO: missing type definitions
|
|
const addresses = await (window.ethereum as any).request({
|
|
method: 'eth_requestAccounts',
|
|
})
|
|
const [address] = addresses
|
|
actions.connect(getInjectiveAddress(address), Wallet.Metamask)
|
|
handleConnectSuccess()
|
|
} catch (e) {
|
|
// TODO: handle exception
|
|
console.log(e)
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Transition appear show={isOpen} as={Fragment}>
|
|
<Dialog as="div" className="relative z-10" onClose={onClose}>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-black bg-opacity-40" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 overflow-y-auto">
|
|
<div className="flex min-h-full items-center justify-center p-4 text-center">
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 scale-95"
|
|
enterTo="opacity-100 scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 scale-100"
|
|
leaveTo="opacity-0 scale-95"
|
|
>
|
|
<Dialog.Panel className="w-full max-w-md transform overflow-hidden rounded-2xl bg-white p-6 text-left align-middle shadow-xl transition-all">
|
|
<Dialog.Title as="h3" className="mb-6 text-lg font-medium leading-6 text-gray-900">
|
|
Connect your wallet
|
|
</Dialog.Title>
|
|
{isLoading ? (
|
|
<div role="status" className="text-center">
|
|
<svg
|
|
className="inline h-10 w-10 animate-spin fill-orange-500 text-gray-200"
|
|
viewBox="0 0 100 101"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
|
|
fill="currentFill"
|
|
/>
|
|
</svg>
|
|
<span className="sr-only">Loading...</span>
|
|
</div>
|
|
) : (
|
|
<div className="mt-2 flex flex-col gap-3">
|
|
<button
|
|
className="flex items-center rounded-xl bg-black/90 p-4 hover:bg-black"
|
|
onClick={handleConnectMetamask}
|
|
// temporarily disable metamask connection as its not supported on osmosis
|
|
disabled
|
|
>
|
|
<Image src="/wallets/metamask.webp" height={30} width={30} alt="metamask" />
|
|
<div className="ml-4 text-left">
|
|
<div className="flex items-end">
|
|
<p>Metamask</p>
|
|
{!metamaskInstalled && (
|
|
<a
|
|
className="ml-3 text-sm text-blue-600"
|
|
onClick={(e) => {
|
|
window.open('https://metamask.io/', '_blank')
|
|
e.stopPropagation()
|
|
}}
|
|
>
|
|
Install
|
|
</a>
|
|
)}
|
|
</div>
|
|
<p className="text-sm text-gray-400">Connect using Metamask</p>
|
|
</div>
|
|
</button>
|
|
<button
|
|
className="flex items-center rounded-xl bg-black/90 p-4 hover:bg-black"
|
|
onClick={handleConnectKeplr}
|
|
>
|
|
<Image src="/wallets/keplr.png" height={30} width={30} alt="keplr" />
|
|
<div className="ml-4 text-left">
|
|
<div className="flex items-end">
|
|
<p>Keplr</p>
|
|
{!isKeplrInstalled && (
|
|
<a
|
|
className="ml-3 text-sm text-blue-600"
|
|
onClick={(e) => {
|
|
window.open('https://www.keplr.app/', '_blank')
|
|
e.stopPropagation()
|
|
}}
|
|
>
|
|
Install
|
|
</a>
|
|
)}
|
|
</div>
|
|
<p className="text-sm text-gray-400">Connect using Keplr</p>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
)}
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition>
|
|
)
|
|
}
|
|
|
|
export default ConnectModal
|