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

55 lines
1.4 KiB
TypeScript
Raw Normal View History

import MaxAmountButton from '@components/shared/MaxAmountButton'
import mangoStore from '@store/mangoStore'
2023-01-23 19:04:05 -08:00
import Decimal from 'decimal.js'
import { useTranslation } from 'next-i18next'
import { floorToDecimal } from 'utils/numbers'
import { useTokenMax } from './useTokenMax'
const MaxSwapAmount = ({
setAmountIn,
useMargin,
}: {
setAmountIn: (x: string) => void
useMargin: boolean
}) => {
const { t } = useTranslation('common')
const mangoAccountLoading = mangoStore((s) => s.mangoAccount.initialLoad)
const {
amount: tokenMax,
amountWithBorrow,
decimals,
} = useTokenMax(useMargin)
if (mangoAccountLoading) return null
2023-01-23 19:04:05 -08:00
const setMax = (value: Decimal) => {
setAmountIn(floorToDecimal(value, decimals).toFixed())
2023-01-23 19:04:05 -08:00
}
2023-01-05 21:26:54 -08:00
return (
<div className="flex flex-wrap justify-end pl-6 text-xs">
2023-05-11 19:25:16 -07:00
{tokenMax.lt(amountWithBorrow) ||
(tokenMax.eq(amountWithBorrow) && !useMargin) ? (
<MaxAmountButton
className="mb-0.5"
decimals={decimals}
2023-08-10 16:45:40 -07:00
label={useMargin ? t('bal') : t('max')}
onClick={() => setMax(tokenMax)}
value={tokenMax}
/>
) : null}
{useMargin ? (
<MaxAmountButton
className="mb-0.5 ml-2"
2023-01-23 19:04:05 -08:00
decimals={decimals}
label={t('max')}
2023-01-23 19:04:05 -08:00
onClick={() => setMax(amountWithBorrow)}
value={amountWithBorrow}
/>
) : null}
</div>
)
}
export default MaxSwapAmount