mango-v4-ui/components/modals/CloseAccountModal.tsx

149 lines
4.7 KiB
TypeScript
Raw Normal View History

2022-07-28 03:51:36 -07:00
import { ModalProps } from '../../types/modal'
import Modal from '../shared/Modal'
2022-09-12 08:53:57 -07:00
import mangoStore from '@store/mangoStore'
2022-07-28 03:51:36 -07:00
import { notify } from '../../utils/notifications'
import Button from '../shared/Button'
import { useTranslation } from 'next-i18next'
2023-01-11 09:38:51 -08:00
import { useEffect, useState } from 'react'
2022-07-28 03:51:36 -07:00
import BounceLoader from '../shared/BounceLoader'
import { MangoAccount } from '@blockworks-foundation/mango-v4'
2022-09-11 05:05:21 -07:00
import { TrashIcon } from '@heroicons/react/20/solid'
2023-01-11 09:38:51 -08:00
import useUnsettledPerpPositions from 'hooks/useUnsettledPerpPositions'
2022-07-28 03:51:36 -07:00
const CloseAccountModal = ({ isOpen, onClose }: ModalProps) => {
const { t } = useTranslation('common')
const [loading, setLoading] = useState(false)
2022-08-11 21:20:17 -07:00
const set = mangoStore((s) => s.set)
2023-01-11 09:38:51 -08:00
const openOrders = Object.values(mangoStore((s) => s.mangoAccount.openOrders))
2023-01-11 14:37:58 -08:00
const hasOpenOrders =
openOrders.length && openOrders.filter((x) => x.length).length > 0
2023-01-11 09:38:51 -08:00
const mangoAccount = mangoStore((s) => s.mangoAccount)
const perpPositions = mangoStore((s) => s.mangoAccount.perpPositions)
const openPerpPositions = Object.values(perpPositions).filter((p) =>
p.basePositionLots.toNumber()
)
2023-01-11 14:37:58 -08:00
const group = mangoStore.getState().group
2023-01-11 09:38:51 -08:00
const unsettledBalances = Object.values(mangoAccount.spotBalances).filter(
(x) => x.unsettled && x.unsettled > 0
)
const unsettledPerpPositions = useUnsettledPerpPositions()
2023-01-11 14:37:58 -08:00
const [hasBorrows, setHasBorrows] = useState(false)
2023-01-11 09:38:51 -08:00
const [hasOpenPositions, setHasOpenPositions] = useState(false)
2022-07-28 03:51:36 -07:00
const handleCloseMangoAccount = async () => {
const client = mangoStore.getState().client
const mangoAccount = mangoStore.getState().mangoAccount.current
2022-10-07 04:47:15 -07:00
const mangoAccounts = mangoStore.getState().mangoAccounts
2023-01-11 09:38:51 -08:00
2022-07-28 03:51:36 -07:00
if (!mangoAccount || !group) return
setLoading(true)
try {
const tx = await client.closeMangoAccount(group, mangoAccount)
if (tx) {
const newMangoAccounts = mangoAccounts.filter(
(ma) => !ma.publicKey.equals(mangoAccount.publicKey)
)
let newCurrentAccount: MangoAccount
if (newMangoAccounts[0]) {
newCurrentAccount = await newMangoAccounts[0].reload(client)
}
2022-07-28 03:51:36 -07:00
setLoading(false)
onClose()
notify({
title: t('account-closed'),
type: 'success',
txid: tx,
})
2022-08-11 21:20:17 -07:00
set((state) => {
2022-10-07 04:47:15 -07:00
state.mangoAccounts = newMangoAccounts
state.mangoAccount.current = newCurrentAccount
2022-08-11 21:20:17 -07:00
})
2022-07-28 03:51:36 -07:00
}
} catch (e) {
setLoading(false)
2022-08-02 11:04:00 -07:00
console.error(e)
2022-07-28 03:51:36 -07:00
}
}
2023-01-11 09:38:51 -08:00
useEffect(() => {
2023-01-11 14:37:58 -08:00
if (mangoAccount && group) {
if (
mangoAccount.current
?.tokensActive()
.filter(
(token) =>
token.balanceUi(
group.getFirstBankByTokenIndex(token.tokenIndex)
) < 0
).length
) {
console.log(
mangoAccount.current
?.tokensActive()
.map((token) => ({
...token,
balance: token.balanceUi(
group.getFirstBankByTokenIndex(token.tokenIndex)
),
}))
)
setHasBorrows(true)
}
2023-01-11 09:38:51 -08:00
if (openPerpPositions.length || unsettledPerpPositions.length) {
setHasOpenPositions(true)
}
}
2023-01-11 14:37:58 -08:00
}, [mangoAccount, group])
2023-01-11 09:38:51 -08:00
const isDisabled =
2023-01-11 14:37:58 -08:00
hasOpenOrders ||
2023-01-11 09:38:51 -08:00
hasBorrows ||
hasOpenPositions ||
!!unsettledBalances.length
2023-01-11 14:37:58 -08:00
console.log({
hasOpenOrders,
hasBorrows,
hasOpenPositions,
unsettle: !!unsettledBalances.length,
})
2022-07-28 03:51:36 -07:00
return (
<Modal isOpen={isOpen} onClose={onClose}>
2023-01-11 09:38:51 -08:00
<div className="h-[300px]">
2022-07-28 03:51:36 -07:00
{loading ? (
<BounceLoader loadingMessage={t('closing-account')} />
) : (
<div className="flex h-full flex-col justify-between">
2023-01-11 09:38:51 -08:00
<div className="space-y-4 pb-6">
2022-07-28 03:51:36 -07:00
<h2 className="mb-1">{t('close-account')}</h2>
2023-01-11 09:38:51 -08:00
<p>
You can close your Mango account and recover the small amount
amount of SOL used to cover rent exemption.{' '}
</p>
<p>To close account you must:</p>
<ul>
<li>Close all borrows</li>
<li>Close and settle all Perp positions </li>
<li>Close all open orders</li>
</ul>
2022-07-28 03:51:36 -07:00
</div>
<Button
className="w-full"
2023-01-11 14:37:58 -08:00
disabled={isDisabled}
2022-07-28 03:51:36 -07:00
onClick={handleCloseMangoAccount}
size="large"
>
2022-09-11 05:05:21 -07:00
<div className="flex items-center justify-center">
<TrashIcon className="mr-2 h-5 w-5" />
{t('close-account')}
</div>
2022-07-28 03:51:36 -07:00
</Button>
</div>
)}
</div>
</Modal>
)
}
export default CloseAccountModal