mango-v4-ui/components/swap/SwapForm.tsx

504 lines
16 KiB
TypeScript
Raw Normal View History

2022-08-17 18:26:38 -07:00
import { useState, useCallback, useEffect, useMemo } from 'react'
2022-08-19 21:03:26 -07:00
import { PublicKey } from '@solana/web3.js'
2022-08-25 17:27:05 -07:00
import {
ArrowDownIcon,
ArrowRightIcon,
2022-09-07 17:47:59 -07:00
Cog8ToothIcon,
MagnifyingGlassIcon,
2022-08-25 17:27:05 -07:00
ExclamationCircleIcon,
2022-09-06 21:36:35 -07:00
} from '@heroicons/react/20/solid'
2022-08-03 14:46:37 -07:00
import { RouteInfo } from '@jup-ag/core'
2022-08-17 18:26:38 -07:00
import NumberFormat, { NumberFormatValues } from 'react-number-format'
import Decimal from 'decimal.js'
2022-09-12 08:53:57 -07:00
import mangoStore from '@store/mangoStore'
2022-07-05 20:37:49 -07:00
import ContentBox from '../shared/ContentBox'
import JupiterRouteInfo from './JupiterRouteInfo'
2022-09-01 10:33:29 -07:00
import TokenSelect from './TokenSelect'
2022-07-05 20:37:49 -07:00
import useDebounce from '../shared/useDebounce'
2022-08-26 10:17:31 -07:00
import { floorToDecimal, numberFormat } from '../../utils/numbers'
2022-08-15 15:18:23 -07:00
import { SwapLeverageSlider } from './LeverageSlider'
2022-07-15 05:50:29 -07:00
import { useTranslation } from 'next-i18next'
import SwapFormTokenList from './SwapFormTokenList'
2022-07-16 04:22:59 -07:00
import { Transition } from '@headlessui/react'
2022-08-12 05:40:26 -07:00
import Button, { IconButton, LinkButton } from '../shared/Button'
2022-07-17 04:48:33 -07:00
import ButtonGroup from '../forms/ButtonGroup'
2022-07-18 03:02:43 -07:00
import Loading from '../shared/Loading'
2022-07-23 19:48:26 -07:00
import { EnterBottomExitBottom } from '../shared/Transitions'
2022-08-03 14:46:37 -07:00
import useJupiter from './useJupiter'
2022-08-08 10:42:18 -07:00
import SwapSettings from './SwapSettings'
2022-08-15 04:28:36 -07:00
import SheenLoader from '../shared/SheenLoader'
2022-08-25 06:00:42 -07:00
import { HealthType } from '@blockworks-foundation/mango-v4'
2022-08-20 11:17:57 -07:00
import {
INPUT_TOKEN_DEFAULT,
OUTPUT_TOKEN_DEFAULT,
} from '../../utils/constants'
2022-08-26 10:17:31 -07:00
import { useTokenMax } from './useTokenMax'
2022-09-07 17:47:59 -07:00
import WalletIcon from '../icons/WalletIcon'
2022-07-18 03:02:43 -07:00
2022-08-17 18:26:38 -07:00
const MAX_DIGITS = 11
export const withValueLimit = (values: NumberFormatValues): boolean => {
2022-08-17 18:26:38 -07:00
return values.floatValue
? values.floatValue.toFixed(0).length <= MAX_DIGITS
: true
}
2022-08-19 21:03:26 -07:00
const SwapForm = () => {
2022-07-15 05:50:29 -07:00
const { t } = useTranslation('common')
2022-07-18 03:02:43 -07:00
const [selectedRoute, setSelectedRoute] = useState<RouteInfo>()
const [amountInFormValue, setAmountInFormValue] = useState('')
2022-07-22 08:40:53 -07:00
const [animateSwitchArrow, setAnimateSwitchArrow] = useState(0)
2022-07-16 04:22:59 -07:00
const [showTokenSelect, setShowTokenSelect] = useState('')
2022-08-08 10:42:18 -07:00
const [showSettings, setShowSettings] = useState(false)
2022-07-17 19:49:14 -07:00
const [showConfirm, setShowConfirm] = useState(false)
2022-07-22 08:40:53 -07:00
2022-07-10 19:01:16 -07:00
const set = mangoStore.getState().set
const useMargin = mangoStore((s) => s.swap.margin)
const slippage = mangoStore((s) => s.swap.slippage)
2022-08-25 06:00:42 -07:00
const mangoAccount = mangoStore((s) => s.mangoAccount.current)
const inputTokenInfo = mangoStore((s) => s.swap.inputTokenInfo)
const outputTokenInfo = mangoStore((s) => s.swap.outputTokenInfo)
2022-08-02 11:04:00 -07:00
const jupiterTokens = mangoStore((s) => s.jupiterTokens)
2022-07-17 19:49:14 -07:00
const connected = mangoStore((s) => s.connected)
const [debouncedAmountIn] = useDebounce(amountInFormValue, 300)
2022-08-25 15:03:28 -07:00
const {
amount: tokenMax,
amountWithBorrow,
decimals,
} = useTokenMax(useMargin)
2022-07-05 20:37:49 -07:00
2022-09-01 10:33:29 -07:00
const amountIn: Decimal | null = useMemo(() => {
return Number(debouncedAmountIn)
? new Decimal(debouncedAmountIn)
: new Decimal(0)
}, [debouncedAmountIn])
const { amountOut, jupiter, routes } = useJupiter({
inputTokenInfo,
outputTokenInfo,
inputAmount: debouncedAmountIn,
2022-08-03 14:46:37 -07:00
slippage,
})
2022-07-18 03:02:43 -07:00
useEffect(() => {
2022-08-03 14:46:37 -07:00
setSelectedRoute(routes[0])
}, [routes])
2022-07-18 03:02:43 -07:00
useEffect(() => {
setAmountInFormValue('')
}, [useMargin])
2022-08-17 18:26:38 -07:00
const handleAmountInChange = useCallback((e: NumberFormatValues) => {
setAmountInFormValue(e.value)
2022-08-17 18:26:38 -07:00
}, [])
2022-07-05 20:37:49 -07:00
2022-08-17 18:26:38 -07:00
const handleTokenInSelect = useCallback(
(mintAddress: string) => {
const inputTokenInfo = jupiterTokens.find(
(t: any) => t.address === mintAddress
)
const group = mangoStore.getState().group
if (group) {
const bank = group.getFirstBankByMint(new PublicKey(mintAddress))
2022-08-17 18:26:38 -07:00
set((s) => {
s.swap.inputBank = bank
2022-08-17 18:26:38 -07:00
s.swap.inputTokenInfo = inputTokenInfo
})
}
setShowTokenSelect('')
},
[jupiterTokens, set]
)
2022-08-10 13:23:19 -07:00
2022-08-17 18:26:38 -07:00
const handleTokenOutSelect = useCallback(
(mintAddress: string) => {
const outputTokenInfo = jupiterTokens.find(
(t: any) => t.address === mintAddress
)
const group = mangoStore.getState().group
if (group) {
const bank = group.getFirstBankByMint(new PublicKey(mintAddress))
2022-08-17 18:26:38 -07:00
set((s) => {
s.swap.outputBank = bank
2022-08-17 18:26:38 -07:00
s.swap.outputTokenInfo = outputTokenInfo
})
}
setShowTokenSelect('')
},
[jupiterTokens, set]
)
2022-07-05 20:37:49 -07:00
2022-08-17 18:26:38 -07:00
const handleSwitchTokens = useCallback(() => {
if (amountIn?.gt(0)) {
setAmountInFormValue(amountOut.toString())
}
const inputBank = mangoStore.getState().swap.inputBank
const outputBank = mangoStore.getState().swap.outputBank
set((s) => {
s.swap.inputBank = outputBank
s.swap.outputBank = inputBank
2022-07-25 22:27:53 -07:00
s.swap.inputTokenInfo = outputTokenInfo
s.swap.outputTokenInfo = inputTokenInfo
})
2022-08-17 18:26:38 -07:00
setAnimateSwitchArrow(
(prevanimateSwitchArrow) => prevanimateSwitchArrow + 1
)
2022-09-01 10:33:29 -07:00
}, [inputTokenInfo, outputTokenInfo, set, amountOut, amountIn])
2022-08-17 18:26:38 -07:00
2022-08-25 06:00:42 -07:00
const currentMaintHealth = useMemo(() => {
if (!mangoAccount) return 0
return mangoAccount.getHealthRatioUi(HealthType.maint)
}, [mangoAccount])
const maintProjectedHealth = useMemo(() => {
const group = mangoStore.getState().group
if (
!inputTokenInfo ||
!mangoAccount ||
!outputTokenInfo ||
!amountOut ||
!group
)
return 0
const simulatedHealthRatio =
mangoAccount.simHealthRatioWithTokenPositionUiChanges(
group,
[
{
mintPk: new PublicKey(inputTokenInfo.address),
uiTokenAmount: amountIn.toNumber() * -1,
},
{
mintPk: new PublicKey(outputTokenInfo.address),
uiTokenAmount: amountOut.toNumber(),
2022-08-25 06:00:42 -07:00
},
],
HealthType.maint
)
return simulatedHealthRatio! > 100
2022-08-25 06:00:42 -07:00
? 100
: simulatedHealthRatio! < 0
2022-08-25 06:00:42 -07:00
? 0
2022-09-04 23:32:10 -07:00
: Math.trunc(simulatedHealthRatio!)
2022-08-25 06:00:42 -07:00
}, [mangoAccount, inputTokenInfo, outputTokenInfo, amountIn, amountOut])
2022-08-17 18:26:38 -07:00
const isLoadingTradeDetails = useMemo(() => {
return (
amountIn.toNumber() && connected && (!selectedRoute || !outputTokenInfo)
)
}, [amountIn, connected, selectedRoute, outputTokenInfo])
2022-07-18 03:02:43 -07:00
2022-08-25 12:44:02 -07:00
const showHealthImpact = !!inputTokenInfo && !!outputTokenInfo && !!amountOut
const showInsufficientBalance = useMargin
? amountWithBorrow.lt(amountIn)
: tokenMax.lt(amountIn)
2022-08-25 17:27:05 -07:00
2022-07-05 20:37:49 -07:00
return (
2022-08-25 06:00:42 -07:00
<ContentBox hidePadding showBackground className="relative overflow-hidden">
<div className="p-6">
<Transition
className="thin-scroll absolute top-0 left-0 z-20 h-full w-full overflow-auto bg-th-bkg-2 p-6 pb-0"
show={showConfirm}
enter="transition ease-in duration-300"
enterFrom="translate-x-full"
enterTo="translate-x-0"
leave="transition ease-out duration-300"
leaveFrom="translate-x-0"
leaveTo="translate-x-full"
2022-07-17 04:48:33 -07:00
>
2022-08-25 06:00:42 -07:00
<JupiterRouteInfo
onClose={() => setShowConfirm(false)}
amountIn={amountIn}
slippage={slippage}
jupiter={jupiter}
routes={routes}
selectedRoute={selectedRoute}
setSelectedRoute={setSelectedRoute}
2022-07-16 04:22:59 -07:00
/>
2022-08-25 06:00:42 -07:00
</Transition>
<EnterBottomExitBottom
className="thin-scroll absolute bottom-0 left-0 z-20 h-full w-full overflow-auto bg-th-bkg-2 p-6 pb-0"
show={!!showTokenSelect}
>
<SwapFormTokenList
onClose={() => setShowTokenSelect('')}
onTokenSelect={
showTokenSelect === 'input'
? handleTokenInSelect
: handleTokenOutSelect
}
type={showTokenSelect}
2022-07-15 05:50:29 -07:00
/>
2022-08-25 06:00:42 -07:00
</EnterBottomExitBottom>
2022-08-25 12:44:02 -07:00
<EnterBottomExitBottom
className="thin-scroll absolute bottom-0 left-0 z-20 h-full w-full overflow-auto bg-th-bkg-2 p-6 pb-0"
show={showSettings}
>
<SwapSettings onClose={() => setShowSettings(false)} />
</EnterBottomExitBottom>
2022-08-25 06:00:42 -07:00
<div className="mb-4 flex items-center justify-between">
<h3>{t('trade')}</h3>
2022-09-11 17:22:37 -07:00
<div id="step-eight">
<IconButton
className="text-th-fgd-3"
onClick={() => setShowSettings(true)}
size="small"
>
<Cog8ToothIcon className="h-5 w-5" />
</IconButton>
</div>
2022-07-10 19:01:16 -07:00
</div>
2022-09-11 17:22:37 -07:00
<div id="step-nine" className="mb-2 flex items-center justify-between">
2022-08-25 06:00:42 -07:00
<p className="text-th-fgd-3">{t('sell')}</p>
<MaxSwapAmount
amountWithBorrow={amountWithBorrow}
useMargin={useMargin}
setAmountIn={setAmountInFormValue}
tokenMax={tokenMax}
decimals={decimals}
/>
2022-07-15 05:50:29 -07:00
</div>
2022-08-25 06:00:42 -07:00
<div className="mb-3 grid grid-cols-2">
<div className="col-span-1 rounded-lg rounded-r-none border border-r-0 border-th-bkg-4 bg-th-bkg-1">
<TokenSelect
tokenSymbol={inputTokenInfo?.symbol || INPUT_TOKEN_DEFAULT}
showTokenList={setShowTokenSelect}
type="input"
/>
</div>
<div className="col-span-1">
<NumberFormat
inputMode="decimal"
thousandSeparator=","
allowNegative={false}
isNumericString={true}
2022-08-25 06:00:42 -07:00
decimalScale={inputTokenInfo?.decimals || 6}
name="amountIn"
id="amountIn"
className="w-full rounded-lg rounded-l-none border border-th-bkg-4 bg-th-bkg-1 p-3 text-right text-xl font-bold tracking-wider text-th-fgd-1 focus:outline-none"
placeholder="0.00"
value={amountInFormValue}
onValueChange={handleAmountInChange}
isAllowed={withValueLimit}
/>
</div>
{!useMargin ? (
<PercentageSelectButtons
amountIn={amountInFormValue}
decimals={decimals}
setAmountIn={setAmountInFormValue}
tokenMax={tokenMax}
/>
) : null}
</div>
<div className="flex justify-center">
<button
className="rounded-full border border-th-bkg-4 p-1.5 text-th-fgd-3 md:hover:text-th-primary"
onClick={handleSwitchTokens}
>
<ArrowDownIcon
className="h-5 w-5"
style={
animateSwitchArrow % 2 == 0
? { transform: 'rotate(0deg)' }
: { transform: 'rotate(360deg)' }
}
/>
</button>
</div>
<p className="mb-2 text-th-fgd-3">{t('buy')}</p>
<div className="mb-3 grid grid-cols-2">
<div className="col-span-1 rounded-lg rounded-r-none border border-r-0 border-th-bkg-4 bg-th-bkg-1">
<TokenSelect
tokenSymbol={outputTokenInfo?.symbol || OUTPUT_TOKEN_DEFAULT}
showTokenList={setShowTokenSelect}
type="output"
/>
</div>
<div className="flex h-[54px] w-full items-center justify-end rounded-r-lg border border-th-bkg-4 bg-th-bkg-3 text-right text-xl font-bold tracking-wider text-th-fgd-3">
{isLoadingTradeDetails ? (
<div className="w-full">
2022-09-08 18:00:47 -07:00
<SheenLoader className="flex flex-1 rounded-l-none">
<div className="h-[52px] w-full rounded-r-lg bg-th-bkg-4" />
2022-08-25 06:00:42 -07:00
</SheenLoader>
</div>
) : (
<span className="p-3">
{amountOut ? numberFormat.format(amountOut.toNumber()) : ''}
2022-08-25 06:00:42 -07:00
</span>
)}
</div>
</div>
{useMargin ? (
<>
<div className="mb-1 flex items-center justify-between">
<p className="text-th-fgd-3">{t('leverage')}</p>
{/* <p className="text-th-fgd-1">0.00x</p> */}
2022-08-15 04:28:36 -07:00
</div>
2022-08-25 06:00:42 -07:00
<SwapLeverageSlider
amount={amountIn.toNumber()}
onChange={setAmountInFormValue}
/>
</>
) : null}
<Button
onClick={() => setShowConfirm(true)}
className="mt-6 flex w-full items-center justify-center text-base"
disabled={
!amountIn.toNumber() ||
!connected ||
!routes?.length ||
!selectedRoute ||
!outputTokenInfo ||
2022-08-25 17:27:05 -07:00
showInsufficientBalance
2022-08-25 06:00:42 -07:00
}
size="large"
>
{connected ? (
2022-08-25 17:27:05 -07:00
showInsufficientBalance ? (
<div className="flex items-center">
<ExclamationCircleIcon className="mr-2 h-5 w-5 flex-shrink-0" />
{t('trade:insufficient-balance', {
symbol: inputTokenInfo?.symbol,
})}
</div>
) : isLoadingTradeDetails ? (
2022-08-25 06:00:42 -07:00
<Loading />
) : (
2022-09-07 17:47:59 -07:00
<div className="flex items-center">
<MagnifyingGlassIcon className="mr-2 h-5 w-5" />
{t('trade:review-trade')}
</div>
2022-08-25 06:00:42 -07:00
)
2022-08-15 04:28:36 -07:00
) : (
2022-09-07 17:47:59 -07:00
<div className="flex items-center">
<WalletIcon className="mr-2 h-5 w-5" />
{t('connect')}
</div>
2022-08-15 04:28:36 -07:00
)}
2022-08-25 06:00:42 -07:00
</Button>
2022-07-05 20:37:49 -07:00
</div>
2022-08-25 12:44:02 -07:00
2022-09-11 17:22:37 -07:00
{/* {!!mangoAccount ? ( */}
<div
id="step-ten"
className={`bg-th-bkg-3 px-6 transition-all ${
showHealthImpact ? 'max-h-40 py-4 ' : 'h-0'
}`}
>
<div className="flex justify-between">
<p className="text-sm">{t('health-impact')}</p>
<div className="flex items-center space-x-2">
<p className="text-sm text-th-fgd-1">{currentMaintHealth}%</p>
<ArrowRightIcon className="h-4 w-4 text-th-fgd-4" />
<p
className={`${
maintProjectedHealth! < 50 && maintProjectedHealth! > 15
? 'text-th-orange'
: maintProjectedHealth! <= 15
? 'text-th-red'
: 'text-th-green'
} text-sm`}
>
{maintProjectedHealth!}%{' '}
<span
className={`text-xs ${
maintProjectedHealth! >= currentMaintHealth!
? 'text-th-green'
: 'text-th-red'
}`}
2022-08-25 06:00:42 -07:00
>
2022-09-11 17:22:37 -07:00
({maintProjectedHealth! >= currentMaintHealth! ? '+' : ''}
{maintProjectedHealth! - currentMaintHealth!}%)
</span>
</p>
2022-07-17 04:48:33 -07:00
</div>
</div>
2022-09-11 17:22:37 -07:00
</div>
{/* ) : null} */}
2022-07-05 20:37:49 -07:00
</ContentBox>
)
}
2022-08-19 21:03:26 -07:00
export default SwapForm
2022-08-15 09:02:46 -07:00
const MaxSwapAmount = ({
amountWithBorrow,
2022-08-15 09:02:46 -07:00
setAmountIn,
tokenMax,
useMargin,
decimals,
2022-08-15 09:02:46 -07:00
}: {
amountWithBorrow: Decimal
setAmountIn: (x: string) => void
tokenMax: Decimal
useMargin: boolean
decimals: number
2022-08-15 09:02:46 -07:00
}) => {
const mangoAccountLoading = mangoStore((s) => s.mangoAccount.initialLoad)
2022-08-15 09:02:46 -07:00
const { t } = useTranslation('common')
const setMaxInputAmount = () => {
const amountIn = useMargin ? amountWithBorrow : tokenMax
setAmountIn(amountIn.toFixed(decimals))
2022-08-15 09:02:46 -07:00
}
if (mangoAccountLoading) return null
const maxAmount = useMargin ? amountWithBorrow : tokenMax
2022-08-15 09:02:46 -07:00
return (
<LinkButton className="no-underline" onClick={setMaxInputAmount}>
<span className="font-normal text-th-fgd-4">{t('max')}:</span>
<span className="mx-1 text-th-fgd-3 underline">
{maxAmount.toFixed()}
</span>
2022-08-15 09:02:46 -07:00
</LinkButton>
)
}
const PercentageSelectButtons = ({
amountIn,
decimals,
2022-08-15 09:02:46 -07:00
setAmountIn,
tokenMax,
2022-08-15 09:02:46 -07:00
}: {
amountIn: string
decimals: number
setAmountIn: (x: string) => any
tokenMax: Decimal
2022-08-15 09:02:46 -07:00
}) => {
const [sizePercentage, setSizePercentage] = useState('')
useEffect(() => {
2022-09-13 17:19:56 -07:00
if (tokenMax.gt(0) && amountIn && tokenMax.eq(amountIn)) {
setSizePercentage('100')
}
}, [amountIn, tokenMax])
2022-08-15 09:02:46 -07:00
const handleSizePercentage = (percentage: string) => {
setSizePercentage(percentage)
if (tokenMax.gt(0)) {
let amount = tokenMax.mul(percentage).div(100)
2022-08-15 21:19:09 -07:00
if (percentage !== '100') {
amount = floorToDecimal(amount, decimals)
}
setAmountIn(amount.toFixed())
2022-08-15 20:16:20 -07:00
} else {
setAmountIn('0')
2022-08-15 09:02:46 -07:00
}
}
return (
<div className="col-span-2 mt-2">
<ButtonGroup
activeValue={sizePercentage}
onChange={(p) => handleSizePercentage(p)}
values={['10', '25', '50', '75', '100']}
unit="%"
/>
</div>
)
}