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

142 lines
4.3 KiB
TypeScript
Raw Normal View History

2023-02-09 16:38:20 -08:00
import { useTranslation } from 'next-i18next'
import { useMemo, useState } from 'react'
import dynamic from 'next/dynamic'
import mangoStore from '@store/mangoStore'
const DetailedAreaChart = dynamic(
() => import('@components/shared/DetailedAreaChart'),
{ ssr: false }
)
interface OiValueItem {
date: string
openInterest: number
}
interface FeeValueItem {
date: string
feeValue: number
}
const MangoPerpStatsCharts = () => {
const { t } = useTranslation(['common', 'token', 'trade'])
const loadingPerpStats = mangoStore((s) => s.perpStats.loading)
const perpStats = mangoStore((s) => s.perpStats.data)
const [oiDaysToShow, setOiDaysToShow] = useState('30')
const [feesDaysToShow, setFeesDaysToShow] = useState('30')
// const perpMarkets = mangoStore((s) => s.perpMarkets)
// const currentTotalOpenInterestValue = useMemo(() => {
// if (!perpMarkets.length) return 0
// return perpMarkets.reduce((a: number, c: PerpMarket) => {
// const value = a + c.openInterest.toNumber() * c.uiPrice
// return value
// }, 0)
// }, [perpMarkets])
const totalFeeValues = useMemo(() => {
if (!perpStats.length) return []
const values = perpStats.reduce((a, c) => {
const hasDate = a.find((d: any) => d.date === c.date_hour)
if (!hasDate) {
a.push({
date: c.date_hour,
feeValue: c.fees_accrued,
})
} else {
hasDate.feeValue = hasDate.feeValue + c.fees_accrued
}
return a
}, [])
return values.reverse()
}, [perpStats])
const totalOpenInterestValues = useMemo(() => {
if (!perpStats) return []
const values = perpStats.reduce((a, c) => {
const hasDate = a.find((d: any) => d.date === c.date_hour)
if (!hasDate) {
a.push({
date: c.date_hour,
openInterest: Math.floor(c.open_interest * c.price),
})
} else {
hasDate.openInterest =
hasDate.openInterest + Math.floor(c.open_interest * c.price)
}
return a
}, [])
return values.reverse()
}, [perpStats])
const filteredOiValues = useMemo(() => {
if (!totalOpenInterestValues.length) return []
if (oiDaysToShow !== '30') {
const seconds = Number(oiDaysToShow) * 86400
const data = totalOpenInterestValues.filter((d: OiValueItem) => {
const dataTime = new Date(d.date).getTime() / 1000
const now = new Date().getTime() / 1000
const limit = now - seconds
return dataTime >= limit
})
return data
}
return totalOpenInterestValues
}, [totalOpenInterestValues, oiDaysToShow])
const filteredFeesValues = useMemo(() => {
if (!totalFeeValues.length) return []
if (feesDaysToShow !== '30') {
const seconds = Number(feesDaysToShow) * 86400
const data = totalFeeValues.filter((d: FeeValueItem) => {
const dataTime = new Date(d.date).getTime() / 1000
const now = new Date().getTime() / 1000
const limit = now - seconds
return dataTime >= limit
})
return data
}
return totalFeeValues
}, [totalFeeValues, feesDaysToShow])
return (
<>
{totalFeeValues.length ? (
<div className="col-span-2 border-b border-th-bkg-3 py-4 px-6 md:col-span-1">
<DetailedAreaChart
data={filteredOiValues}
daysToShow={oiDaysToShow}
setDaysToShow={setOiDaysToShow}
heightClass="h-64"
loading={loadingPerpStats}
loaderHeightClass="h-[350px]"
prefix="$"
tickFormat={(x) => `$${Math.floor(x)}`}
title={t('trade:open-interest')}
xKey="date"
yKey={'openInterest'}
/>
</div>
) : null}
{totalOpenInterestValues.length ? (
<div className="col-span-2 border-b border-th-bkg-3 py-4 px-6 md:col-span-1 md:border-l md:pl-6">
<DetailedAreaChart
data={filteredFeesValues}
daysToShow={feesDaysToShow}
setDaysToShow={setFeesDaysToShow}
heightClass="h-64"
loading={loadingPerpStats}
loaderHeightClass="h-[350px]"
prefix="$"
tickFormat={(x) => `$${x.toFixed(2)}`}
title="Perp Fees"
xKey="date"
yKey={'feeValue'}
/>
</div>
) : null}
</>
)
}
export default MangoPerpStatsCharts