mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-08 04:06:18 -04:00
Address the independent review blockers on PR #80 after rebasing onto the authoritative #72 Weekend Context API. - Replace the invented frontend WeekendContext with the exact backend contract (temporal_state, previous/focus/next meetings, previous_completed/active/next/ default_analysis sessions with availability). Every valid canonical payload now maps to a designed state via a total resolveViewState; a well-formed response can never fall through to the limited-data placeholder. - Make the canonical read the single source of truth: useWeekendContext no longer fans out to season/meetings/per-weekend/OpenF1/live queries. Only supplementary championship + news reads run, and only once the canonical context resolves. - Fix the Prepare/analysis flow: /preview is a stable alias that renders the preparation surface (PreSessionView) instead of redirecting back to the same between-races screen. - One primary navigation system per breakpoint: the mobile top-bar links are hidden so the bottom bar is the sole primary nav, and Admin is moved out of every Primary landmark into an operator-utilities toolbar. - Add Vitest coverage for the contract mapping, every temporal state, loading/ error/limited surfaces, the no-fanout guarantee, the /preview CTA, and the nav hierarchy; add hermetic Playwright journeys (seeded + injected canonical payloads), 390/768/1440 overflow checks, and Weekend visual snapshots. Retire the stale Command Center specs/snapshots. Co-authored-by: Cursor <cursoragent@cursor.com>
132 lines
3.7 KiB
TypeScript
132 lines
3.7 KiB
TypeScript
import { createRootRoute, createRoute, createRouter, Outlet } from '@tanstack/react-router'
|
|
import { Nav } from './components/Nav'
|
|
import { WeekendPage } from './pages/WeekendPage'
|
|
import { ExplorePage } from './pages/ExplorePage'
|
|
import { RaceHubPage } from './pages/RaceHubPage'
|
|
import { DataLibraryPage } from './pages/DataLibraryPage'
|
|
import { LiveTimingPage } from './pages/LiveTimingPage'
|
|
import { BriefingPage } from './pages/BriefingPage'
|
|
import { ChampionshipPage } from './pages/ChampionshipPage'
|
|
import { DriverProfilePage } from './pages/DriverProfilePage'
|
|
|
|
type RaceHubSearch = {
|
|
session_key?: number
|
|
}
|
|
|
|
type DriverProfileSearch = {
|
|
year?: number
|
|
}
|
|
|
|
const rootRoute = createRootRoute({
|
|
component: () => (
|
|
<>
|
|
<Nav />
|
|
<Outlet />
|
|
</>
|
|
),
|
|
})
|
|
|
|
// Weekend is the adaptive home. `/` renders the current temporal state.
|
|
export const weekendRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/',
|
|
component: WeekendPage,
|
|
})
|
|
|
|
export const exploreRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/explore',
|
|
component: ExplorePage,
|
|
})
|
|
|
|
export const raceHubRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/race-hub',
|
|
validateSearch: (search: Record<string, unknown>): RaceHubSearch => {
|
|
const sessionKey = Number(search.session_key)
|
|
return Number.isFinite(sessionKey) && sessionKey > 0 ? { session_key: sessionKey } : {}
|
|
},
|
|
component: function RaceHubRoute() {
|
|
const { session_key } = raceHubRoute.useSearch()
|
|
return <RaceHubPage sessionKey={session_key ?? 0} />
|
|
},
|
|
})
|
|
|
|
export const adminRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/admin',
|
|
component: DataLibraryPage,
|
|
})
|
|
|
|
// Legacy alias — kept so any saved /data-library links keep working.
|
|
export const dataLibraryRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/data-library',
|
|
component: DataLibraryPage,
|
|
})
|
|
|
|
export const liveTimingRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/live',
|
|
component: LiveTimingPage,
|
|
})
|
|
|
|
export const championshipRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/championship',
|
|
component: ChampionshipPage,
|
|
})
|
|
|
|
export const driverProfileRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/drivers/$driverNumber',
|
|
validateSearch: (search: Record<string, unknown>): DriverProfileSearch => {
|
|
const year = Number(search.year)
|
|
return Number.isFinite(year) && year > 0 ? { year } : {}
|
|
},
|
|
component: function DriverProfileRoute() {
|
|
const { driverNumber } = driverProfileRoute.useParams()
|
|
const { year } = driverProfileRoute.useSearch()
|
|
return <DriverProfilePage driverNumber={Number(driverNumber) || 0} year={year} />
|
|
},
|
|
})
|
|
|
|
export const briefingRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/briefing',
|
|
component: BriefingPage,
|
|
})
|
|
|
|
// Preview folds into the Weekend home. /preview is a stable alias that renders the
|
|
// Weekend page in its preparation surface (PreSessionView) whenever there is a next
|
|
// event — so saved preview links and the "Prepare for …" CTA reach real preview
|
|
// content instead of redirecting back to the same between-races screen.
|
|
export const previewRoute = createRoute({
|
|
getParentRoute: () => rootRoute,
|
|
path: '/preview',
|
|
component: function PreviewRoute() {
|
|
return <WeekendPage preview />
|
|
},
|
|
})
|
|
|
|
const routeTree = rootRoute.addChildren([
|
|
weekendRoute,
|
|
exploreRoute,
|
|
raceHubRoute,
|
|
adminRoute,
|
|
dataLibraryRoute,
|
|
liveTimingRoute,
|
|
championshipRoute,
|
|
driverProfileRoute,
|
|
briefingRoute,
|
|
previewRoute,
|
|
])
|
|
|
|
export const router = createRouter({ routeTree })
|
|
|
|
declare module '@tanstack/react-router' {
|
|
interface Register {
|
|
router: typeof router
|
|
}
|
|
}
|