-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouteControls.tsx
More file actions
233 lines (221 loc) · 6.15 KB
/
Copy pathRouteControls.tsx
File metadata and controls
233 lines (221 loc) · 6.15 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import {
useState,
type FormEvent,
} from "react";
import type { DataStatus, RouteValue } from "./live-state";
import {
RoutingError,
searchDestinations,
type Destination,
type RouteProfile,
type RoutingStatus,
} from "./routing";
import { LOCALE_REGISTRY } from "./i18n/locale-registry";
import { translatePhone, type PhoneStringKey } from "./phone-i18n";
import type { PhoneLocale } from "./phone-types";
type RouteControlsProps = {
readonly locale?: PhoneLocale;
readonly status: RoutingStatus;
readonly activeRoute?: RouteValue;
readonly routeStatus?: DataStatus;
readonly onStart: (
destination: Destination,
profile: RouteProfile,
) => void | Promise<void>;
readonly onEnd: () => void | Promise<void>;
readonly onResume?: () => void | Promise<void>;
readonly orsKey?: string;
readonly search?: (query: string) => ReturnType<typeof searchDestinations>;
};
const PROFILE_VALUES: readonly RouteProfile[] = [
"foot-walking",
"cycling-regular",
"driving-car",
];
function routeStateHeading(
locale: PhoneLocale,
state: "disabled" | "stale" | "active" | "ready",
): string {
const copy = LOCALE_REGISTRY[locale].route;
const stateLabel = state === "stale"
? copy.previousRoute
: translatePhone(locale, state as PhoneStringKey);
return `${copy.navigation.toUpperCase()} // ${stateLabel.toUpperCase()}`;
}
function conciseError(
error: unknown,
action: "search" | "start" | "end",
copy: typeof LOCALE_REGISTRY[PhoneLocale]["route"],
) {
if (error instanceof RoutingError && error.disabled) {
return copy.disabledHelp;
}
if (action === "search") {
return copy.searchFailed;
}
if (action === "end") {
return copy.endFailed;
}
return copy.startFailed;
}
export function RouteControls({
locale = "ko",
status,
activeRoute,
routeStatus = "fresh",
onStart,
onEnd,
onResume,
orsKey,
search,
}: RouteControlsProps) {
const copy = LOCALE_REGISTRY[locale].route;
const [query, setQuery] = useState("");
const [profile, setProfile] = useState<RouteProfile>("foot-walking");
const [results, setResults] = useState<readonly Destination[]>([]);
const [busy, setBusy] = useState(false);
const [error, setError] = useState<string>();
if (!status.enabled) {
return (
<section className="route-controls" aria-label={copy.navigation}>
<strong>{routeStateHeading(locale, "disabled")}</strong>
<p>{copy.disabledHelp}</p>
</section>
);
}
const submitSearch = async (event: FormEvent<HTMLFormElement>) => {
event.preventDefault();
const normalized = query.trim();
if ([...normalized].length < 2) {
setError(copy.minimumQuery);
return;
}
setBusy(true);
setError(undefined);
try {
const destinations = search
? await search(normalized)
: await searchDestinations(normalized, fetch, orsKey);
setResults(destinations.slice(0, 5));
} catch (caught) {
setError(conciseError(caught, "search", copy));
} finally {
setBusy(false);
}
};
const start = async (destination: Destination) => {
setBusy(true);
setError(undefined);
try {
await onStart(destination, profile);
} catch (caught) {
setError(conciseError(caught, "start", copy));
} finally {
setBusy(false);
}
};
const end = async () => {
setBusy(true);
setError(undefined);
try {
await onEnd();
} catch (caught) {
setError(conciseError(caught, "end", copy));
} finally {
setBusy(false);
}
};
const resume = async () => {
if (!onResume) return;
setBusy(true);
setError(undefined);
try {
await onResume();
} catch (caught) {
setError(conciseError(caught, "start", copy));
} finally {
setBusy(false);
}
};
if (activeRoute) {
const stale = routeStatus === "stale";
return (
<section className="route-controls" aria-label={copy.navigation}>
<strong>{routeStateHeading(locale, stale ? "stale" : "active")}</strong>
<p>
{activeRoute.destinationName}{" "}
{stale ? copy.previousRoute : copy.navigating}
</p>
<div className="route-actions">
{stale && onResume && (
<button
type="button"
disabled={busy}
onClick={() => void resume()}
>
{copy.resume}
</button>
)}
<button type="button" disabled={busy} onClick={() => void end()}>
{copy.end}
</button>
</div>
{error && <p role="alert">{error}</p>}
</section>
);
}
return (
<section className="route-controls" aria-label={copy.navigation}>
<strong>{routeStateHeading(locale, "ready")}</strong>
<form
aria-label={copy.destinationSearch}
onSubmit={(event) => void submitSearch(event)}
>
<label>
{copy.destination}
<input
value={query}
disabled={busy}
maxLength={80}
onChange={(event) => setQuery(event.target.value)}
/>
</label>
<label>
{copy.profile}
<select
value={profile}
disabled={busy}
onChange={(event) => {
setProfile(event.target.value as RouteProfile);
}}
>
{PROFILE_VALUES.map((value) => (
<option key={value} value={value}>
{copy.profiles[value]}
</option>
))}
</select>
</label>
<button type="submit" disabled={busy}>
{busy ? copy.searching : copy.search}
</button>
</form>
{error && <p role="alert">{error}</p>}
{results.length > 0 && (
<div className="route-results" aria-label={copy.searchResults}>
{results.map((destination) => (
<button
key={destination.id}
type="button"
disabled={busy}
onClick={() => void start(destination)}
>
<strong>{destination.name}</strong>
<span>{destination.label}</span>
</button>
))}
</div>
)}
</section>
);
}