-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathdirectionsActions.js
More file actions
410 lines (366 loc) · 9.59 KB
/
Copy pathdirectionsActions.js
File metadata and controls
410 lines (366 loc) · 9.59 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
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
import axios from 'axios'
import {
ADD_WAYPOINT,
CLEAR_WAYPOINTS,
RECEIVE_GEOCODE_RESULTS,
REQUEST_GEOCODE_RESULTS,
SET_WAYPOINT,
UPDATE_TEXTINPUT,
EMPTY_WAYPOINT,
INSERT_WAYPOINT,
RECEIVE_ROUTE_RESULTS,
CLEAR_ROUTES,
TOGGLE_PROVIDER_ISO,
HIGHLIGHT_MNV,
ZOOM_TO_MNV,
UPDATE_INCLINE_DECLINE,
} from './types'
import {
reverse_geocode,
forward_geocode,
parseGeocodeResponse,
} from 'utils/geoencoder'
import {
VALHALLA_OSM_URL,
buildDirectionsRequest,
parseDirectionsGeometry,
} from 'utils/valhalla'
import {
sendMessage,
showLoading,
filterProfileSettings,
updatePermalink,
zoomTo,
} from './commonActions'
const serverMapping = {
[VALHALLA_OSM_URL]: 'OSM',
}
export const makeRequest = () => (dispatch, getState) => {
dispatch(updatePermalink())
const { waypoints } = getState().directions
const { profile, dateTime } = getState().common
let { settings } = getState().common
// if 2 results are selected
const activeWaypoints = getActiveWaypoints(waypoints)
if (activeWaypoints.length >= 2) {
settings = filterProfileSettings(profile, settings)
const valhallaRequest = buildDirectionsRequest({
profile,
activeWaypoints,
settings,
dateTime,
})
dispatch(fetchValhallaDirections(valhallaRequest))
}
}
const getActiveWaypoints = (waypoints) => {
const activeWaypoints = []
for (const waypoint of waypoints) {
if (waypoint.geocodeResults.length > 0) {
for (const result of waypoint.geocodeResults) {
if (result.selected) {
activeWaypoints.push(result)
break
}
}
}
}
return activeWaypoints
}
const fetchValhallaDirections = (valhallaRequest) => (dispatch) => {
dispatch(showLoading(true))
const config = {
params: { json: JSON.stringify(valhallaRequest.json) },
headers: {
'Content-Type': 'application/json',
},
}
axios
.get(VALHALLA_OSM_URL + '/route', config)
.then(({ data }) => {
data.decodedGeometry = parseDirectionsGeometry(data)
if (data.alternates) {
for (let i = 0; i < data.alternates.length; i++) {
const alternate = data.alternates[i]
data.alternates[i].decodedGeometry =
parseDirectionsGeometry(alternate)
}
}
dispatch(registerRouteResponse(VALHALLA_OSM_URL, data))
dispatch(zoomTo(data.decodedGeometry))
})
.catch(({ response }) => {
let error_msg = response.data.error
if (response.data.error_code === 154) {
error_msg += ` for ${valhallaRequest.json.costing}.`
}
dispatch(clearRoutes(VALHALLA_OSM_URL))
dispatch(
sendMessage({
type: 'warning',
icon: 'warning',
description: `${serverMapping[VALHALLA_OSM_URL]}: ${error_msg}`,
title: `${response.data.status}`,
})
)
})
.finally(() => {
setTimeout(() => {
dispatch(showLoading(false))
}, 500)
})
}
export const registerRouteResponse = (provider, data) => ({
type: RECEIVE_ROUTE_RESULTS,
payload: {
provider,
data,
},
})
export const clearRoutes = (provider) => ({
type: CLEAR_ROUTES,
payload: provider,
})
const placeholderAddress = (index, lng, lat) => (dispatch) => {
// placeholder until geocoder is complete
// will add latLng to input field
const addresses = [
{
title: '',
displaylnglat: [lng, lat],
key: index,
addressindex: index,
},
]
dispatch(receiveGeocodeResults({ addresses, index: index }))
dispatch(
updateTextInput({
inputValue: [lng.toFixed(6), lat.toFixed(6)].join(', '),
index: index,
addressindex: 0,
})
)
}
export const fetchReverseGeocodePerma = (object) => (dispatch) => {
dispatch(requestGeocodeResults({ index: object.index, reverse: true }))
const { index } = object
const { permaLast } = object
const { lng, lat } = object.latLng
if (index > 1) {
dispatch(doAddWaypoint(true, permaLast))
}
reverse_geocode(lng, lat)
.then((response) => {
dispatch(
processGeocodeResponse(
response.data,
index,
true,
[lng, lat],
permaLast
)
)
})
.catch((error) => {
console.log(error) //eslint-disable-line
})
// .finally(() => {
// // always executed
// })
}
export const fetchReverseGeocode = (object) => (dispatch, getState) => {
//dispatch(requestGeocodeResults({ index: object.index, reverse: true }))
const { waypoints } = getState().directions
let { index } = object
const { fromDrag } = object
const { lng, lat } = object.latLng
if (index === -1) {
index = waypoints.length - 1
} else if (index === 1 && !fromDrag) {
// insert waypoint from context menu
dispatch(doAddWaypoint(true))
index = waypoints.length - 2
}
dispatch(placeholderAddress(index, lng, lat))
dispatch(requestGeocodeResults({ index, reverse: true }))
reverse_geocode(lng, lat)
.then((response) => {
dispatch(processGeocodeResponse(response.data, index, true, [lng, lat]))
})
.catch((error) => {
console.log(error) //eslint-disable-line
})
// .finally(() => {
// // always executed
// })
}
export const fetchGeocode = (object) => (dispatch) => {
if (object.lngLat) {
const addresses = [
{
title: object.lngLat.toString(),
description: '',
selected: false,
addresslnglat: object.lngLat,
sourcelnglat: object.lngLat,
displaylnglat: object.lngLat,
key: object.index,
addressindex: 0,
},
]
dispatch(receiveGeocodeResults({ addresses, index: object.index }))
} else {
dispatch(requestGeocodeResults({ index: object.index }))
forward_geocode(object.inputValue)
.then((response) => {
dispatch(processGeocodeResponse(response.data, object.index))
})
.catch((error) => {
console.log(error) //eslint-disable-line
})
.finally(() => {})
}
}
const processGeocodeResponse =
(data, index, reverse, lngLat, permaLast) => (dispatch) => {
const addresses = parseGeocodeResponse(data, lngLat)
// if no address can be found
if (addresses.length === 0) {
dispatch(
sendMessage({
type: 'warning',
icon: 'warning',
description: 'Sorry, no addresses can be found.',
title: 'No addresses',
})
)
}
dispatch(receiveGeocodeResults({ addresses, index }))
if (reverse) {
dispatch(
updateTextInput({
inputValue: addresses[0].title,
index: index,
addressindex: 0,
})
)
if (permaLast === undefined) {
dispatch(makeRequest())
dispatch(updatePermalink())
} else if (permaLast) {
dispatch(makeRequest())
dispatch(updatePermalink())
}
}
}
export const receiveGeocodeResults = (object) => ({
type: RECEIVE_GEOCODE_RESULTS,
payload: object,
})
export const requestGeocodeResults = (object) => ({
type: REQUEST_GEOCODE_RESULTS,
payload: object,
})
export const updateTextInput = (object) => ({
type: UPDATE_TEXTINPUT,
payload: object,
})
export const doRemoveWaypoint = (index) => (dispatch, getState) => {
if (index === undefined) {
dispatch(clearWaypoints())
Array(2)
.fill()
.map((_, i) => dispatch(doAddWaypoint()))
} else {
let waypoints = getState().directions.waypoints
if (waypoints.length > 2) {
dispatch(clearWaypoints(index))
dispatch(makeRequest())
} else {
dispatch(emptyWaypoint(index))
}
waypoints = getState().directions.waypoints
if (getActiveWaypoints(waypoints).length < 2) {
dispatch(clearRoutes(VALHALLA_OSM_URL))
}
}
dispatch(updatePermalink())
}
export const isWaypoint = (index) => (dispatch, getState) => {
const waypoints = getState().directions.waypoints
if (waypoints[index].geocodeResults.length > 0) {
dispatch(clearRoutes(VALHALLA_OSM_URL))
}
}
export const highlightManeuver = (fromTo) => (dispatch, getState) => {
const highlightSegment = getState().directions.highlightSegment
// this is dehighlighting
if (
highlightSegment.startIndex === fromTo.startIndex &&
highlightSegment.endIndex === fromTo.endIndex
) {
fromTo.startIndex = -1
fromTo.endIndex = -1
}
dispatch({
type: HIGHLIGHT_MNV,
payload: fromTo,
})
}
export const zoomToManeuver = (zoomObj) => ({
type: ZOOM_TO_MNV,
payload: zoomObj,
})
export const clearWaypoints = (index) => ({
type: CLEAR_WAYPOINTS,
payload: { index: index },
})
export const emptyWaypoint = (index) => ({
type: EMPTY_WAYPOINT,
payload: { index: index },
})
export const updateInclineDeclineTotal = (object) => ({
type: UPDATE_INCLINE_DECLINE,
payload: object,
})
export const doAddWaypoint = (doInsert) => (dispatch, getState) => {
const waypoints = getState().directions.waypoints
let maxIndex = Math.max.apply(
Math,
waypoints.map((wp) => {
return wp.id
})
)
maxIndex = isFinite(maxIndex) === false ? 0 : maxIndex + 1
const emptyWp = {
id: maxIndex.toString(),
geocodeResults: [],
isFetching: false,
userInput: '',
}
if (doInsert) {
dispatch(insertWaypoint(emptyWp))
} else {
dispatch(addWaypoint(emptyWp))
}
}
const insertWaypoint = (waypoint) => ({
type: INSERT_WAYPOINT,
payload: waypoint,
})
export const addWaypoint = (waypoint) => ({
type: ADD_WAYPOINT,
payload: waypoint,
})
export const setWaypoints = (waypoints) => ({
type: SET_WAYPOINT,
payload: waypoints,
})
export const showProvider = (provider, show, idx) => ({
type: TOGGLE_PROVIDER_ISO,
payload: {
provider,
show,
idx,
},
})