import { Suspense } from 'react'; import type { RouteObject } from 'react-router-dom'; import { Outlet, useRoutes } from 'react-router-dom'; import dynamic from 'next/dynamic'; import { t } from '@vegaprotocol/i18n'; import { Loader, Splash } from '@vegaprotocol/ui-toolkit'; import trimEnd from 'lodash/trimEnd'; import { LayoutWithSidebar } from '../components/layouts'; const LazyHome = dynamic(() => import('../client-pages/home'), { ssr: false, }); const LazyLiquidity = dynamic(() => import('../client-pages/liquidity'), { ssr: false, }); const LazyMarkets = dynamic(() => import('../client-pages/markets'), { ssr: false, }); const LazyMarket = dynamic(() => import('../client-pages/market'), { ssr: false, }); const LazyPortfolio = dynamic(() => import('../client-pages/portfolio'), { ssr: false, }); const LazyDisclaimer = dynamic(() => import('../client-pages/disclaimer'), { ssr: false, }); const LazyDeposit = dynamic(() => import('../client-pages/deposit'), { ssr: false, }); export enum Routes { HOME = '/', MARKET = '/markets/:marketId', MARKETS = '/markets/all', PORTFOLIO = '/portfolio', LIQUIDITY = '/liquidity/:marketId', DISCLAIMER = '/disclaimer', DEPOSIT = '/deposit', } type ConsoleLinks = { [r in Routes]: (...args: string[]) => string }; export const Links: ConsoleLinks = { [Routes.HOME]: () => Routes.HOME, [Routes.MARKET]: (marketId: string) => trimEnd(Routes.MARKET.replace(':marketId', marketId)), [Routes.MARKETS]: () => Routes.MARKETS, [Routes.PORTFOLIO]: () => Routes.PORTFOLIO, [Routes.LIQUIDITY]: (marketId: string) => trimEnd(Routes.LIQUIDITY.replace(':marketId', marketId)), [Routes.DISCLAIMER]: () => Routes.DISCLAIMER, [Routes.DEPOSIT]: () => Routes.DEPOSIT, }; const routerConfig: RouteObject[] = [ { path: '/*', element: , children: [ // all pages that require the Layout component (Sidebar) { index: true, element: , }, { path: 'markets', element: , children: [ { path: 'all', element: , }, { path: ':marketId', element: , }, ], }, { path: 'portfolio', element: , }, { path: 'liquidity', element: , children: [ { path: ':marketId', element: , }, ], }, ], }, { path: Routes.DISCLAIMER, element: , }, { path: Routes.DEPOSIT, element: }, { path: '*', element: (

{t('Not found')}

), }, ]; export const ClientRouter = () => { const routes = useRoutes(routerConfig); return ( } > {routes} ); };