Files
box-box/frontend/src/components/live/SessionBanner.tsx

40 lines
1.4 KiB
TypeScript
Raw Normal View History

2026-05-25 02:56:06 -04:00
import type { LiveStreamData } from '../../types'
import { extrapolateClock } from '../../lib/live'
import { WeatherStrip } from './WeatherStrip'
2026-05-25 02:56:06 -04:00
interface Props {
isLive: boolean
snapshot: LiveStreamData
connection: 'connected' | 'connecting' | 'disconnected' | 'error'
now: number
}
export function SessionBanner({ isLive, snapshot, connection, now }: Props) {
const session = snapshot.Session
const clock = extrapolateClock(snapshot.Clock, snapshot.ClockRefTime, snapshot.ClockExtrapolating, now)
return (
<section className="live-banner">
2026-05-25 10:45:35 -04:00
<div className="live-banner-row">
<div className="live-banner-main">
<span className={`live-conn live-conn-${connection}`}>{connection}</span>
<div>
<h1>{session?.MeetingName || 'Live Timing'}</h1>
<p>
{[session?.SessionName, session?.CircuitName].filter(Boolean).join(' · ') || 'F1 live feed'}
</p>
</div>
</div>
<div className="live-banner-meta">
<span className="mono">
L<strong>{snapshot.CurrentLap || '-'}</strong>/<strong>{snapshot.TotalLaps || '-'}</strong>
</span>
{clock && <span className="mono">{clock}</span>}
<span className={isLive ? 'live-state live-state-on' : 'live-state'}>{isLive ? 'live' : 'stale'}</span>
2026-05-25 02:56:06 -04:00
</div>
</div>
<WeatherStrip weather={snapshot.Weather} />
2026-05-25 02:56:06 -04:00
</section>
)
}