83 lines
2.6 KiB
TypeScript
83 lines
2.6 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 } from '@blockworks-foundation/mango-client'
|
||
|
|
||
|
interface MarketNavItemProps {
|
||
|
market: any
|
||
|
clearSearchString?: () => void
|
||
|
buttonRef?: RefObject<HTMLElement>
|
||
|
}
|
||
|
|
||
|
const MarketNavItem: FunctionComponent<MarketNavItemProps> = ({
|
||
|
market,
|
||
|
clearSearchString,
|
||
|
buttonRef,
|
||
|
}) => {
|
||
|
const { asPath } = useRouter()
|
||
|
const router = useRouter()
|
||
|
const mangoGroup = useMangoStore((s) => s.selectedMangoGroup.current)
|
||
|
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 (clearSearchString) {
|
||
|
clearSearchString()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const getMarketLeverage = (market) => {
|
||
|
if (!mangoGroup) return 1
|
||
|
const ws = getWeights(mangoGroup, market.marketIndex, 'Init')
|
||
|
const w = market.name.includes('PERP')
|
||
|
? ws.perpAssetWeight
|
||
|
: ws.spotAssetWeight
|
||
|
return Math.round((100 * -1) / (w.toNumber() - 1)) / 100
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className="text-th-fgd-3">
|
||
|
<div className="flex items-center justify-between">
|
||
|
<div className="flex items-center">
|
||
|
<FavoriteMarketButton market={market} />
|
||
|
<button className="font-normal" onClick={() => selectMarket(market)}>
|
||
|
<div
|
||
|
className={`flex items-center text-xs hover:text-th-primary w-full whitespace-nowrap ${
|
||
|
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(market)}x
|
||
|
</span>
|
||
|
</div>
|
||
|
</button>
|
||
|
</div>
|
||
|
<div className="flex items-center">
|
||
|
<div
|
||
|
className={`text-xs ${
|
||
|
mktInfo
|
||
|
? mktInfo.change24h >= 0
|
||
|
? 'text-th-green'
|
||
|
: 'text-th-red'
|
||
|
: 'text-th-fgd-4'
|
||
|
}`}
|
||
|
>
|
||
|
{mktInfo ? `${(mktInfo.change24h * 100).toFixed(1)}%` : 'N/A'}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default MarketNavItem
|