aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/Stops/ArrivalCard.tsx
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-12-22 22:06:06 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-12-22 22:06:06 +0100
commitbed48c3d7e49b1736d50ce42d92bb6c18cf02504 (patch)
tree475571ad6fa8c7aa1f8e81520689bf1eb425164c /src/frontend/app/components/Stops/ArrivalCard.tsx
parent68f49dec91d68579803d6d579b1f1ecb4fc1dd1f (diff)
Refactor arrivals handling and improve type definitions; reorganise components
Diffstat (limited to 'src/frontend/app/components/Stops/ArrivalCard.tsx')
-rw-r--r--src/frontend/app/components/Stops/ArrivalCard.tsx72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/frontend/app/components/Stops/ArrivalCard.tsx b/src/frontend/app/components/Stops/ArrivalCard.tsx
deleted file mode 100644
index 96d0af0..0000000
--- a/src/frontend/app/components/Stops/ArrivalCard.tsx
+++ /dev/null
@@ -1,72 +0,0 @@
-import React, { useMemo } from "react";
-import { useTranslation } from "react-i18next";
-import LineIcon from "~/components/LineIcon";
-import { type Arrival } from "../../api/schema";
-import "./ArrivalCard.css";
-
-interface ArrivalCardProps {
- arrival: Arrival;
- reduced?: boolean;
-}
-
-export const ArrivalCard: React.FC<ArrivalCardProps> = ({
- arrival,
- reduced,
-}) => {
- const { t } = useTranslation();
- const { route, headsign, estimate } = arrival;
-
- const etaValue = Math.max(0, Math.round(estimate.minutes)).toString();
- const etaUnit = t("estimates.minutes", "min");
-
- const timeClass = useMemo(() => {
- switch (estimate.precission) {
- case "confident":
- return "time-running";
- case "unsure":
- return "time-delayed";
- case "past":
- return "time-past";
- default:
- return "time-scheduled";
- }
- }, [estimate.precission]);
-
- return (
- <div
- className={`
- flex-none flex items-center gap-2.5 min-h-12
- bg-(--message-background-color) border border-(--border-color)
- rounded-xl px-3 py-2.5 transition-all
- ${reduced ? "reduced" : ""}
- `.trim()}
- >
- <div className="shrink-0 min-w-[7ch]">
- <LineIcon
- line={route.shortName}
- colour={route.colour}
- textColour={route.textColour}
- mode="pill"
- />
- </div>
- <div className="flex-1 min-w-0 flex flex-col gap-1">
- <strong className="text-base text-(--text-color) overflow-hidden text-ellipsis line-clamp-2 leading-tight">
- {headsign.destination}
- </strong>
- </div>
- <div
- className={`
- inline-flex items-center justify-center px-2 py-1.5 rounded-xl shrink-0
- ${timeClass}
- `.trim()}
- >
- <div className="flex flex-col items-center leading-none">
- <span className="text-lg font-bold leading-none">{etaValue}</span>
- <span className="text-[0.65rem] uppercase tracking-wider mt-0.5 opacity-90">
- {etaUnit}
- </span>
- </div>
- </div>
- </div>
- );
-};