358 lines
13 KiB
TypeScript
358 lines
13 KiB
TypeScript
import { Serum3Market } from '@blockworks-foundation/mango-v4'
|
||
import { useTranslation } from 'next-i18next'
|
||
import { useTheme } from 'next-themes'
|
||
import { useMemo } from 'react'
|
||
import { useViewport } from '../../hooks/useViewport'
|
||
import mangoStore from '@store/mangoStore'
|
||
import { COLORS } from '../../styles/colors'
|
||
import { breakpoints } from '../../utils/theme'
|
||
import ContentBox from '../shared/ContentBox'
|
||
import Change from '../shared/Change'
|
||
import MarketLogos from '@components/trade/MarketLogos'
|
||
import useMangoGroup from 'hooks/useMangoGroup'
|
||
import { Table, Td, Th, TrBody, TrHead } from '@components/shared/TableElements'
|
||
import FormatNumericValue from '@components/shared/FormatNumericValue'
|
||
import { useBirdeyeMarketPrices } from 'hooks/useBirdeyeMarketPrices'
|
||
import { floorToDecimal, getDecimalCount, numberCompacter } from 'utils/numbers'
|
||
import SimpleAreaChart from '@components/shared/SimpleAreaChart'
|
||
import { useQuery } from '@tanstack/react-query'
|
||
import { fetchSpotVolume } from '@components/trade/AdvancedMarketHeader'
|
||
import { TickerData } from 'types'
|
||
import { Disclosure, Transition } from '@headlessui/react'
|
||
import { ChevronDownIcon } from '@heroicons/react/20/solid'
|
||
import MarketChange from '@components/shared/MarketChange'
|
||
|
||
const SpotMarketsTable = () => {
|
||
const { t } = useTranslation('common')
|
||
const { group } = useMangoGroup()
|
||
const serumMarkets = mangoStore((s) => s.serumMarkets)
|
||
const { theme } = useTheme()
|
||
const { width } = useViewport()
|
||
const showTableView = width ? width > breakpoints.md : false
|
||
const { data: birdeyePrices, isLoading: loadingPrices } =
|
||
useBirdeyeMarketPrices()
|
||
|
||
const { data: spotVolumeData } = useQuery(
|
||
['spot-market-volume'],
|
||
() => fetchSpotVolume(),
|
||
{
|
||
cacheTime: 1000 * 60 * 10,
|
||
staleTime: 1000 * 60,
|
||
retry: 3,
|
||
refetchOnWindowFocus: false,
|
||
}
|
||
)
|
||
|
||
return (
|
||
<ContentBox hideBorder hidePadding>
|
||
{showTableView ? (
|
||
<Table>
|
||
<thead>
|
||
<TrHead>
|
||
<Th className="text-left">{t('market')}</Th>
|
||
<Th className="text-right">{t('price')}</Th>
|
||
<Th className="hidden text-right md:block"></Th>
|
||
<Th className="text-right">{t('rolling-change')}</Th>
|
||
<Th className="text-right">{t('trade:24h-volume')}</Th>
|
||
</TrHead>
|
||
</thead>
|
||
<tbody>
|
||
{serumMarkets
|
||
.slice()
|
||
.sort((a, b) => a.name.localeCompare(b.name))
|
||
.map((mkt) => {
|
||
const baseBank = group?.getFirstBankByTokenIndex(
|
||
mkt.baseTokenIndex
|
||
)
|
||
const quoteBank = group?.getFirstBankByTokenIndex(
|
||
mkt.quoteTokenIndex
|
||
)
|
||
const market = group?.getSerum3ExternalMarket(
|
||
mkt.serumMarketExternal
|
||
)
|
||
let price
|
||
if (baseBank && market && quoteBank) {
|
||
price = floorToDecimal(
|
||
baseBank.uiPrice / quoteBank.uiPrice,
|
||
getDecimalCount(market.tickSize)
|
||
).toNumber()
|
||
}
|
||
let tickerData: TickerData | undefined
|
||
if (spotVolumeData && spotVolumeData.length) {
|
||
tickerData = spotVolumeData.find(
|
||
(m: TickerData) => m.ticker_id === mkt.name
|
||
)
|
||
}
|
||
|
||
const birdeyeData = birdeyePrices.find(
|
||
(m) => m.mint === mkt.serumMarketExternal.toString()
|
||
)
|
||
|
||
const birdeyeChange =
|
||
birdeyeData && price
|
||
? ((price - birdeyeData.data[0].value) /
|
||
birdeyeData.data[0].value) *
|
||
100
|
||
: 0
|
||
|
||
const chartData = birdeyeData ? birdeyeData.data : undefined
|
||
|
||
return (
|
||
<TrBody key={mkt.publicKey.toString()}>
|
||
<Td>
|
||
<div className="flex items-center">
|
||
<MarketLogos market={mkt} size="large" />
|
||
<p className="font-body">{mkt.name}</p>
|
||
</div>
|
||
</Td>
|
||
<Td>
|
||
<div className="flex flex-col text-right">
|
||
<p>
|
||
{price ? (
|
||
<>
|
||
<FormatNumericValue
|
||
value={price}
|
||
isUsd={quoteBank?.name === 'USDC'}
|
||
/>{' '}
|
||
{quoteBank?.name !== 'USDC' ? (
|
||
<span className="font-body text-th-fgd-4">
|
||
{quoteBank?.name}
|
||
</span>
|
||
) : null}
|
||
</>
|
||
) : (
|
||
'–'
|
||
)}
|
||
</p>
|
||
</div>
|
||
</Td>
|
||
<Td>
|
||
{!loadingPrices ? (
|
||
chartData !== undefined ? (
|
||
<div className="h-10 w-24">
|
||
<SimpleAreaChart
|
||
color={
|
||
birdeyeChange >= 0
|
||
? COLORS.UP[theme]
|
||
: COLORS.DOWN[theme]
|
||
}
|
||
data={chartData}
|
||
name={baseBank!.name + quoteBank!.name}
|
||
xKey="unixTime"
|
||
yKey="value"
|
||
/>
|
||
</div>
|
||
) : baseBank?.name === 'USDC' ||
|
||
baseBank?.name === 'USDT' ? null : (
|
||
<p className="mb-0 text-th-fgd-4">
|
||
{t('unavailable')}
|
||
</p>
|
||
)
|
||
) : (
|
||
<div className="h-10 w-[104px] animate-pulse rounded bg-th-bkg-3" />
|
||
)}
|
||
</Td>
|
||
<Td>
|
||
<div className="flex flex-col items-end">
|
||
<MarketChange market={mkt} />
|
||
</div>
|
||
</Td>
|
||
<Td>
|
||
<div className="flex flex-col text-right">
|
||
<p>
|
||
{tickerData ? (
|
||
<span>
|
||
{numberCompacter.format(
|
||
parseFloat(tickerData.target_volume)
|
||
)}{' '}
|
||
<span className="font-body text-th-fgd-4">
|
||
{quoteBank?.name}
|
||
</span>
|
||
</span>
|
||
) : (
|
||
'–'
|
||
)}
|
||
</p>
|
||
</div>
|
||
</Td>
|
||
</TrBody>
|
||
)
|
||
})}
|
||
</tbody>
|
||
</Table>
|
||
) : (
|
||
<div className="border-b border-th-bkg-3">
|
||
{serumMarkets
|
||
.slice()
|
||
.sort((a, b) => a.name.localeCompare(b.name))
|
||
.map((market) => {
|
||
return (
|
||
<MobileSpotMarketItem
|
||
key={market.publicKey.toString()}
|
||
market={market}
|
||
spotVolumeData={spotVolumeData}
|
||
/>
|
||
)
|
||
})}
|
||
</div>
|
||
)}
|
||
</ContentBox>
|
||
)
|
||
}
|
||
|
||
export default SpotMarketsTable
|
||
|
||
const MobileSpotMarketItem = ({
|
||
market,
|
||
spotVolumeData,
|
||
}: {
|
||
market: Serum3Market
|
||
spotVolumeData: TickerData[] | undefined
|
||
}) => {
|
||
const { t } = useTranslation('common')
|
||
const { data: birdeyePrices, isLoading: loadingPrices } =
|
||
useBirdeyeMarketPrices()
|
||
const { group } = useMangoGroup()
|
||
const { theme } = useTheme()
|
||
const baseBank = group?.getFirstBankByTokenIndex(market.baseTokenIndex)
|
||
const quoteBank = group?.getFirstBankByTokenIndex(market.quoteTokenIndex)
|
||
const serumMarket = group?.getSerum3ExternalMarket(market.serumMarketExternal)
|
||
|
||
const price = useMemo(() => {
|
||
if (!baseBank || !quoteBank || !serumMarket) return 0
|
||
return floorToDecimal(
|
||
baseBank.uiPrice / quoteBank.uiPrice,
|
||
getDecimalCount(serumMarket.tickSize)
|
||
).toNumber()
|
||
}, [baseBank, quoteBank, serumMarket])
|
||
|
||
const birdeyeData = useMemo(() => {
|
||
if (!loadingPrices) {
|
||
return birdeyePrices.find(
|
||
(m) => m.mint === market.serumMarketExternal.toString()
|
||
)
|
||
}
|
||
return null
|
||
}, [loadingPrices])
|
||
|
||
const change = useMemo(() => {
|
||
if (birdeyeData && price) {
|
||
return (
|
||
((price - birdeyeData.data[0].value) / birdeyeData.data[0].value) * 100
|
||
)
|
||
}
|
||
return 0
|
||
}, [birdeyeData, price])
|
||
|
||
const chartData = useMemo(() => {
|
||
if (birdeyeData) {
|
||
return birdeyeData.data
|
||
}
|
||
return undefined
|
||
}, [birdeyeData])
|
||
|
||
let tickerData: TickerData | undefined
|
||
if (spotVolumeData && spotVolumeData.length) {
|
||
tickerData = spotVolumeData.find(
|
||
(m: TickerData) => m.ticker_id === market.name
|
||
)
|
||
}
|
||
|
||
return (
|
||
<Disclosure>
|
||
{({ 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">
|
||
<div className="flex flex-shrink-0 items-center">
|
||
<MarketLogos market={market} />
|
||
</div>
|
||
<p className="leading-none text-th-fgd-1">{market.name}</p>
|
||
</div>
|
||
<div className="flex items-center space-x-3">
|
||
{!loadingPrices ? (
|
||
chartData !== undefined ? (
|
||
<div className="h-10 w-20">
|
||
<SimpleAreaChart
|
||
color={
|
||
change >= 0 ? COLORS.UP[theme] : COLORS.DOWN[theme]
|
||
}
|
||
data={chartData}
|
||
name={baseBank!.name + quoteBank!.name}
|
||
xKey="unixTime"
|
||
yKey="value"
|
||
/>
|
||
</div>
|
||
) : (
|
||
<p className="mb-0 text-th-fgd-4">{t('unavailable')}</p>
|
||
)
|
||
) : (
|
||
<div className="h-10 w-[104px] animate-pulse rounded bg-th-bkg-3" />
|
||
)}
|
||
<Change change={change} suffix="%" />
|
||
<ChevronDownIcon
|
||
className={`${
|
||
open ? 'rotate-180' : 'rotate-360'
|
||
} h-6 w-6 flex-shrink-0 text-th-fgd-3`}
|
||
/>
|
||
</div>
|
||
</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">{t('price')}</p>
|
||
<p className="font-mono text-th-fgd-2">
|
||
{price ? (
|
||
<>
|
||
<FormatNumericValue
|
||
value={price}
|
||
isUsd={quoteBank?.name === 'USDC'}
|
||
/>{' '}
|
||
{quoteBank?.name !== 'USDC' ? (
|
||
<span className="font-body text-th-fgd-4">
|
||
{quoteBank?.name}
|
||
</span>
|
||
) : null}
|
||
</>
|
||
) : (
|
||
'-'
|
||
)}
|
||
</p>
|
||
</div>
|
||
<div className="col-span-1">
|
||
<p className="text-xs text-th-fgd-3">
|
||
{t('trade:24h-volume')}
|
||
</p>
|
||
<p className="font-mono text-th-fgd-2">
|
||
{tickerData ? (
|
||
<span>
|
||
{numberCompacter.format(
|
||
parseFloat(tickerData.target_volume)
|
||
)}{' '}
|
||
<span className="font-body text-th-fgd-4">
|
||
{quoteBank?.name}
|
||
</span>
|
||
</span>
|
||
) : (
|
||
'–'
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</Disclosure.Panel>
|
||
</Transition>
|
||
</>
|
||
)}
|
||
</Disclosure>
|
||
)
|
||
}
|