mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 19:56:18 -04:00
307 lines
11 KiB
TypeScript
307 lines
11 KiB
TypeScript
import { useEffect, useMemo, useRef, useState } from 'react'
|
|
import { useQuery } from '@tanstack/react-query'
|
|
import { fetchLiveState } from '../api'
|
|
import type { LivePosition, LiveStreamData } from '../types'
|
|
import {
|
|
loadPinnedDrivers,
|
|
mergeVisibleSectors,
|
|
parseLiveStateEvent,
|
|
rowsWithVisibleSectors,
|
|
savePinnedDrivers,
|
|
sortLiveTimingRows,
|
|
togglePin,
|
|
} from '../lib/live'
|
|
import type { VisibleSectorState } from '../lib/live'
|
|
import type { GapHistoryMap } from '../lib/gapHistory'
|
|
import { recordGapSamples } from '../lib/gapHistory'
|
|
import { battleNumbers, detectBattles } from '../lib/battles'
|
|
import type { LiveEvent } from '../lib/events'
|
|
import { appendEvents, diffSnapshots, sessionSignature } from '../lib/events'
|
|
import { SessionBanner } from '../components/live/SessionBanner'
|
|
import { TrackStatusBanner } from '../components/live/TrackStatusBanner'
|
|
import { TimingTower } from '../components/live/TimingTower'
|
|
import { BattleChips } from '../components/live/BattleChips'
|
|
import { PinnedDrivers } from '../components/live/PinnedDrivers'
|
|
import { RaceControlFeed } from '../components/live/RaceControlFeed'
|
|
import { EventRail } from '../components/live/EventRail'
|
|
import { TeamRadioTicker } from '../components/live/TeamRadioTicker'
|
|
import { TyreDegPanel } from '../components/live/TyreDegPanel'
|
|
import { Archive, Radio } from 'lucide-react'
|
|
|
|
type StreamStatus = 'connecting' | 'connected' | 'disconnected' | 'error'
|
|
|
|
export function LiveTimingPage() {
|
|
const [activeSnapshot, setActiveSnapshot] = useState<LiveStreamData | null>(null)
|
|
const [archiveSnapshot, setArchiveSnapshot] = useState<LiveStreamData | null>(null)
|
|
const [archivePositions, setArchivePositions] = useState<Record<string, LivePosition>>({})
|
|
const [archiveSnapshotAt, setArchiveSnapshotAt] = useState<string | null>(null)
|
|
const [archiveMode, setArchiveMode] = useState(false)
|
|
const [isLive, setIsLive] = useState(false)
|
|
const [streamStatus, setStreamStatus] = useState<StreamStatus>('connecting')
|
|
const [now, setNow] = useState(Date.now())
|
|
const [gapHistory, setGapHistory] = useState<GapHistoryMap>({})
|
|
const [pinned, setPinned] = useState<string[]>(() => loadPinnedDrivers())
|
|
const [visibleSectors, setVisibleSectors] = useState<VisibleSectorState>({})
|
|
const [positions, setPositions] = useState<Record<string, LivePosition>>({})
|
|
const [events, setEvents] = useState<LiveEvent[]>([])
|
|
const prevSnapshotRef = useRef<LiveStreamData | null>(null)
|
|
const sessionSigRef = useRef('')
|
|
const isLiveRef = useRef(false)
|
|
const archiveModeRef = useRef(false)
|
|
const snapshot = isLive ? activeSnapshot : archiveMode ? archiveSnapshot : null
|
|
const hasArchive = Boolean(archiveSnapshot)
|
|
|
|
const { data, isLoading, isError, error } = useQuery({
|
|
queryKey: ['live-state'],
|
|
queryFn: fetchLiveState,
|
|
staleTime: 5_000,
|
|
})
|
|
|
|
useEffect(() => {
|
|
if (!data) return
|
|
const nextLive = data.is_live && Boolean(data.data)
|
|
setIsLive(nextLive)
|
|
isLiveRef.current = nextLive
|
|
if (nextLive && data.data) {
|
|
setActiveSnapshot(data.data)
|
|
setArchiveMode(false)
|
|
return
|
|
}
|
|
|
|
setActiveSnapshot(null)
|
|
setArchiveSnapshot(data.last_snapshot ?? null)
|
|
setArchivePositions(data.last_positions ?? {})
|
|
setArchiveSnapshotAt(data.last_snapshot_at ?? null)
|
|
setArchiveMode((current) => current && Boolean(data.last_snapshot))
|
|
}, [data])
|
|
|
|
useEffect(() => {
|
|
archiveModeRef.current = archiveMode
|
|
if (archiveMode) {
|
|
setPositions(archivePositions)
|
|
}
|
|
}, [archiveMode, archivePositions])
|
|
|
|
useEffect(() => {
|
|
const timer = window.setInterval(() => setNow(Date.now()), 1000)
|
|
return () => window.clearInterval(timer)
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
if (!('EventSource' in window)) {
|
|
setStreamStatus('error')
|
|
return
|
|
}
|
|
|
|
let cancelled = false
|
|
const events = new EventSource('/api/v1/live/stream')
|
|
setStreamStatus('connecting')
|
|
|
|
events.onopen = () => {
|
|
if (!cancelled) setStreamStatus('connected')
|
|
}
|
|
|
|
events.addEventListener('snapshot', (event) => {
|
|
const state = parseLiveStateEvent(event.data)
|
|
if (!state || cancelled) return
|
|
const nextLive = state.is_live && Boolean(state.data)
|
|
setIsLive(nextLive)
|
|
if (nextLive && state.data) {
|
|
if (!isLiveRef.current || archiveModeRef.current) {
|
|
setPositions({})
|
|
}
|
|
isLiveRef.current = true
|
|
setActiveSnapshot(state.data)
|
|
setArchiveMode(false)
|
|
} else {
|
|
isLiveRef.current = false
|
|
setActiveSnapshot(null)
|
|
setArchiveSnapshot(state.last_snapshot ?? null)
|
|
setArchivePositions(state.last_positions ?? {})
|
|
setArchiveSnapshotAt(state.last_snapshot_at ?? null)
|
|
setArchiveMode((current) => current && Boolean(state.last_snapshot))
|
|
}
|
|
setStreamStatus('connected')
|
|
})
|
|
|
|
events.addEventListener('heartbeat', () => {
|
|
if (!cancelled) setStreamStatus('connected')
|
|
})
|
|
|
|
events.addEventListener('positions', (event) => {
|
|
if (cancelled) return
|
|
try {
|
|
const parsed = JSON.parse(event.data) as Record<string, LivePosition>
|
|
setPositions(parsed && typeof parsed === 'object' ? parsed : {})
|
|
setStreamStatus('connected')
|
|
} catch {
|
|
// Ignore malformed transient frames; the next 4Hz update will replace it.
|
|
}
|
|
})
|
|
|
|
events.onerror = () => {
|
|
if (!cancelled) setStreamStatus('disconnected')
|
|
}
|
|
|
|
return () => {
|
|
cancelled = true
|
|
events.close()
|
|
}
|
|
}, [])
|
|
|
|
// Synthesize "what just happened" events from successive snapshots; the
|
|
// buffer resets whenever a different session starts streaming.
|
|
useEffect(() => {
|
|
if (!snapshot) return
|
|
const signature = sessionSignature(snapshot.Session)
|
|
const prev = prevSnapshotRef.current
|
|
prevSnapshotRef.current = snapshot
|
|
if (signature !== sessionSigRef.current) {
|
|
sessionSigRef.current = signature
|
|
setEvents([])
|
|
return
|
|
}
|
|
if (!prev || prev === snapshot) return
|
|
const fresh = diffSnapshots(prev, snapshot)
|
|
if (fresh.length > 0) setEvents((current) => appendEvents(current, fresh))
|
|
}, [snapshot])
|
|
|
|
const rawRows = useMemo(() => sortLiveTimingRows(snapshot), [snapshot])
|
|
|
|
useEffect(() => {
|
|
if (rawRows.length === 0) {
|
|
setVisibleSectors({})
|
|
return
|
|
}
|
|
setVisibleSectors((prev) => mergeVisibleSectors(prev, rawRows))
|
|
}, [rawRows])
|
|
|
|
const rows = useMemo(() => rowsWithVisibleSectors(rawRows, visibleSectors), [rawRows, visibleSectors])
|
|
|
|
// One interval sample per received snapshot, ring-buffered per driver.
|
|
useEffect(() => {
|
|
if (rows.length === 0) return
|
|
setGapHistory((prev) =>
|
|
recordGapSamples(
|
|
prev,
|
|
rows.map((row) => ({ racingNumber: row.RacingNumber, interval: row.Driver.Interval || '' })),
|
|
),
|
|
)
|
|
}, [rows])
|
|
|
|
useEffect(() => {
|
|
savePinnedDrivers(pinned)
|
|
}, [pinned])
|
|
|
|
const battles = useMemo(
|
|
() => detectBattles(rows, snapshot?.Session?.SessionType),
|
|
[rows, snapshot?.Session?.SessionType],
|
|
)
|
|
const inBattle = useMemo(() => battleNumbers(battles), [battles])
|
|
|
|
const handleTogglePin = (racingNumber: string) => {
|
|
setPinned((prev) => togglePin(prev, racingNumber))
|
|
}
|
|
|
|
const handleViewArchive = () => {
|
|
if (!archiveSnapshot) return
|
|
setIsLive(false)
|
|
setArchiveMode(true)
|
|
setPositions(archivePositions)
|
|
}
|
|
|
|
const archiveTimestamp = archiveSnapshotAt ? new Date(archiveSnapshotAt) : null
|
|
const archiveLabel =
|
|
archiveTimestamp && !Number.isNaN(archiveTimestamp.getTime())
|
|
? `Archived snapshot from ${archiveTimestamp.toLocaleString()}`
|
|
: 'Archived live timing snapshot'
|
|
|
|
return (
|
|
<div className="page live-page" data-testid="live-page">
|
|
{isError && (
|
|
<div className="error-box">
|
|
{error instanceof Error ? error.message : 'Failed to load live timing state'}
|
|
</div>
|
|
)}
|
|
|
|
{streamStatus === 'disconnected' && snapshot && !archiveMode && (
|
|
<div className="live-status-strip live-status-warn">
|
|
Stream disconnected — showing last received snapshot
|
|
</div>
|
|
)}
|
|
|
|
{archiveMode && snapshot && (
|
|
<div className="live-status-strip live-status-archive" data-testid="live-archive-strip">
|
|
{archiveLabel} — live updates are paused for this archive view
|
|
</div>
|
|
)}
|
|
|
|
{isLoading && !snapshot && (
|
|
<div className="loading-state">connecting to live timing…</div>
|
|
)}
|
|
|
|
{!isLoading && !snapshot && (
|
|
<div className="empty-state ui-card glass-panel" style={{ padding: '40px', textAlign: 'center', marginTop: '20vh', maxWidth: '400px', marginLeft: 'auto', marginRight: 'auto' }} data-testid="live-empty">
|
|
<div className="live-empty-status" style={{ marginBottom: '16px' }}>
|
|
<span className={`live-conn live-conn-${streamStatus}`}>{streamStatus}</span>
|
|
</div>
|
|
<Radio size={48} style={{ color: 'var(--text-3)', margin: '0 auto 16px auto', display: 'block' }} />
|
|
<h2 className="empty-state-title" style={{ fontSize: '20px', marginBottom: '8px' }}>No live session active</h2>
|
|
<p className="empty-state-desc" style={{ color: 'var(--text-2)' }}>
|
|
The telemetry feed is currently offline. <br /><br /> Check the <a href="/" style={{ color: 'var(--red)', textDecoration: 'underline' }}>Command Center</a> for the weekend schedule or explore historical data in the <a href="/race-hub" style={{ color: 'var(--red)', textDecoration: 'underline' }}>Race Hub</a>.
|
|
</p>
|
|
{hasArchive && (
|
|
<button type="button" className="live-archive-btn" onClick={handleViewArchive}>
|
|
<Archive size={15} />
|
|
View Last Session
|
|
</button>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{snapshot && (
|
|
<>
|
|
<SessionBanner
|
|
isLive={isLive}
|
|
isArchive={archiveMode}
|
|
snapshot={snapshot}
|
|
rows={rows}
|
|
connection={streamStatus}
|
|
now={now}
|
|
/>
|
|
<TrackStatusBanner status={snapshot.TrackStatus} />
|
|
<PinnedDrivers rows={rows} history={gapHistory} pinned={pinned} onToggle={handleTogglePin} />
|
|
<TyreDegPanel rows={rows} sessionType={snapshot.Session?.SessionType} pinned={pinned} />
|
|
<div className="live-columns">
|
|
<div className="live-tower-col">
|
|
<div className="sec-header">
|
|
<span className="sec-title">Timing Tower</span>
|
|
{pinned.length > 0 && <span className="sec-meta">{pinned.length}/3 pinned</span>}
|
|
</div>
|
|
<BattleChips battles={battles} />
|
|
<TimingTower
|
|
rows={rows}
|
|
stints={snapshot.Stints}
|
|
history={gapHistory}
|
|
battleNumbers={inBattle}
|
|
pinned={pinned}
|
|
onTogglePin={handleTogglePin}
|
|
session={snapshot.Session}
|
|
/>
|
|
</div>
|
|
<div className="live-rc-col">
|
|
<TeamRadioTicker
|
|
captures={snapshot.TeamRadio ?? []}
|
|
driverInfo={snapshot.DriverInfo}
|
|
session={snapshot.Session}
|
|
/>
|
|
<RaceControlFeed messages={snapshot.RCMessages ?? []} driverInfo={snapshot.DriverInfo} />
|
|
<EventRail events={events} driverInfo={snapshot.DriverInfo} />
|
|
</div>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|