18c7547c00
* added repay action percentage buffer * moved repay amount calculation to RepayFunds component * refetch interval added to credit account positions query * feat: revamp borrow and repay components to modals * remove references to deleted components * cosmo signing client added to wallet store * amount decimal normalized for borrow action * amount decimals conversion lifted for borrow and repay * refactor: moved hooks to mutations folder * update button disable condition and min input value * refactor: reset modal states when reopened * react-number-format dependency and borrow/repay modals revamp * renamed borrow modal state variable * style: borrow table ui revamp
158 lines
5.0 KiB
TypeScript
158 lines
5.0 KiB
TypeScript
import React, { useMemo, useRef, useState } from 'react'
|
|
import BigNumber from 'bignumber.js'
|
|
|
|
import Container from 'components/Container'
|
|
import useAllowedCoins from 'hooks/useAllowedCoins'
|
|
import { getTokenDecimals, getTokenInfo } from 'utils/tokens'
|
|
import useCreditAccountPositions from 'hooks/useCreditAccountPositions'
|
|
import useCreditManagerStore from 'stores/useCreditManagerStore'
|
|
import useMarkets from 'hooks/useMarkets'
|
|
import useTokenPrices from 'hooks/useTokenPrices'
|
|
import BorrowModal from 'components/BorrowModal'
|
|
import RepayModal from 'components/RepayModal'
|
|
import BorrowTable from 'components/Borrow/BorrowTable'
|
|
import useRedbankBalances from 'hooks/useRedbankBalances'
|
|
|
|
type ModalState = {
|
|
show: 'borrow' | 'repay' | false
|
|
data: {
|
|
tokenDenom: string
|
|
}
|
|
}
|
|
|
|
const Borrow = () => {
|
|
const [modalState, setModalState] = useState<ModalState>({
|
|
show: false,
|
|
data: { tokenDenom: '' },
|
|
})
|
|
|
|
const selectedAccount = useCreditManagerStore((s) => s.selectedAccount)
|
|
|
|
const { data: allowedCoinsData } = useAllowedCoins()
|
|
const { data: positionsData } = useCreditAccountPositions(selectedAccount ?? '')
|
|
const { data: marketsData } = useMarkets()
|
|
const { data: tokenPrices } = useTokenPrices()
|
|
const { data: redbankBalances } = useRedbankBalances()
|
|
|
|
// recreate modals and reset state whenever ref changes
|
|
const modalId = useRef(0)
|
|
|
|
const borrowedAssetsMap = useMemo(() => {
|
|
let borrowedAssetsMap: Map<string, string> = new Map()
|
|
|
|
positionsData?.debts.forEach((coin) => {
|
|
borrowedAssetsMap.set(coin.denom, coin.amount)
|
|
})
|
|
|
|
return borrowedAssetsMap
|
|
}, [positionsData])
|
|
|
|
const { borrowedAssets, notBorrowedAssets } = useMemo(() => {
|
|
return {
|
|
borrowedAssets:
|
|
allowedCoinsData
|
|
?.filter((denom) => borrowedAssetsMap.has(denom))
|
|
.map((denom) => {
|
|
const { symbol, chain, icon } = getTokenInfo(denom)
|
|
const borrowRate = Number(marketsData?.[denom].borrow_rate) || 0
|
|
const marketLiquidity = BigNumber(redbankBalances?.[denom] ?? 0)
|
|
.div(10 ** getTokenDecimals(denom))
|
|
.toNumber()
|
|
|
|
const borrowAmount = BigNumber(borrowedAssetsMap.get(denom) as string)
|
|
.div(10 ** getTokenDecimals(denom))
|
|
.toNumber()
|
|
const borrowValue = borrowAmount * (tokenPrices?.[denom] ?? 0)
|
|
|
|
const rowData = {
|
|
denom,
|
|
symbol,
|
|
icon,
|
|
chain,
|
|
borrowed: {
|
|
amount: borrowAmount,
|
|
value: borrowValue,
|
|
},
|
|
borrowRate,
|
|
marketLiquidity,
|
|
}
|
|
|
|
return rowData
|
|
}) ?? [],
|
|
notBorrowedAssets:
|
|
allowedCoinsData
|
|
?.filter((denom) => !borrowedAssetsMap.has(denom))
|
|
.map((denom) => {
|
|
const { symbol, chain, icon } = getTokenInfo(denom)
|
|
const borrowRate = Number(marketsData?.[denom].borrow_rate) || 0
|
|
const marketLiquidity = BigNumber(redbankBalances?.[denom] ?? 0)
|
|
.div(10 ** getTokenDecimals(denom))
|
|
.toNumber()
|
|
|
|
const rowData = {
|
|
denom,
|
|
symbol,
|
|
icon,
|
|
chain,
|
|
borrowed: null,
|
|
borrowRate,
|
|
marketLiquidity,
|
|
}
|
|
|
|
return rowData
|
|
}) ?? [],
|
|
}
|
|
}, [allowedCoinsData, borrowedAssetsMap, marketsData, redbankBalances, tokenPrices])
|
|
|
|
const handleBorrowClick = (denom: string) => {
|
|
setModalState({ show: 'borrow', data: { tokenDenom: denom } })
|
|
modalId.current += 1
|
|
}
|
|
|
|
const handleRepayClick = (denom: string) => {
|
|
setModalState({ show: 'repay', data: { tokenDenom: denom } })
|
|
modalId.current += 1
|
|
}
|
|
|
|
return (
|
|
<div className="flex items-start gap-4">
|
|
<div className="flex-1">
|
|
<Container className="mb-4">
|
|
<div>
|
|
<h3 className="mb-7 text-center text-xl font-medium uppercase">Borrowings</h3>
|
|
<BorrowTable
|
|
data={borrowedAssets}
|
|
onBorrowClick={handleBorrowClick}
|
|
onRepayClick={handleRepayClick}
|
|
/>
|
|
</div>
|
|
</Container>
|
|
<Container>
|
|
<div>
|
|
<h3 className="mb-7 text-center text-xl font-medium uppercase">Available to Borrow</h3>
|
|
<BorrowTable
|
|
data={notBorrowedAssets}
|
|
onBorrowClick={handleBorrowClick}
|
|
onRepayClick={handleRepayClick}
|
|
/>
|
|
</div>
|
|
</Container>
|
|
</div>
|
|
<BorrowModal
|
|
key={`borrowModal_${modalId.current}`}
|
|
tokenDenom={modalState.data.tokenDenom}
|
|
show={modalState.show === 'borrow'}
|
|
onClose={() => setModalState({ ...modalState, show: false })}
|
|
/>
|
|
<RepayModal
|
|
key={`repayModal${modalId.current}`}
|
|
tokenDenom={modalState.data.tokenDenom}
|
|
show={modalState.show === 'repay'}
|
|
onClose={() => setModalState({ ...modalState, show: false })}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Borrow
|