import { useMarketList } from '@vegaprotocol/market-list'; import { AsyncRenderer } from '@vegaprotocol/ui-toolkit'; import { useRouter } from 'next/router'; import { useEffect } from 'react'; import { useGlobalStore } from '../stores'; export function Index() { const { replace } = useRouter(); // The default market selected in the platform behind the overlay // should be the oldest market that is currently trading in continuous mode(i.e. not in auction). const { data, error, loading } = useMarketList(); const { riskNoticeDialog, update } = useGlobalStore((store) => ({ riskNoticeDialog: store.riskNoticeDialog, update: store.update, })); useEffect(() => { update({ landingDialog: true }); if (data) { const marketId = data[0]?.id; if (marketId) { replace(`/markets/${marketId}`); } // Fallback to the markets list page else { replace('/markets'); } } }, [data, replace, riskNoticeDialog, update]); return ( {/* Render a loading and error state but we will redirect if markets are found */} {null} ); } Index.getInitialProps = () => ({ page: 'home', }); export default Index;