1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
import { Bell, Map, X } from "lucide-react";
import { useEffect, useRef, useState } from "react";
import { useTranslation } from "react-i18next";
import { Link } from "react-router";
import RouteIcon from "~/components/RouteIcon";
import { useJourney } from "~/contexts/JourneyContext";
import { useStopArrivals } from "~/hooks/useArrivals";
/**
* A sticky banner rendered at the bottom of the AppShell (above the nav bar)
* while a journey is being tracked. Shows live minutes-remaining count and
* lets the user cancel tracking.
*/
export function ActiveJourneyBanner() {
const { t } = useTranslation();
const { activeJourney, stopJourney } = useJourney();
const { data } = useStopArrivals(
activeJourney?.stopId ?? "",
false,
!!activeJourney
);
const [permissionState, setPermissionState] = useState<
NotificationPermission | "unsupported"
>(() => {
if (typeof Notification === "undefined") return "unsupported";
return Notification.permission;
});
// Request notification permission the first time a journey starts
const hasRequestedRef = useRef(false);
useEffect(() => {
if (!activeJourney || hasRequestedRef.current) return;
if (
typeof Notification === "undefined" ||
Notification.permission !== "default"
)
return;
hasRequestedRef.current = true;
Notification.requestPermission().then((perm) => {
setPermissionState(perm);
});
}, [activeJourney]);
if (!activeJourney) return null;
const liveArrival = data?.arrivals.find(
(a) => a.tripId === activeJourney.tripId
);
const minutes = liveArrival?.estimate.minutes;
const precision = liveArrival?.estimate.precision;
const minutesLabel =
minutes == null
? "–"
: minutes <= 0
? t("journey.arriving_now", "¡Llegando!")
: t("journey.minutes_away", {
defaultValue: "{{minutes}} min",
minutes,
});
const isApproaching =
minutes != null &&
minutes <= activeJourney.notifyAtMinutes &&
precision !== "past";
return (
<div
role="status"
aria-live="polite"
className={`relative mx-3 mb-2 rounded-2xl shadow-lg overflow-hidden border transition-colors ${
isApproaching
? "bg-primary-400 border-primary-500"
: "bg-primary-600 border-primary-700"
}`}
>
{/* Clickable body — navigates to the stop and opens the map for the tracked trip */}
<Link
to={`/stops/${activeJourney.stopId}`}
state={{
openMap: true,
selectedTripId: activeJourney.tripId,
}}
aria-label={t("journey.view_on_map", "View on map")}
className="flex items-center gap-3 px-4 py-2.5 pr-14 text-sm text-white w-full"
>
<RouteIcon
line={activeJourney.routeShortName}
colour={activeJourney.routeColour}
textColour={activeJourney.routeTextColour}
mode="pill"
/>
<div className="flex-1 min-w-0">
<p className="font-semibold leading-tight truncate">
{activeJourney.headsignDestination ??
t("journey.tracking_bus", "Siguiendo autobús")}
</p>
<p className="text-xs opacity-80 truncate">
{activeJourney.stopName}
{" · "}
{minutesLabel}
</p>
</div>
{permissionState === "denied" && (
<span
title={t(
"journey.notifications_blocked",
"Notificaciones bloqueadas"
)}
className="opacity-60 shrink-0"
>
<Bell size={16} className="line-through" />
</span>
)}
<Map size={16} className="opacity-60 shrink-0" />
</Link>
{/* Cancel button — absolutely positioned so it doesn't nest inside the Link */}
<button
type="button"
onClick={stopJourney}
aria-label={t("journey.stop_tracking", "Detener seguimiento")}
className="absolute right-2 top-1/2 -translate-y-1/2 p-1.5 rounded-full text-white hover:bg-white/20 transition-colors shrink-0"
>
<X size={18} />
</button>
</div>
);
}
|