mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
|
|
/** @jsxImportSource @nym.sh/jrx */
|
||
|
|
import type { FeedItemRenderer } from "@aelis/core"
|
||
|
|
|
||
|
|
import { FeedCard, SansSerifText } from "@aelis/components"
|
||
|
|
|
||
|
|
import type { TflAlertData } from "./types.ts"
|
||
|
|
|
||
|
|
import { TflAlertSeverity } from "./types.ts"
|
||
|
|
|
||
|
|
const SEVERITY_LABEL: Record<TflAlertSeverity, string> = {
|
||
|
|
[TflAlertSeverity.Closure]: "Closed",
|
||
|
|
[TflAlertSeverity.MajorDelays]: "Major delays",
|
||
|
|
[TflAlertSeverity.MinorDelays]: "Minor delays",
|
||
|
|
}
|
||
|
|
|
||
|
|
function formatDistance(km: number): string {
|
||
|
|
const meters = Math.round(km * 1000)
|
||
|
|
if (meters < 1000) {
|
||
|
|
return `${meters}m away`
|
||
|
|
}
|
||
|
|
return `${(meters / 1000).toFixed(1)}km away`
|
||
|
|
}
|
||
|
|
|
||
|
|
export const renderTflAlert: FeedItemRenderer<"tfl-alert", TflAlertData> = (item) => {
|
||
|
|
const { lineName, severity, description, closestStationDistance } = item.data
|
||
|
|
const severityLabel = SEVERITY_LABEL[severity]
|
||
|
|
|
||
|
|
return (
|
||
|
|
<FeedCard>
|
||
|
|
<SansSerifText content={`${lineName} · ${severityLabel}`} style="text-base font-semibold" />
|
||
|
|
<SansSerifText content={description} style="text-sm" />
|
||
|
|
{closestStationDistance !== null ? (
|
||
|
|
<SansSerifText
|
||
|
|
content={`Nearest station: ${formatDistance(closestStationDistance)}`}
|
||
|
|
style="text-xs text-stone-500"
|
||
|
|
/>
|
||
|
|
) : null}
|
||
|
|
</FeedCard>
|
||
|
|
)
|
||
|
|
}
|