mango-v4-ui/components/stats/TokenStats.tsx

310 lines
11 KiB
TypeScript
Raw Normal View History

2022-08-23 15:33:09 -07:00
import { Transition } from '@headlessui/react'
2022-09-06 21:36:35 -07:00
import {
ChevronDownIcon,
QuestionMarkCircleIcon,
} from '@heroicons/react/20/solid'
2022-08-23 15:33:09 -07:00
import { useTranslation } from 'next-i18next'
import Image from 'next/image'
import { Fragment, useMemo, useState } from 'react'
import { useViewport } from '../../hooks/useViewport'
2022-09-12 08:53:57 -07:00
import mangoStore from '@store/mangoStore'
2022-08-23 15:33:09 -07:00
import { formatDecimal, formatFixedDecimals } from '../../utils/numbers'
import { breakpoints } from '../../utils/theme'
import { IconButton } from '../shared/Button'
import ContentBox from '../shared/ContentBox'
import InfoTooltip from '../shared/InfoTooltip'
import FlipNumbers from 'react-flip-numbers'
2022-08-23 15:33:09 -07:00
const TokenList = () => {
const { t } = useTranslation('common')
const [showTokenDetails, setShowTokenDetails] = useState('')
const group = mangoStore((s) => s.group)
const jupiterTokens = mangoStore((s) => s.jupiterTokens)
const { width } = useViewport()
const showTableView = width ? width > breakpoints.md : false
const banks = useMemo(() => {
if (group) {
const rawBanks = Array.from(group?.banksMapByName, ([key, value]) => ({
key,
value,
}))
return rawBanks
}
return []
}, [group])
const handleShowTokenDetails = (name: string) => {
showTokenDetails ? setShowTokenDetails('') : setShowTokenDetails(name)
}
const [totalDepositValue, totalBorrowValue] = useMemo(() => {
if (banks.length) {
return [
banks.reduce(
(a, c) => a + c.value[0].uiPrice! * c.value[0].uiDeposits(),
0
),
banks.reduce(
(a, c) => a + c.value[0].uiPrice! * c.value[0].uiBorrows(),
0
),
]
}
return []
}, [banks])
2022-08-23 15:33:09 -07:00
return (
<ContentBox hideBorder hidePadding className="mt-0 md:mt-4">
<div className="mb-8 grid grid-cols-2 gap-x-6 border-b border-th-bkg-3 text-5xl md:border-b-0">
<div className="col-span-2 border-t border-th-bkg-3 py-4 md:col-span-1 md:border-t-0">
<p className="mb-2.5 leading-none">{t('total-deposit-value')}</p>
<div className="flex items-center font-bold">
<FlipNumbers
height={48}
width={32}
play
delay={0.05}
duration={1}
numbers={formatFixedDecimals(totalDepositValue!, true)}
/>
</div>
</div>
<div className="col-span-2 border-t border-th-bkg-3 py-4 md:col-span-1 md:border-l md:border-t-0 md:pl-6">
<p className="mb-2.5 leading-none">{t('total-borrow-value')}</p>
<div className="flex items-center font-bold">
<FlipNumbers
height={48}
width={32}
play
delay={0.05}
duration={1}
numbers={formatFixedDecimals(totalBorrowValue!, true)}
/>
</div>
</div>
</div>
2022-08-23 15:33:09 -07:00
{showTableView ? (
<table className="-mt-1 min-w-full">
<thead>
<tr>
<th className="text-left">{t('token')}</th>
<th className="text-right">{t('price')}</th>
<th className="text-right">{t('total-deposits')}</th>
<th className="text-right">{t('total-borrows')}</th>
<th>
<div className="flex items-center justify-center">
<span>{t('rates')}</span>
2022-08-23 15:33:09 -07:00
<InfoTooltip
content={
'The deposit rate (green) will automatically be paid on positive balances and the borrow rate (red) will automatically be charged on negative balances. '
2022-08-23 15:33:09 -07:00
}
/>
</div>
</th>
<th>
<div className="flex items-center justify-end">
<span>{t('utilization')}</span>
2022-08-23 15:33:09 -07:00
<InfoTooltip
content={
'The percentage of deposits that have been lent out.'
2022-08-23 15:33:09 -07:00
}
/>
</div>
</th>
<th>
<div className="flex items-center justify-end">
2022-08-24 17:53:31 -07:00
<span>{t('asset-weight')}</span>
<InfoTooltip content={t('asset-weight-desc')} />
</div>
</th>
<th>
<div className="flex items-center justify-end">
<span>{t('liability-weight')}</span>
{/* <InfoTooltip
2022-08-23 17:45:01 -07:00
content=""
/> */}
2022-08-23 15:33:09 -07:00
</div>
</th>
</tr>
</thead>
<tbody>
{banks.map(({ key, value }) => {
const bank = value[0]
const oraclePrice = bank.uiPrice
let logoURI
if (jupiterTokens.length) {
logoURI = jupiterTokens.find(
(t) => t.address === bank.mint.toString()
)!.logoURI
}
return (
<tr key={key}>
<td>
2022-08-23 15:33:09 -07:00
<div className="flex items-center">
<div className="mr-2.5 flex flex-shrink-0 items-center">
{logoURI ? (
<Image alt="" width="26" height="26" src={logoURI} />
) : (
<QuestionMarkCircleIcon className="h-7 w-7 text-th-fgd-3" />
)}
</div>
<p>{bank.name}</p>
</div>
</td>
<td>
2022-08-23 15:33:09 -07:00
<div className="flex flex-col text-right">
<p>{formatFixedDecimals(oraclePrice!, true)}</p>
2022-08-23 15:33:09 -07:00
</div>
</td>
<td>
2022-08-23 15:33:09 -07:00
<div className="flex flex-col text-right">
<p>{formatFixedDecimals(bank.uiDeposits())}</p>
</div>
</td>
<td>
2022-08-23 15:33:09 -07:00
<div className="flex flex-col text-right">
<p>{formatFixedDecimals(bank.uiBorrows())}</p>
</div>
</td>
<td>
2022-08-23 15:33:09 -07:00
<div className="flex justify-center space-x-2">
<p className="text-th-green">
{formatDecimal(bank.getDepositRateUi(), 2, {
fixed: true,
})}
%
</p>
<span className="text-th-fgd-4">|</span>
<p className="text-th-red">
{formatDecimal(bank.getBorrowRateUi(), 2, {
fixed: true,
})}
%
</p>
</div>
</td>
<td>
<div className="flex flex-col text-right">
<p>
{bank.uiDeposits() > 0
? formatDecimal(
(bank.uiBorrows() / bank.uiDeposits()) * 100,
1,
{ fixed: true }
)
: '0.0'}
%
</p>
</div>
</td>
<td>
<div className="text-right">
<p>{bank.initAssetWeight.toFixed(2)}</p>
</div>
</td>
<td>
<div className="text-right">
<p>{bank.initLiabWeight.toFixed(2)}</p>
2022-08-23 15:33:09 -07:00
</div>
</td>
</tr>
)
})}
</tbody>
</table>
) : (
<div className="mt-4 space-y-2">
{banks.map(({ key, value }) => {
const bank = value[0]
const oraclePrice = bank.uiPrice
let logoURI
if (jupiterTokens.length) {
logoURI = jupiterTokens.find(
(t) => t.address === bank.mint.toString()
)!.logoURI
}
return (
<div key={key} className="rounded-md border border-th-bkg-4 p-4">
<div className="flex items-center justify-between">
<div className="flex items-center">
<div className="mr-2.5 flex flex-shrink-0 items-center">
{logoURI ? (
<Image alt="" width="24" height="24" src={logoURI} />
) : (
<QuestionMarkCircleIcon className="h-7 w-7 text-th-fgd-3" />
)}
</div>
<div>
<p>{bank.name}</p>
</div>
</div>
<div className="flex items-center space-x-3">
<IconButton
onClick={() => handleShowTokenDetails(bank.name)}
>
<ChevronDownIcon
className={`${
showTokenDetails === bank.name
? 'rotate-180'
: 'rotate-360'
} h-6 w-6 flex-shrink-0 text-th-fgd-1`}
/>
</IconButton>
</div>
</div>
<Transition
appear={true}
show={showTokenDetails === bank.name}
as={Fragment}
enter="transition ease-in duration-200"
enterFrom="opacity-0"
enterTo="opacity-100"
leave="transition ease-out"
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<div className="mt-4 grid grid-cols-2 gap-4 border-t border-th-bkg-3 pt-4">
<div className="col-span-1">
<p className="text-xs text-th-fgd-3">{t('price')}</p>
<p className="font-bold">
${formatDecimal(oraclePrice!, 2)}
2022-08-23 15:33:09 -07:00
</p>
</div>
<div className="col-span-1">
<p className="text-xs text-th-fgd-3">{t('rates')}</p>
<p className="space-x-2 font-bold">
<span className="text-th-green">
{formatDecimal(bank.getDepositRate().toNumber(), 2)}%
</span>
<span className="font-normal text-th-fgd-4">|</span>
<span className="text-th-red">
{formatDecimal(bank.getBorrowRate().toNumber(), 2)}%
</span>
</p>
</div>
<div className="col-span-1">
<p className="text-xs text-th-fgd-3">{t('liquidity')}</p>
<p className="font-bold">
{group
? group.getTokenVaultBalanceByMintUi(bank.mint)
: '-'}
2022-08-23 15:33:09 -07:00
</p>
</div>
</div>
</Transition>
</div>
)
})}
</div>
)}
</ContentBox>
)
}
export default TokenList