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
|
import { Home, Map, Route } from "lucide-react";
import type { LngLatLike } from "maplibre-gl";
import { useTranslation } from "react-i18next";
import { Link, useLocation, useNavigate } from "react-router";
import { usePlanner } from "~/hooks/usePlanner";
import { useApp } from "../../AppContext";
import styles from "./NavBar.module.css";
// Helper: check if coordinates are within Vigo bounds
function isWithinVigo(lngLat: LngLatLike): boolean {
let lng: number, lat: number;
if (Array.isArray(lngLat)) {
[lng, lat] = lngLat;
} else if ("lng" in lngLat && "lat" in lngLat) {
lng = lngLat.lng;
lat = lngLat.lat;
} else {
return false;
}
// Rough bounding box for Vigo
return lat >= 42.18 && lat <= 42.3 && lng >= -8.78 && lng <= -8.65;
}
interface NavBarProps {
orientation?: "horizontal" | "vertical";
}
export default function NavBar({ orientation = "horizontal" }: NavBarProps) {
const { t } = useTranslation();
const { mapState, updateMapState, mapPositionMode } = useApp();
const location = useLocation();
const navigate = useNavigate();
const { deselectItinerary } = usePlanner({ autoLoad: false });
const navItems = [
{
name: t("navbar.home", "Paradas"),
icon: Home,
path: "/",
exact: true,
},
{
name: t("navbar.map", "Mapa"),
icon: Map,
path: "/map",
callback: () => {
if (mapPositionMode !== "gps") {
return;
}
if (!("geolocation" in navigator)) {
return;
}
navigator.geolocation.getCurrentPosition(
(position) => {
const { latitude, longitude } = position.coords;
const coords: LngLatLike = [latitude, longitude];
if (isWithinVigo(coords)) {
updateMapState(coords, 16);
}
},
() => {},
{
enableHighAccuracy: false,
maximumAge: 5 * 60 * 1000,
timeout: 10 * 1000,
}
);
},
},
{
name: t("navbar.lines", "Líneas"),
icon: Route,
path: "/lines",
},
];
return (
<nav
className={`${styles.navBar} ${
orientation === "vertical" ? styles.vertical : ""
}`}
>
{navItems.map((item) => {
const Icon = item.icon;
const isActive = item.exact
? location.pathname === item.path
: location.pathname.startsWith(item.path);
return (
<Link
key={item.name}
to={item.path}
className={`${styles.link} ${isActive ? styles.active : ""}${item.path === "/planner" ? " planner-nav-link" : ""}`}
onClick={(e) => {
if (
item.path === "/planner" &&
location.pathname === "/planner"
) {
deselectItinerary();
window.location.reload();
} else if (item.callback) {
item.callback();
}
}}
title={item.name}
aria-label={item.name}
>
<div className={styles.iconWrapper}>
<Icon size={24} />
</div>
<span>{item.name}</span>
</Link>
);
})}
</nav>
);
}
|