2021-07-17 06:49:52 -07:00
|
|
|
import { useEffect } from 'react'
|
|
|
|
import { useRouter } from 'next/router'
|
|
|
|
import useMangoGroupConfig from '../../hooks/useMangoGroupConfig'
|
|
|
|
import useMangoStore from '../../stores/useMangoStore'
|
|
|
|
import { getMarketByBaseSymbolAndKind } from '@blockworks-foundation/mango-client'
|
|
|
|
import TopBar from '../../components/TopBar'
|
|
|
|
import TradePageGrid from '../../components/TradePageGrid'
|
|
|
|
import MarketSelect from '../../components/MarketSelect'
|
|
|
|
import MarketHeader from '../../components/MarketHeader'
|
|
|
|
|
|
|
|
const PerpMarket = () => {
|
|
|
|
const groupConfig = useMangoGroupConfig()
|
|
|
|
const setMangoStore = useMangoStore((s) => s.set)
|
|
|
|
const router = useRouter()
|
|
|
|
const { market } = router.query
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (market) {
|
|
|
|
const newMarket = getMarketByBaseSymbolAndKind(
|
|
|
|
groupConfig,
|
|
|
|
market.toString().toUpperCase(),
|
|
|
|
'perp'
|
|
|
|
)
|
|
|
|
setMangoStore((state) => {
|
|
|
|
state.selectedMarket.current = null
|
|
|
|
state.selectedMarket.config = newMarket
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}, [market])
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={`bg-th-bkg-1 text-th-fgd-1 transition-all `}>
|
|
|
|
<TopBar />
|
|
|
|
<MarketSelect />
|
|
|
|
<MarketHeader />
|
2021-07-19 20:04:26 -07:00
|
|
|
<div className={`min-h-screen p-1 sm:px-2 sm:py-1 md:px-2 md:py-1`}>
|
2021-07-17 06:49:52 -07:00
|
|
|
<TradePageGrid />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PerpMarket
|