312 lines
11 KiB
TypeScript
312 lines
11 KiB
TypeScript
import { HealthType } from '@blockworks-foundation/mango-v4'
|
|
import {
|
|
ArrowUpTrayIcon,
|
|
ExclamationCircleIcon,
|
|
// ExclamationCircleIcon,
|
|
} from '@heroicons/react/20/solid'
|
|
import Decimal from 'decimal.js'
|
|
import { useTranslation } from 'next-i18next'
|
|
import { useCallback, useMemo, useState } from 'react'
|
|
import NumberFormat, { NumberFormatValues } from 'react-number-format'
|
|
|
|
import mangoStore from '@store/mangoStore'
|
|
import {
|
|
ACCOUNT_ACTION_MODAL_INNER_HEIGHT,
|
|
INPUT_TOKEN_DEFAULT,
|
|
} from './../utils/constants'
|
|
import { notify } from './../utils/notifications'
|
|
import ActionTokenList from './account/ActionTokenList'
|
|
import ButtonGroup from './forms/ButtonGroup'
|
|
import Label from './forms/Label'
|
|
import Button from './shared/Button'
|
|
import InlineNotification from './shared/InlineNotification'
|
|
import Loading from './shared/Loading'
|
|
import { EnterBottomExitBottom, FadeInFadeOut } from './shared/Transitions'
|
|
import { withValueLimit } from './swap/MarketSwapForm'
|
|
import { getMaxWithdrawForBank } from './swap/useTokenMax'
|
|
import MaxAmountButton from '@components/shared/MaxAmountButton'
|
|
import HealthImpactTokenChange from '@components/HealthImpactTokenChange'
|
|
import useMangoAccount from 'hooks/useMangoAccount'
|
|
import useMangoGroup from 'hooks/useMangoGroup'
|
|
import TokenVaultWarnings from '@components/shared/TokenVaultWarnings'
|
|
import { useWallet } from '@solana/wallet-adapter-react'
|
|
import { floorToDecimal } from 'utils/numbers'
|
|
import BankAmountWithValue from './shared/BankAmountWithValue'
|
|
import useBanksWithBalances from 'hooks/useBanksWithBalances'
|
|
import { isMangoError } from 'types'
|
|
import TokenListButton from './shared/TokenListButton'
|
|
import { ACCOUNT_ACTIONS_NUMBER_FORMAT_CLASSES, BackButton } from './BorrowForm'
|
|
import TokenLogo from './shared/TokenLogo'
|
|
import SecondaryConnectButton from './shared/SecondaryConnectButton'
|
|
|
|
interface WithdrawFormProps {
|
|
onSuccess: () => void
|
|
token?: string
|
|
}
|
|
|
|
function WithdrawForm({ onSuccess, token }: WithdrawFormProps) {
|
|
const { t } = useTranslation(['common', 'trade'])
|
|
const { group } = useMangoGroup()
|
|
const [inputAmount, setInputAmount] = useState('')
|
|
const [submitting, setSubmitting] = useState(false)
|
|
const [selectedToken, setSelectedToken] = useState(
|
|
token || INPUT_TOKEN_DEFAULT,
|
|
)
|
|
const [showTokenList, setShowTokenList] = useState(false)
|
|
const [sizePercentage, setSizePercentage] = useState('')
|
|
const { mangoAccount } = useMangoAccount()
|
|
const { connected } = useWallet()
|
|
const banks = useBanksWithBalances('maxWithdraw')
|
|
|
|
const bank = useMemo(() => {
|
|
const group = mangoStore.getState().group
|
|
return group?.banksMapByName.get(selectedToken)?.[0]
|
|
}, [selectedToken])
|
|
|
|
const [adjustedTokenMax, tokenMax] = useMemo(() => {
|
|
if (!bank || !mangoAccount || !group)
|
|
return [new Decimal(0), new Decimal(0)]
|
|
const tokenMax = getMaxWithdrawForBank(group, bank, mangoAccount).toNumber()
|
|
let adjustedTokenMax = tokenMax
|
|
const balance = mangoAccount.getTokenBalanceUi(bank)
|
|
if (tokenMax < balance) {
|
|
adjustedTokenMax = tokenMax * 0.998
|
|
}
|
|
return [new Decimal(adjustedTokenMax), new Decimal(tokenMax)]
|
|
}, [mangoAccount, bank, group])
|
|
|
|
const handleSizePercentage = useCallback(
|
|
(percentage: string) => {
|
|
if (!bank) return
|
|
setSizePercentage(percentage)
|
|
let amount: Decimal
|
|
if (percentage !== '100') {
|
|
amount = floorToDecimal(
|
|
new Decimal(adjustedTokenMax).mul(percentage).div(100),
|
|
bank.mintDecimals,
|
|
)
|
|
} else {
|
|
amount = floorToDecimal(
|
|
new Decimal(adjustedTokenMax),
|
|
bank.mintDecimals,
|
|
)
|
|
}
|
|
setInputAmount(amount.toFixed())
|
|
},
|
|
[bank, adjustedTokenMax],
|
|
)
|
|
|
|
const setMax = useCallback(() => {
|
|
if (!bank) return
|
|
const max = floorToDecimal(adjustedTokenMax, bank.mintDecimals)
|
|
setInputAmount(max.toFixed())
|
|
setSizePercentage('100')
|
|
}, [bank, adjustedTokenMax])
|
|
|
|
const handleWithdraw = useCallback(async () => {
|
|
const client = mangoStore.getState().client
|
|
const group = mangoStore.getState().group
|
|
const mangoAccount = mangoStore.getState().mangoAccount.current
|
|
const actions = mangoStore.getState().actions
|
|
const withdrawAmount = parseFloat(inputAmount)
|
|
if (!mangoAccount || !group || !bank) return
|
|
|
|
setSubmitting(true)
|
|
|
|
const withdrawAll =
|
|
floorToDecimal(adjustedTokenMax, bank.mintDecimals).eq(
|
|
new Decimal(inputAmount),
|
|
) || sizePercentage === '100'
|
|
|
|
try {
|
|
const { signature: tx, slot } = withdrawAll
|
|
? await client.tokenWithdrawAllDepositForMint(
|
|
group,
|
|
mangoAccount,
|
|
bank.mint,
|
|
)
|
|
: await client.tokenWithdraw(
|
|
group,
|
|
mangoAccount,
|
|
bank.mint,
|
|
withdrawAmount,
|
|
false,
|
|
)
|
|
notify({
|
|
title: 'Transaction confirmed',
|
|
type: 'success',
|
|
txid: tx,
|
|
})
|
|
await actions.reloadMangoAccount(slot)
|
|
setSubmitting(false)
|
|
onSuccess()
|
|
} catch (e) {
|
|
console.error(e)
|
|
setSubmitting(false)
|
|
if (!isMangoError(e)) return
|
|
notify({
|
|
title: 'Transaction failed',
|
|
description: e.message,
|
|
txid: e?.txid,
|
|
type: 'error',
|
|
})
|
|
}
|
|
}, [adjustedTokenMax, bank, inputAmount, sizePercentage])
|
|
|
|
const handleSelectToken = useCallback((token: string) => {
|
|
setSelectedToken(token)
|
|
setShowTokenList(false)
|
|
}, [])
|
|
|
|
const initHealth = useMemo(() => {
|
|
return group && mangoAccount
|
|
? mangoAccount.getHealthRatioUi(group, HealthType.init)
|
|
: 100
|
|
}, [mangoAccount])
|
|
|
|
const showInsufficientBalance = inputAmount
|
|
? tokenMax.lt(new Decimal(inputAmount))
|
|
: false
|
|
|
|
return (
|
|
<>
|
|
<EnterBottomExitBottom
|
|
className="absolute bottom-0 left-0 z-20 h-full w-full overflow-auto rounded-lg bg-th-bkg-1 p-6"
|
|
show={showTokenList}
|
|
>
|
|
<BackButton onClick={() => setShowTokenList(false)} />
|
|
<h2 className="mb-4 text-center text-lg">
|
|
{t('select-withdraw-token')}
|
|
</h2>
|
|
<div className="flex items-center px-4 pb-2">
|
|
<div className="w-1/2 text-left">
|
|
<p className="text-xs">{t('token')}</p>
|
|
</div>
|
|
<div className="w-1/2 text-right">
|
|
<p className="text-xs">{t('available-balance')}</p>
|
|
</div>
|
|
</div>
|
|
<ActionTokenList
|
|
banks={banks}
|
|
onSelect={handleSelectToken}
|
|
valueKey="maxWithdraw"
|
|
/>
|
|
</EnterBottomExitBottom>
|
|
<FadeInFadeOut show={!showTokenList}>
|
|
<div
|
|
className="flex flex-col justify-between"
|
|
style={{ height: ACCOUNT_ACTION_MODAL_INNER_HEIGHT }}
|
|
>
|
|
<div>
|
|
{initHealth <= 0 ? (
|
|
<div className="mb-4">
|
|
<InlineNotification
|
|
type="error"
|
|
desc="You have no available collateral to withdraw."
|
|
/>
|
|
</div>
|
|
) : null}
|
|
{bank ? <TokenVaultWarnings bank={bank} type="withdraw" /> : null}
|
|
<div className="grid grid-cols-2">
|
|
<div className="col-span-2 flex justify-between">
|
|
<Label text={`${t('withdraw')} ${t('token')}`} />
|
|
{bank ? (
|
|
<MaxAmountButton
|
|
className="mb-2"
|
|
decimals={bank.mintDecimals}
|
|
label={t('max')}
|
|
onClick={setMax}
|
|
value={adjustedTokenMax}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
<div className="col-span-1">
|
|
<TokenListButton
|
|
token={selectedToken}
|
|
logo={<TokenLogo bank={bank} />}
|
|
setShowList={setShowTokenList}
|
|
/>
|
|
</div>
|
|
<div className="col-span-1">
|
|
<NumberFormat
|
|
name="amountIn"
|
|
id="amountIn"
|
|
inputMode="decimal"
|
|
thousandSeparator=","
|
|
allowNegative={false}
|
|
isNumericString={true}
|
|
decimalScale={bank?.mintDecimals || 6}
|
|
className={ACCOUNT_ACTIONS_NUMBER_FORMAT_CLASSES}
|
|
placeholder="0.00"
|
|
value={inputAmount}
|
|
onValueChange={(e: NumberFormatValues) =>
|
|
setInputAmount(
|
|
!Number.isNaN(Number(e.value)) ? e.value : '',
|
|
)
|
|
}
|
|
isAllowed={withValueLimit}
|
|
/>
|
|
</div>
|
|
<div className="col-span-2 mt-2">
|
|
<ButtonGroup
|
|
activeValue={sizePercentage}
|
|
className="font-mono"
|
|
onChange={(p) => handleSizePercentage(p)}
|
|
values={['10', '25', '50', '75', '100']}
|
|
unit="%"
|
|
/>
|
|
</div>
|
|
</div>
|
|
{bank ? (
|
|
<div className="my-6 space-y-1.5 border-y border-th-bkg-3 px-2 py-4">
|
|
<HealthImpactTokenChange
|
|
mintPk={bank.mint}
|
|
uiAmount={Number(inputAmount)}
|
|
/>
|
|
<div className="flex justify-between">
|
|
<p>{t('withdraw-amount')}</p>
|
|
<BankAmountWithValue amount={inputAmount} bank={bank} />
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
{connected ? (
|
|
<Button
|
|
onClick={handleWithdraw}
|
|
className="flex w-full items-center justify-center"
|
|
size="large"
|
|
disabled={
|
|
connected &&
|
|
(!inputAmount || showInsufficientBalance || initHealth <= 0)
|
|
}
|
|
>
|
|
{submitting ? (
|
|
<Loading className="mr-2 h-5 w-5" />
|
|
) : showInsufficientBalance ? (
|
|
<div className="flex items-center">
|
|
<ExclamationCircleIcon className="mr-2 h-5 w-5 flex-shrink-0" />
|
|
{t('swap:insufficient-balance', {
|
|
symbol: selectedToken,
|
|
})}
|
|
</div>
|
|
) : (
|
|
<div className="flex items-center">
|
|
<ArrowUpTrayIcon className="mr-2 h-5 w-5" />
|
|
{t('withdraw')}
|
|
</div>
|
|
)}
|
|
</Button>
|
|
) : (
|
|
<SecondaryConnectButton
|
|
className="flex w-full items-center justify-center"
|
|
isLarge
|
|
/>
|
|
)}
|
|
</div>
|
|
</FadeInFadeOut>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default WithdrawForm
|