277 lines
11 KiB
TypeScript
277 lines
11 KiB
TypeScript
import FormatNumericValue from '@components/shared/FormatNumericValue'
|
|
import { Table, Td, Th, TrBody, TrHead } from '@components/shared/TableElements'
|
|
import Tooltip from '@components/shared/Tooltip'
|
|
import { Disclosure, Transition } from '@headlessui/react'
|
|
import { ChevronDownIcon } from '@heroicons/react/20/solid'
|
|
import { useTranslation } from 'next-i18next'
|
|
import useMangoGroup from 'hooks/useMangoGroup'
|
|
import useMangoAccount from 'hooks/useMangoAccount'
|
|
import { useViewport } from 'hooks/useViewport'
|
|
import { breakpoints } from 'utils/theme'
|
|
import { MouseEventHandler } from 'react'
|
|
import MarketLogos from '@components/trade/MarketLogos'
|
|
import { HealthContribution } from 'types'
|
|
|
|
const MarketsHealthTable = ({
|
|
initMarkets,
|
|
maintMarkets,
|
|
handleLegendClick,
|
|
handleLegendMouseEnter,
|
|
handleLegendMouseLeave,
|
|
}: {
|
|
initMarkets: HealthContribution[]
|
|
maintMarkets: HealthContribution[]
|
|
handleLegendClick: (cont: HealthContribution) => void
|
|
handleLegendMouseEnter: (cont: HealthContribution) => void
|
|
handleLegendMouseLeave: MouseEventHandler
|
|
}) => {
|
|
const { t } = useTranslation(['common', 'account', 'trade'])
|
|
const { group } = useMangoGroup()
|
|
const { mangoAccount } = useMangoAccount()
|
|
const { width } = useViewport()
|
|
const isMobile = width ? width < breakpoints.sm : false
|
|
return group && mangoAccount ? (
|
|
!isMobile ? (
|
|
<Table>
|
|
<thead>
|
|
<TrHead>
|
|
<Th className="text-left">{t('market')}</Th>
|
|
<Th>
|
|
<div className="flex justify-end">
|
|
<Tooltip content={t('account:tooltip-init-health')}>
|
|
<span className="tooltip-underline">
|
|
{t('account:init-health-contribution')}
|
|
</span>
|
|
</Tooltip>
|
|
</div>
|
|
</Th>
|
|
<Th>
|
|
<div className="flex justify-end">
|
|
<Tooltip content={t('account:tooltip-maint-health')}>
|
|
<span className="tooltip-underline">
|
|
{t('account:maint-health-contribution')}
|
|
</span>
|
|
</Tooltip>
|
|
</div>
|
|
</Th>
|
|
</TrHead>
|
|
</thead>
|
|
<tbody>
|
|
{maintMarkets
|
|
.sort((a, b) => b.contribution - a.contribution)
|
|
.map((cont) => {
|
|
const { asset, contribution, isAsset } = cont
|
|
const market = group.getSerum3MarketByName(asset)
|
|
const bank = group.banksMapByTokenIndex.get(
|
|
market.baseTokenIndex,
|
|
)?.[0]
|
|
|
|
let initAssetWeight = 0
|
|
let initLiabWeight = 0
|
|
let maintAssetWeight = 0
|
|
let maintLiabWeight = 0
|
|
|
|
if (bank) {
|
|
initAssetWeight = bank
|
|
.scaledInitAssetWeight(bank.price)
|
|
.toNumber()
|
|
initLiabWeight = bank
|
|
.scaledInitLiabWeight(bank.price)
|
|
.toNumber()
|
|
maintAssetWeight = bank.maintAssetWeight.toNumber()
|
|
maintLiabWeight = bank.maintLiabWeight.toNumber()
|
|
}
|
|
|
|
const assetOrLiabMultiplier = isAsset ? 1 : -1
|
|
|
|
const initContribution =
|
|
(initMarkets.find((cont) => cont.asset === asset)
|
|
?.contribution || 0) * assetOrLiabMultiplier
|
|
|
|
const maintContribution = contribution * assetOrLiabMultiplier
|
|
|
|
return (
|
|
<TrBody
|
|
key={asset}
|
|
className="cursor-pointer md:hover:bg-th-bkg-2"
|
|
onClick={() => handleLegendClick(cont)}
|
|
onMouseEnter={() => handleLegendMouseEnter(cont)}
|
|
onMouseLeave={handleLegendMouseLeave}
|
|
>
|
|
<Td>
|
|
<div className="flex items-center">
|
|
<MarketLogos market={market} />
|
|
<p className="font-body">{asset}</p>
|
|
</div>
|
|
</Td>
|
|
<Td>
|
|
<div className="text-right">
|
|
<p>
|
|
<FormatNumericValue
|
|
value={initContribution}
|
|
decimals={2}
|
|
isUsd
|
|
/>
|
|
</p>
|
|
<p className="text-th-fgd-3">
|
|
{initContribution > 0
|
|
? initAssetWeight.toFixed(2)
|
|
: initContribution < 0
|
|
? initLiabWeight.toFixed(2)
|
|
: 0}
|
|
x
|
|
</p>
|
|
</div>
|
|
</Td>
|
|
<Td>
|
|
<div className="text-right">
|
|
<p>
|
|
<FormatNumericValue
|
|
value={maintContribution}
|
|
decimals={2}
|
|
isUsd
|
|
/>
|
|
</p>
|
|
<p className="text-th-fgd-3">
|
|
{maintContribution > 0
|
|
? maintAssetWeight.toFixed(2)
|
|
: maintContribution < 0
|
|
? maintLiabWeight.toFixed(2)
|
|
: 0}
|
|
x
|
|
</p>
|
|
</div>
|
|
</Td>
|
|
</TrBody>
|
|
)
|
|
})}
|
|
</tbody>
|
|
</Table>
|
|
) : (
|
|
<div className="mt-3 border-y border-th-bkg-3">
|
|
{maintMarkets
|
|
.sort((a, b) => b.contribution - a.contribution)
|
|
.map((cont) => {
|
|
const { asset, contribution, isAsset } = cont
|
|
const market = group.getSerum3MarketByName(asset)
|
|
const bank = group.banksMapByTokenIndex.get(
|
|
market.baseTokenIndex,
|
|
)?.[0]
|
|
|
|
let initAssetWeight = 0
|
|
let initLiabWeight = 0
|
|
let maintAssetWeight = 0
|
|
let maintLiabWeight = 0
|
|
|
|
if (bank) {
|
|
initAssetWeight = bank
|
|
.scaledInitAssetWeight(bank.price)
|
|
.toNumber()
|
|
initLiabWeight = bank.scaledInitLiabWeight(bank.price).toNumber()
|
|
maintAssetWeight = bank.maintAssetWeight.toNumber()
|
|
maintLiabWeight = bank.maintLiabWeight.toNumber()
|
|
}
|
|
|
|
const assetOrLiabMultiplier = isAsset ? 1 : -1
|
|
|
|
const initContribution =
|
|
(initMarkets.find((cont) => cont.asset === asset)?.contribution ||
|
|
0) * assetOrLiabMultiplier
|
|
|
|
const maintContribution = contribution * assetOrLiabMultiplier
|
|
|
|
return (
|
|
<Disclosure key={asset}>
|
|
{({ open }) => (
|
|
<>
|
|
<Disclosure.Button
|
|
className={`w-full border-t border-th-bkg-3 p-4 text-left first:border-t-0 focus:outline-none`}
|
|
>
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center">
|
|
<MarketLogos market={market} />
|
|
<div>
|
|
<p className="text-th-fgd-1">{asset}</p>
|
|
</div>
|
|
</div>
|
|
<ChevronDownIcon
|
|
className={`${
|
|
open ? 'rotate-180' : 'rotate-360'
|
|
} h-6 w-6 flex-shrink-0 text-th-fgd-3`}
|
|
/>
|
|
</div>
|
|
</Disclosure.Button>
|
|
<Transition
|
|
enter="transition ease-in duration-200"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
>
|
|
<Disclosure.Panel>
|
|
<div className="mx-4 grid grid-cols-2 gap-4 border-t border-th-bkg-3 pt-4 pb-4">
|
|
<div className="col-span-1">
|
|
<p className="text-xs text-th-fgd-3">
|
|
<Tooltip
|
|
content={t('account:tooltip-init-health')}
|
|
>
|
|
<span className="tooltip-underline">
|
|
{t('account:init-health-contribution')}
|
|
</span>
|
|
</Tooltip>
|
|
</p>
|
|
<p className="font-mono text-th-fgd-2">
|
|
<FormatNumericValue
|
|
value={initContribution}
|
|
decimals={2}
|
|
isUsd
|
|
/>
|
|
</p>
|
|
<p className="font-mono text-th-fgd-3">
|
|
{initContribution > 0
|
|
? initAssetWeight.toFixed(2)
|
|
: initContribution < 0
|
|
? initLiabWeight.toFixed(2)
|
|
: 0}
|
|
x
|
|
</p>
|
|
</div>
|
|
<div className="col-span-1">
|
|
<p className="text-xs text-th-fgd-3">
|
|
<Tooltip
|
|
content={t('account:tooltip-maint-health')}
|
|
>
|
|
<span className="tooltip-underline">
|
|
{t('account:maint-health-contribution')}
|
|
</span>
|
|
</Tooltip>
|
|
</p>
|
|
<p className="font-mono text-th-fgd-2">
|
|
<FormatNumericValue
|
|
value={maintContribution}
|
|
decimals={2}
|
|
isUsd
|
|
/>
|
|
</p>
|
|
<p className="font-mono text-th-fgd-3">
|
|
{maintContribution > 0
|
|
? maintAssetWeight.toFixed(2)
|
|
: maintContribution < 0
|
|
? maintLiabWeight.toFixed(2)
|
|
: 0}
|
|
x
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</Disclosure.Panel>
|
|
</Transition>
|
|
</>
|
|
)}
|
|
</Disclosure>
|
|
)
|
|
})}
|
|
</div>
|
|
)
|
|
) : null
|
|
}
|
|
|
|
export default MarketsHealthTable
|