mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 11:54:59 -04:00
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
export function teamColor(hex: string | undefined): string {
|
|
if (!hex) return '#444444'
|
|
return hex.startsWith('#') ? hex : `#${hex}`
|
|
}
|
|
|
|
export function formatDuration(val: number | number[] | null | undefined): string {
|
|
if (val == null) return '—'
|
|
const s = Array.isArray(val) ? val[0] : val
|
|
if (typeof s !== 'number' || isNaN(s) || s <= 0) return '—'
|
|
const h = Math.floor(s / 3600)
|
|
const m = Math.floor((s % 3600) / 60)
|
|
const sec = (s % 60).toFixed(3)
|
|
if (h > 0) return `${h}:${String(m).padStart(2, '0')}:${sec.padStart(6, '0')}`
|
|
return `${m}:${sec.padStart(6, '0')}`
|
|
}
|
|
|
|
export function formatGap(val: number | string | number[] | null | undefined): string {
|
|
if (val == null) return '—'
|
|
if (typeof val === 'string') return val
|
|
const g = Array.isArray(val) ? val[0] : val
|
|
if (typeof g !== 'number' || isNaN(g)) return '—'
|
|
return `+${g.toFixed(3)}`
|
|
}
|
|
|
|
export function formatLapTime(seconds: number | null | undefined): string {
|
|
if (seconds == null || seconds <= 0) return '—'
|
|
const m = Math.floor(seconds / 60)
|
|
const s = (seconds % 60).toFixed(3)
|
|
return `${m}:${s.padStart(6, '0')}`
|
|
}
|
|
|
|
export function formatDate(dateStr: string | undefined): string {
|
|
if (!dateStr) return ''
|
|
try {
|
|
return new Date(dateStr).toLocaleDateString('en-GB', {
|
|
day: 'numeric',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
})
|
|
} catch {
|
|
return dateStr
|
|
}
|
|
}
|
|
|
|
export function gridDelta(finishPos: number, gridPos: number): string {
|
|
if (!gridPos || !finishPos) return '—'
|
|
const delta = gridPos - finishPos
|
|
if (delta > 0) return `↑${delta}`
|
|
if (delta < 0) return `↓${Math.abs(delta)}`
|
|
return '—'
|
|
}
|
|
|
|
export function gridDeltaClass(finishPos: number, gridPos: number): string {
|
|
if (!gridPos || !finishPos) return 'pos-same'
|
|
const delta = gridPos - finishPos
|
|
if (delta > 0) return 'pos-gain'
|
|
if (delta < 0) return 'pos-loss'
|
|
return 'pos-same'
|
|
}
|
|
|
|
export function positionClass(pos: number): string {
|
|
if (pos === 1) return 'pos-p1'
|
|
if (pos === 2) return 'pos-p2'
|
|
if (pos === 3) return 'pos-p3'
|
|
return 'pos-n'
|
|
}
|