mango-ui-v3/components/MarketNavItem.tsx

91 lines
2.7 KiB
TypeScript

import { FunctionComponent, RefObject } from 'react'
import { useRouter } from 'next/router'
import { initialMarket } from './SettingsModal'
import { FavoriteMarketButton } from './TradeNavMenu'
import useMangoStore from '../stores/useMangoStore'
import {
getWeights,
getMarketIndexBySymbol,
} from '@blockworks-foundation/mango-client'
const getMarketLeverage = (mangoGroup, mangoGroupConfig, market) => {
if (!mangoGroup) return 1
const marketIndex = getMarketIndexBySymbol(
mangoGroupConfig,
market.baseSymbol
)
const ws = getWeights(mangoGroup, marketIndex, 'Init')
const w = market.name.includes('PERP')
? ws.perpAssetWeight
: ws.spotAssetWeight
return Math.round((100 * -1) / (w.toNumber() - 1)) / 100
}
interface MarketNavItemProps {
market: any
onClick?: () => void
buttonRef?: RefObject<HTMLElement>
}
const MarketNavItem: FunctionComponent<MarketNavItemProps> = ({
market,
onClick,
buttonRef,
}) => {
const { asPath } = useRouter()
const router = useRouter()
const mangoGroup = useMangoStore((s) => s.selectedMangoGroup.current)
const mangoGroupConfig = useMangoStore((s) => s.selectedMangoGroup.config)
const marketInfo = useMangoStore((s) => s.marketInfo)
const mktInfo = marketInfo.find((info) => info.name === market.name)
const selectMarket = (market) => {
buttonRef?.current?.click()
router.push(`/?name=${market.name}`, undefined, { shallow: true })
if (onClick) {
onClick()
}
}
return (
<div className="text-th-fgd-3">
<div className="flex items-center">
<FavoriteMarketButton market={market} />
<button
className="flex w-full items-center justify-between font-normal"
onClick={() => selectMarket(market)}
>
<div
className={`default-transition flex w-full items-center whitespace-nowrap py-1.5 text-xs hover:text-th-primary ${
asPath.includes(market.name) ||
(asPath === '/' && initialMarket.name === market.name)
? 'text-th-primary'
: 'text-th-fgd-1'
}`}
>
<span className="ml-2">{market.name}</span>
<span className="ml-1.5 text-xs text-th-fgd-4">
{getMarketLeverage(mangoGroup, mangoGroupConfig, market)}x
</span>
</div>
<div
className={`text-xs ${
mktInfo
? mktInfo.change24h >= 0
? 'text-th-green'
: 'text-th-red'
: 'text-th-fgd-4'
}`}
>
{mktInfo ? `${(mktInfo.change24h * 100).toFixed(1)}%` : ''}
</div>
</button>
</div>
</div>
)
}
export default MarketNavItem