282 lines
8.8 KiB
TypeScript
282 lines
8.8 KiB
TypeScript
import React, { FunctionComponent, useEffect, useState } from 'react'
|
|
import { ExclamationCircleIcon } from '@heroicons/react/outline'
|
|
import { ChevronLeftIcon } from '@heroicons/react/solid'
|
|
import Modal from './Modal'
|
|
import Input from './Input'
|
|
import AccountSelect from './AccountSelect'
|
|
import { ElementTitle } from './styles'
|
|
import useMangoStore from '../stores/useMangoStore'
|
|
import Loading from './Loading'
|
|
import Button, { LinkButton } from './Button'
|
|
import Slider from './Slider'
|
|
import InlineNotification from './InlineNotification'
|
|
import { deposit } from '../utils/mango'
|
|
import { notify } from '../utils/notifications'
|
|
import { sleep } from '../utils'
|
|
|
|
interface DepositModalProps {
|
|
onClose: () => void
|
|
isOpen: boolean
|
|
settleDeficit?: string
|
|
tokenSymbol?: string
|
|
}
|
|
|
|
const DepositModal: FunctionComponent<DepositModalProps> = ({
|
|
isOpen,
|
|
onClose,
|
|
settleDeficit,
|
|
tokenSymbol = '',
|
|
}) => {
|
|
const [inputAmount, setInputAmount] = useState<string>(settleDeficit || '')
|
|
const [submitting, setSubmitting] = useState(false)
|
|
const [showConfirm, setShowConfirm] = useState(false)
|
|
const [invalidAmountMessage, setInvalidAmountMessage] = useState('')
|
|
const [sliderPercentage, setSliderPercentage] = useState(0)
|
|
const [maxButtonTransition, setMaxButtonTransition] = useState(false)
|
|
const walletTokens = useMangoStore((s) => s.wallet.tokens)
|
|
const actions = useMangoStore((s) => s.actions)
|
|
const [selectedAccount, setSelectedAccount] = useState(walletTokens[0])
|
|
const mangoAccount = useMangoStore((s) => s.selectedMangoAccount.current)
|
|
|
|
useEffect(() => {
|
|
if (tokenSymbol) {
|
|
const symbolAccount = walletTokens.find(
|
|
(a) => a.config.symbol === tokenSymbol
|
|
)
|
|
if (symbolAccount) {
|
|
setSelectedAccount(symbolAccount)
|
|
} else {
|
|
setSelectedAccount(null)
|
|
}
|
|
}
|
|
}, [tokenSymbol, walletTokens])
|
|
|
|
const handleAccountSelect = (account) => {
|
|
setInputAmount('')
|
|
setSliderPercentage(0)
|
|
setInvalidAmountMessage('')
|
|
setSelectedAccount(account)
|
|
}
|
|
|
|
const setMaxForSelectedAccount = () => {
|
|
setInputAmount(selectedAccount.uiBalance.toString())
|
|
setSliderPercentage(100)
|
|
setInvalidAmountMessage('')
|
|
setMaxButtonTransition(true)
|
|
}
|
|
|
|
const handleDeposit = () => {
|
|
const mangoAccount = useMangoStore.getState().selectedMangoAccount.current
|
|
|
|
setSubmitting(true)
|
|
deposit({
|
|
amount: parseFloat(inputAmount),
|
|
fromTokenAcc: selectedAccount.account,
|
|
mangoAccount,
|
|
})
|
|
.then((response) => {
|
|
notify({
|
|
title: 'Deposit successful',
|
|
type: 'success',
|
|
txid: response.toString(),
|
|
})
|
|
setSubmitting(false)
|
|
onClose()
|
|
sleep(500).then(() => {
|
|
mangoAccount
|
|
? actions.reloadMangoAccount()
|
|
: actions.fetchMangoAccounts()
|
|
actions.fetchWalletTokens()
|
|
})
|
|
})
|
|
.catch((err) => {
|
|
notify({
|
|
title: 'Deposit failed',
|
|
description: err.message,
|
|
type: 'error',
|
|
})
|
|
})
|
|
}
|
|
|
|
const validateAmountInput = (amount) => {
|
|
if (Number(amount) <= 0) {
|
|
setInvalidAmountMessage('Enter an amount to deposit')
|
|
}
|
|
if (selectedAccount && Number(amount) > selectedAccount.uiBalance) {
|
|
setInvalidAmountMessage(
|
|
'Insufficient balance. Reduce the amount to deposit'
|
|
)
|
|
}
|
|
}
|
|
|
|
const onChangeAmountInput = (amount) => {
|
|
setInputAmount(amount)
|
|
|
|
if (!selectedAccount) {
|
|
setInvalidAmountMessage(
|
|
'Please fund wallet with one of the supported assets.'
|
|
)
|
|
return
|
|
}
|
|
|
|
const max = selectedAccount.uiBalance
|
|
setSliderPercentage((amount / max) * 100)
|
|
setInvalidAmountMessage('')
|
|
}
|
|
|
|
const onChangeSlider = async (percentage) => {
|
|
setSliderPercentage(percentage)
|
|
|
|
if (!selectedAccount) {
|
|
setInvalidAmountMessage(
|
|
'Please fund wallet with one of the supported assets.'
|
|
)
|
|
return
|
|
}
|
|
|
|
const max = selectedAccount.uiBalance
|
|
const amount = (percentage / 100) * max
|
|
if (percentage === 100) {
|
|
setInputAmount(amount.toString())
|
|
} else {
|
|
setInputAmount(amount.toString())
|
|
}
|
|
setInvalidAmountMessage('')
|
|
validateAmountInput(amount)
|
|
}
|
|
|
|
// turn off slider transition for dragging slider handle interaction
|
|
useEffect(() => {
|
|
if (maxButtonTransition) {
|
|
setMaxButtonTransition(false)
|
|
}
|
|
}, [maxButtonTransition])
|
|
|
|
return (
|
|
<Modal isOpen={isOpen} onClose={onClose}>
|
|
{!showConfirm ? (
|
|
<>
|
|
<Modal.Header>
|
|
<ElementTitle noMarignBottom>Deposit Funds</ElementTitle>
|
|
</Modal.Header>
|
|
{tokenSymbol && !selectedAccount ? (
|
|
<InlineNotification
|
|
desc={`Add ${tokenSymbol} to your wallet and fund it with ${tokenSymbol} to deposit.`}
|
|
title={`No ${tokenSymbol} wallet address found`}
|
|
type="error"
|
|
/>
|
|
) : null}
|
|
{settleDeficit ? (
|
|
<InlineNotification
|
|
desc={`Deposit ${settleDeficit} ${tokenSymbol} before settling your borrow.`}
|
|
title="Not enough balance to settle"
|
|
type="error"
|
|
/>
|
|
) : null}
|
|
<AccountSelect
|
|
accounts={walletTokens}
|
|
selectedAccount={selectedAccount}
|
|
onSelectAccount={handleAccountSelect}
|
|
/>
|
|
<div className="flex justify-between pb-2 pt-4">
|
|
<div className={`text-th-fgd-1`}>Amount</div>
|
|
<div
|
|
className="text-th-fgd-1 underline cursor-pointer default-transition hover:text-th-primary hover:no-underline"
|
|
onClick={setMaxForSelectedAccount}
|
|
>
|
|
Max
|
|
</div>
|
|
</div>
|
|
<div className="flex">
|
|
<Input
|
|
type="number"
|
|
min="0"
|
|
className={`border border-th-fgd-4 flex-grow pr-11`}
|
|
placeholder="0.00"
|
|
error={!!invalidAmountMessage}
|
|
onBlur={(e) => validateAmountInput(e.target.value)}
|
|
value={inputAmount}
|
|
onChange={(e) => onChangeAmountInput(e.target.value)}
|
|
suffix={selectedAccount?.config.symbol}
|
|
/>
|
|
</div>
|
|
{invalidAmountMessage ? (
|
|
<div className="flex items-center pt-1.5 text-th-red">
|
|
<ExclamationCircleIcon className="h-4 w-4 mr-1.5" />
|
|
{invalidAmountMessage}
|
|
</div>
|
|
) : null}
|
|
<div className="pt-3 pb-4">
|
|
<Slider
|
|
disabled={null}
|
|
value={sliderPercentage}
|
|
onChange={(v) => onChangeSlider(v)}
|
|
step={1}
|
|
maxButtonTransition={maxButtonTransition}
|
|
/>
|
|
</div>
|
|
<div className={`pt-8 flex justify-center`}>
|
|
<Button
|
|
onClick={() => setShowConfirm(true)}
|
|
className="w-full"
|
|
disabled={
|
|
!inputAmount ||
|
|
parseFloat(inputAmount) <= 0 ||
|
|
!selectedAccount ||
|
|
parseFloat(inputAmount) > selectedAccount.uiBalance
|
|
}
|
|
>
|
|
Next
|
|
</Button>
|
|
</div>
|
|
{!mangoAccount ? (
|
|
<div className="flex text-th-fgd-4 text-xxs mt-1">
|
|
<div className="mx-auto">
|
|
You need 0.035 SOL to create a mango account.
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</>
|
|
) : (
|
|
<>
|
|
<Modal.Header>
|
|
<ElementTitle noMarignBottom>Confirm Deposit</ElementTitle>
|
|
</Modal.Header>
|
|
<div className="bg-th-bkg-1 p-4 rounded-lg text-th-fgd-1 text-center">
|
|
<div className="text-th-fgd-3 pb-1">{`You're about to deposit`}</div>
|
|
<div className="flex items-center justify-center">
|
|
<div className="font-semibold relative text-xl">
|
|
{inputAmount}
|
|
<span className="absolute bottom-0.5 font-normal ml-1.5 text-xs text-th-fgd-4">
|
|
{selectedAccount?.config.symbol}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className={`mt-5 flex justify-center`}>
|
|
<Button
|
|
onClick={handleDeposit}
|
|
className="w-full"
|
|
disabled={submitting}
|
|
>
|
|
<div className={`flex items-center justify-center`}>
|
|
{submitting && <Loading className="-ml-1 mr-3" />}
|
|
Deposit
|
|
</div>
|
|
</Button>
|
|
</div>
|
|
<LinkButton
|
|
className="flex items-center mt-4 text-th-fgd-3"
|
|
onClick={() => setShowConfirm(false)}
|
|
>
|
|
<ChevronLeftIcon className="h-5 w-5 mr-1" />
|
|
Back
|
|
</LinkButton>
|
|
</>
|
|
)}
|
|
</Modal>
|
|
)
|
|
}
|
|
|
|
export default React.memo(DepositModal)
|