Skip to content
Snippets Groups Projects
Verified Commit 56ca146d authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Remove empty trailing routes

parent ae9a9c95
No related branches found
No related tags found
No related merge requests found
......@@ -25,3 +25,10 @@ export const buildUrl = (stops) => {
}
return "https://www.google.com/maps/dir/" + stops.join("/") + "/"
}
export const dropTail = (array) => {
while (array.length > 0 && array.slice(-1)[0].length == 0) {
array.pop()
}
return array
}
import * as at from '../actions/actionTypes'
import { extractStops } from '../helpers'
import { extractStops, dropTail } from '../helpers'
const initialState = {
......@@ -12,13 +12,13 @@ const reducer = (state = initialState, action) => {
return {routes: state.routes.concat([extractStops(action.payload)])}
case at.DELETE_ROUTE:
return {routes: state.routes.filter((v, i) => i != action.payload)}
return {routes: dropTail(state.routes.filter((v, i) => i != action.payload))}
case at.CLEAR_ROUTE:
return {routes: state.routes.map((v, i) => i == action.payload ? [] : v)}
return {routes: dropTail(state.routes.map((v, i) => i == action.payload ? [] : v))}
case at.UPDATE_URL:
return {routes: state.routes.map((v, i) => i == action.payload.index ? extractStops(action.payload.url) : v)}
return {routes: dropTail(state.routes.map((v, i) => i == action.payload.index ? extractStops(action.payload.url) : v))}
default:
return state
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment