-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathapiV2.js
1237 lines (1172 loc) · 34.2 KB
/
apiV2.js
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {
aggregateModes,
getBannedRoutesFromSubmodes,
populateSettingWithValue
} from '@opentripplanner/trip-form'
import { createAction } from 'redux-actions'
import { decodeQueryParams, DelimitedArrayParam } from 'use-query-params'
import clone from 'clone'
import coreUtils from '@opentripplanner/core-utils'
import { checkForRouteModeOverride } from '../util/config'
import { convertToPlace, getPersistenceMode } from '../util/user'
import { FETCH_STATUS } from '../util/constants'
import {
generateModeSettingValues,
getDefaultNumItineraries,
getServiceStart
} from '../util/api'
import {
getActiveItineraries,
getActiveItinerary,
getRouteOperator,
isValidSubsequence,
queryIsValid
} from '../util/state'
import {
getRouteColorBasedOnSettings,
getRouteIdForPattern,
routeIsValid
} from '../util/viewer'
import { isLastStop } from '../util/stop-times'
import {
createQueryAction,
fetchingStopTimesForStop,
fetchNearbyError,
fetchNearbyResponse,
findGeometryForTrip,
findRouteError,
findRouteResponse,
findRoutesError,
findRoutesResponse,
findStopTimesForStopError,
findStopTimesForStopResponse,
findStopTimesForTrip,
findTripError,
findTripResponse,
receivedNearbyStopsError,
receivedNearbyStopsResponse,
receivedVehiclePositions,
receivedVehiclePositionsError,
rememberSearch,
routingError,
routingRequest,
routingResponse,
updateOtpUrlParams
} from './api'
import { rememberPlace } from './user'
import { RoutingQueryCallResult } from './api-constants'
import { setViewedNearbyCoords } from './ui'
const { generateCombinations, generateOtp2Query, SIMPLIFICATIONS } =
coreUtils.queryGen
const { getTripOptionsFromQuery, getUrlParams } = coreUtils.query
const { convertGraphQLResponseToLegacy } = coreUtils.itinerary
const { randId } = coreUtils.storage
const LIGHT_GRAY = '666666'
function formatRecentPlace(place) {
return convertToPlace({
...place,
icon: 'clock-o',
id: `recent-${randId()}`,
timestamp: new Date().getTime(),
type: 'recent'
})
}
function formatRecentSearch(state, queryParamData) {
return {
id: randId(),
query: getTripOptionsFromQuery(
{ ...state.otp.currentQuery, queryParamData },
true
),
timestamp: new Date().getTime()
}
}
function isStoredPlace(place) {
return ['home', 'work', 'suggested', 'stop'].indexOf(place.type) !== -1
}
/**
* Generic helper for crafting GraphQL queries.
*/
function createGraphQLQueryAction(
query,
variables,
responseAction,
errorAction,
options
) {
const fetchOptions = {
body: JSON.stringify({ batchId: options.batchId, query, variables }),
headers: { 'Content-Type': 'application/json' },
method: 'POST'
}
return createQueryAction(null, responseAction, errorAction, {
...options,
fetchOptions,
noThrottle: true,
url: '/gtfs/v1'
})
}
const findTrip = (params) =>
createGraphQLQueryAction(
`{
trip(id: "${params.tripId}") {
id: gtfsId
route {
id: gtfsId
agency {
id: gtfsId
name
url
timezone
lang
phone
fareUrl
}
shortName
longName
type
url
color
textColor
routeBikesAllowed: bikesAllowed
bikesAllowed
}
serviceId
tripHeadsign
directionId
blockId
shapeId
wheelchairAccessible
bikesAllowed
tripBikesAllowed: bikesAllowed
stops {
id: gtfsId
stopId: gtfsId
code
name
lat
lon
}
tripGeometry {
length
points
}
}
}`,
{},
findTripResponse,
findTripError,
{
noThrottle: true,
postprocess: (payload, dispatch) => {
// FIXME: integrate into graphql request
dispatch(findStopTimesForTrip({ tripId: params.tripId }))
dispatch(findGeometryForTrip({ tripId: params.tripId }))
},
rewritePayload: (payload) => {
if (!payload?.data?.trip) return {}
payload.data.trip.geometry = payload.data.trip.tripGeometry
return payload.data.trip
}
}
)
export const vehicleRentalQuery = (
params,
responseAction,
errorAction,
options
) =>
// TODO: ErrorsByNetwork is missing
createGraphQLQueryAction(
`{
rentalVehicles {
vehicleId
id
name
lat
lon
allowPickupNow
vehicleType {
formFactor
}
network
}
}
`,
{},
responseAction,
errorAction,
{
noThrottle: true,
postprocess: (payload, dispatch) => {
if (payload.errors) {
return errorAction(payload.errors)
}
},
// TODO: most of this rewrites the OTP2 response to match OTP1.
// we should re-write the rest of the UI to match OTP's behavior instead
rewritePayload: (payload) => {
return {
stations: payload?.data?.rentalVehicles?.map((vehicle) => {
return {
allowPickup: vehicle.allowPickupNow,
id: vehicle.vehicleId,
isFloatingBike: vehicle?.vehicleType?.formFactor === 'BICYCLE',
isFloatingVehicle: vehicle?.vehicleType?.formFactor === 'SCOOTER',
name: vehicle.name,
networks: [vehicle.network],
x: vehicle.lon,
y: vehicle.lat
}
})
}
}
}
)
// TODO: numberOfDepartures needs to come from config!
const stopTimeGraphQLQuery = `
stopTimes: stoptimesForPatterns(numberOfDepartures: 3) {
pattern {
desc: name
headsign
id: code
}
times: stoptimes {
arrivalDelay
departureDelay
headsign
realtime
realtimeArrival
realtimeDeparture
realtimeState
scheduledArrival
scheduledDeparture
serviceDay
stop {
id: gtfsId
}
timepoint
trip {
id
}
}
}
`
const stopGraphQLQuery = `
id: gtfsId
code
lat
lon
locationType
name
wheelchairBoarding
zoneId
geometries {
geoJson
}
routes {
id: gtfsId
agency {
gtfsId
name
}
longName
mode
color
textColor
shortName
}
${stopTimeGraphQLQuery}
`
const findNearbyStops = ({ focusStopId, lat, lon, radius = 300 }) => {
if (!focusStopId) return {}
return createGraphQLQueryAction(
`{
stopsByRadius(lat: ${lat}, lon: ${lon}, radius: ${radius}) {
edges {
node {
stop {
${stopGraphQLQuery}
}
}
}
}
}`,
{},
receivedNearbyStopsResponse,
receivedNearbyStopsError,
{
noThrottle: true,
rewritePayload: (payload) => {
return {
focusStopId,
stops: payload?.data?.stopsByRadius?.edges?.map((edge) => {
const { stop } = edge.node
return {
...stop,
agencyId: stop?.route?.agency?.gtfsId,
agencyName: stop?.route?.agency?.name
}
})
}
}
}
)
}
const mergeSameStops = (nearbyResponse) => {
return nearbyResponse?.reduce((prev, { node }) => {
const existingStop = prev.find(
(stop) => stop.place.code === node.place.code
)
// Only merge if the stop has a code at all
if (existingStop && node.place.code) {
existingStop.place.stoptimesForPatterns = [
...(existingStop.place.stoptimesForPatterns || []),
...(node.place.stoptimesForPatterns || [])
]
} else {
prev.push(node)
}
return prev
}, [])
}
/**
* Causes the nearby view to be set to the coordinates of a stop
* @param {stopId} GTFS Stop ID
*/
export const fetchNearbyFromStopId = (stopId) => {
// Get a single stop based on its ID, i.e. value of field gtfsId (ID format is FeedId:StopId)
return createGraphQLQueryAction(
`query Stop(
$stopId: String!
) {
stop(id: $stopId) {
lat
lon
gtfsId
code
}
}
`,
{ stopId },
({ data }) =>
(dispatch) => {
const { gtfsId, lat, lon } = data.stop
dispatch(setViewedNearbyCoords({ gtfsId, lat, lon }))
},
() => () => {
console.warn(`Error requesting data for stop ID ${stopId}.`)
},
{}
)
}
export const fetchNearby = (position, radius) => {
const { lat, lon } = position
return createGraphQLQueryAction(
`query Nearby(
$lat: Float!
$lon: Float!
$radius: Int
) {
nearest(lat:$lat, lon:$lon, maxDistance: $radius, first: 100, filterByPlaceTypes: [STOP, VEHICLE_RENT, BIKE_PARK, CAR_PARK]) {
edges {
node {
id
distance
place {
__typename
id
lat
lon
...on RentalVehicle {
network
name
lat
lon
allowPickupNow
operative
rentalUris {
android
ios
web
}
vehicleType {
formFactor
}
}
... on VehicleRentalStation {
network
}
...on BikeRentalStation {
bikesAvailable
spacesAvailable
name
networks
}
... on VehicleParking {
carPlaces
bicyclePlaces
lat
lon
name
}
... on Stop {
name
lat
lon
code
gtfsId
stoptimesForPatterns {
pattern {
headsign
desc: name
route {
agency {
name
gtfsId
}
shortName
type
mode
longName
color
textColor
}
}
stoptimes {
serviceDay
departureDelay
realtimeState
realtimeDeparture
scheduledDeparture
headsign
trip {
route {
shortName
}
}
}
}
}
}
distance
}
}
}
}`,
{ lat, lon, radius },
fetchNearbyResponse,
fetchNearbyError,
{
rewritePayload: (payload) => {
// Handle GraphQL error
if (payload.errors) {
const error = new Error('GraphQL response error')
error.message =
'Check error.cause for more information. Are the OTP server and client on compatible versions?'
error.cause = payload.errors
throw error
}
return {
coords: { lat, lon },
data: mergeSameStops(payload.data?.nearest?.edges)
}
}
}
)
}
export const findStopTimesForStop = (params) =>
function (dispatch, getState) {
dispatch(fetchingStopTimesForStop(params))
const { date, stopId } = params
const timeZone = getState().otp.config.homeTimezone
// Create a service date timestamp from 3:30am local.
const serviceDay = getServiceStart(date, timeZone).getTime() / 1000
return dispatch(
createGraphQLQueryAction(
`query StopTimes(
$serviceDay: Long!
$stopId: String!
) {
stop(id: $stopId) {
gtfsId
code
lat
lon
locationType
name
wheelchairBoarding
routes {
id: gtfsId
agency {
gtfsId
name
}
longName
mode
color
textColor
shortName
patterns {
id
headsign
}
}
stoptimesForPatterns(numberOfDepartures: 1000, startTime: $serviceDay, omitNonPickups: true, omitCanceled: false) {
pattern {
desc: name
headsign
id: code
route {
agency {
gtfsId
}
gtfsId
}
stops {
gtfsId
}
}
stoptimes {
headsign
scheduledDeparture
serviceDay
trip {
blockId
id
pattern {
id
}
route {
gtfsId
}
}
}
}
}
}`,
{
serviceDay,
stopId
},
findStopTimesForStopResponse,
findStopTimesForStopError,
{
noThrottle: true,
rewritePayload: (payload) => {
if (payload.errors) {
return dispatch(findStopTimesForStopError(payload.errors))
}
const stopData = payload.data?.stop
return {
...stopData,
fetchStatus: FETCH_STATUS.FETCHED,
stoptimesForPatterns: stopData?.stoptimesForPatterns
// If this stop is the last stop on this pattern, don't include any stop times from that pattern.
// (The schedule viewer doesn't show arrival times to a terminus stop.)
.filter(({ pattern }) => !isLastStop(stopData?.gtfsId, pattern))
// in some cases, the TriMet transit index will not return all routes
// that serve a stop. Perhaps it doesn't return some routes if the
// route only performs a drop-off at the stop... not quite sure. So a
// check is needed to make sure we don't add data for routes not found
// from the routes query.
.filter(({ pattern }) => {
const routeId = getRouteIdForPattern(pattern)
const route = stopData.routes.find((r) => r.id === routeId)
return routeIsValid(route, routeId)
}),
stopTimesLastUpdated: new Date().getTime()
}
}
}
)
)
}
const getVehiclePositions = (routeId) =>
function (dispatch, getState) {
return dispatch(
createGraphQLQueryAction(
`{
route${routeId ? `(id: "${routeId}")` : 's'} {
patterns {
vehiclePositions {
vehicleId
label
lat
lon
stopRelationship {
status
stop {
name
gtfsId
}
}
speed
heading
lastUpdated
trip {
${
!routeId &&
`route {
shortName
longName
mode
color
textColor
}`
}
pattern {
id
}
}
}
}
}
}`,
{},
receivedVehiclePositions,
receivedVehiclePositionsError,
{
noThrottle: true,
rewritePayload: (payload) => {
if (payload.data?.routes) {
const vehicles = payload.data.routes.reduce((prev, cur) => {
return prev.concat(
cur.patterns.map((p) => p.vehiclePositions).flat()
)
}, [])
return { vehicles }
}
const vehicles = payload.data?.route?.patterns
.reduce((prev, cur) => {
return prev.concat(
cur?.vehiclePositions?.map((position) => {
return {
heading: position?.heading,
label: position?.label,
lat: position?.lat,
lon: position?.lon,
nextStopId: position?.stopRelationship?.stop?.gtfsId,
nextStopName: position?.stopRelationship?.stop?.name,
patternId: position?.trip?.pattern?.id,
seconds: position?.lastUpdated,
speed: position?.speed || 0,
stopStatus: position?.stopRelationship?.status,
vehicleId: position?.vehicleId
}
})
)
}, [])
.filter((vehicle) => !!vehicle)
return { routeId, vehicles }
}
}
)
)
}
export const findRoute = (params) =>
function (dispatch, getState) {
const { routeId } = params
if (!routeId) return
return dispatch(
createGraphQLQueryAction(
`{
route(id: "${routeId}") {
id: gtfsId
desc
agency {
id: gtfsId
name
url
timezone
lang
phone
}
bikesAllowed
color
longName
mode
routeBikesAllowed: bikesAllowed
shortName
sortOrder
textColor
type
url
patterns {
id
headsign
name
patternGeometry {
points
length
}
stops {
code
id: gtfsId
lat
lon
name
locationType
geometries {
geoJson
}
routes {
textColor
color
}
}
}
}
}
`,
{},
findRouteResponse,
findRouteError,
{
noThrottle: true,
// TODO: avoid re-writing OTP2 route object to match OTP1 style
rewritePayload: (payload) => {
if (payload.errors) {
return dispatch(findRouteError(payload.errors))
}
const { route } = payload?.data
if (!route) return
const newRoute = clone(route)
const routePatterns = {}
// Sort patterns by length to make algorithm below more efficient
const patternsSortedByLength = newRoute.patterns.sort(
(a, b) => a.stops.length - b.stops.length
)
// Remove all patterns that are subsets of larger patterns
const filteredPatterns = patternsSortedByLength
// Start with the largest for performance
.reverse()
.filter((pattern) => {
// Compare to all other patterns TODO: make this beat O(n^2)
return !patternsSortedByLength.find((p) => {
// Don't compare against ourself
if (p.id === pattern.id) return false
// If our pattern is longer, it's not a subset
if (p.stops.length <= pattern.stops.length) return false
return isValidSubsequence(
p.stops.map((s) => s.id),
pattern.stops.map((s) => s.id)
)
})
})
// Fallback for if the filtering leaves us with a silly number of patterns
// If this happens, it is not possible to know which pattern to keep
;(filteredPatterns.length > 1
? filteredPatterns
: newRoute.patterns
).forEach((pattern) => {
const patternStops = pattern.stops.map((stop) => {
const color =
stop.routes?.length > 0 &&
`#${stop.routes[0]?.color || LIGHT_GRAY}`
if (stop.routes) delete stop.routes
return { ...stop, color }
})
routePatterns[pattern.id] = {
...pattern,
desc: pattern.name,
geometry: pattern?.patternGeometry || { length: 0, points: '' },
stops: patternStops
}
})
newRoute.origColor = newRoute.color
newRoute.color = getRouteColorBasedOnSettings(
getRouteOperator(
{
agencyId: newRoute?.agency?.id,
id: newRoute?.id
},
getState().otp.config.transitOperators
),
{ color: newRoute?.color, mode: newRoute.mode }
).split('#')?.[1]
newRoute.patterns = routePatterns
// TODO: avoid explicit behavior shift like this
newRoute.v2 = true
newRoute.mode = checkForRouteModeOverride(
newRoute,
getState().otp.config?.routeModeOverrides
)
return newRoute
}
}
)
)
}
export function findRoutes() {
return function (dispatch, getState) {
dispatch(
createGraphQLQueryAction(
`{
routes {
id: gtfsId
agency {
id: gtfsId
name
}
color
longName
mode
shortName
sortOrder
type
}
}
`,
{},
findRoutesResponse,
findRoutesError,
{
noThrottle: true,
// TODO: avoid re-writing OTP2 route object to match OTP1 style
rewritePayload: (payload) => {
if (payload.errors) {
return dispatch(findRoutesError(payload.errors))
}
const { routes } = payload?.data
if (!routes) return
const { config } = getState().otp
// To initialize the route viewer,
// convert the routes array to a dictionary indexed by route ids.
return routes.reduce((result, route) => {
const {
agency,
color: origColor,
id,
longName,
mode,
shortName,
sortOrder,
type
} = route
// Set color overrides if present
const color = getRouteColorBasedOnSettings(
getRouteOperator(
{
agencyId: route?.agency?.id,
id: route?.id
},
config.transitOperators
),
{
color: route?.color,
mode: route.mode
}
).split('#')?.[1]
result[id] = {
agencyId: agency.id,
agencyName: agency.name,
color,
id,
longName,
mode: checkForRouteModeOverride(
{ id, mode },
config?.routeModeOverrides
),
origColor,
shortName,
sortOrder,
type,
v2: true
}
return result
}, {})
}
}
)
)
}
}
export const findPatternsForRoute = (params) =>
function (dispatch, getState) {
const state = getState()
const { routeId } = params
const route = state?.otp?.transitIndex?.routes?.[routeId]
if (!route.patterns) {
// TODO: since grabbbing only patterns would basically be the same query and
// most crucially re-writing as findRoute() already does, we just make that request
//
// A proper graphQL implementation will only grab what data is needed when it is needed
return dispatch(findRoute(params))
}
}
const queryParamConfig = { modeButtons: DelimitedArrayParam }
export function routingQuery(searchId = null, updateSearchInReducer) {
// eslint-disable-next-line complexity
return function (dispatch, getState) {
const state = getState()
const { config, currentQuery, modeSettingDefinitions } = state.otp
const persistenceMode = getPersistenceMode(config.persistence)
const activeItinerary =
getActiveItinerary(state) ||
(config.itinerary?.showFirstResultByDefault ? 0 : null)
const isNewSearch = !searchId
if (isNewSearch) searchId = randId()
// Don't permit a routing query if the query is invalid
if (!queryIsValid(state)) {
console.warn('Query is invalid. Aborting routing query', currentQuery)
return RoutingQueryCallResult.INVALID_QUERY
}
const {
bannedTrips,
date,
departArrive,
modes,
numItineraries,
routingType,
time,
unpreferred
} = currentQuery
const arriveBy = departArrive === 'ARRIVE'
// Retrieve active mode keys from URL parameters or configuration defaults
const urlSearchParams = new URLSearchParams(getUrlParams())
const activeModeKeys =
decodeQueryParams(queryParamConfig, {
modeButtons: urlSearchParams.get('modeButtons')
}).modeButtons ||
config?.modes?.initialState?.enabledModeButtons ||
{}
const strictModes = !!config?.itinerary?.strictItineraryFiltering
// Filter mode definitions based on active mode keys
const activeModeButtons = config.modes?.modeButtons.filter((mb) =>
activeModeKeys.includes(mb.key)
)
const activeModes = aggregateModes(activeModeButtons)
// Get mode setting values from the url, or initial state config, or default value in definition
const modeSettingValues = generateModeSettingValues(
urlSearchParams,
modeSettingDefinitions,
config?.modes?.initialState?.modeSettingValues
)
// TODO: walkReluctance is in here, but not when set via setQueryParam
const modeSettings = modeSettingDefinitions?.map(
populateSettingWithValue(modeSettingValues)
)
// Get the raw query param strings to save for the rider's search history
const rawModeButtonQP = urlSearchParams.get('modeButtons')