1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { History, Location } from 'history';
6 import { RootStore } from '~/store/store';
7 import { matchProcessRoute, matchProcessLogRoute, matchProjectRoute, matchCollectionRoute, matchFavoritesRoute, matchTrashRoute, matchRootRoute, matchSharedWithMeRoute, matchWorkflowRoute } from './routes';
8 import { loadProject, loadCollection, loadFavorites, loadTrash, loadProcess, loadProcessLog } from '~/store/workbench/workbench-actions';
9 import { navigateToRootProject } from '~/store/navigation/navigation-action';
10 import { loadSharedWithMe, loadWorkflow } from '~/store/workbench/workbench-actions';
12 export const addRouteChangeHandlers = (history: History, store: RootStore) => {
13 const handler = handleLocationChange(store);
14 handler(history.location);
15 history.listen(handler);
18 const handleLocationChange = (store: RootStore) => ({ pathname }: Location) => {
19 const rootMatch = matchRootRoute(pathname);
20 const projectMatch = matchProjectRoute(pathname);
21 const collectionMatch = matchCollectionRoute(pathname);
22 const favoriteMatch = matchFavoritesRoute(pathname);
23 const trashMatch = matchTrashRoute(pathname);
24 const processMatch = matchProcessRoute(pathname);
25 const processLogMatch = matchProcessLogRoute(pathname);
26 const sharedWithMeMatch = matchSharedWithMeRoute(pathname);
27 const workflowMatch = matchWorkflowRoute(pathname);
30 store.dispatch(loadProject(projectMatch.params.id));
31 } else if (collectionMatch) {
32 store.dispatch(loadCollection(collectionMatch.params.id));
33 } else if (favoriteMatch) {
34 store.dispatch(loadFavorites());
35 } else if (trashMatch) {
36 store.dispatch(loadTrash());
37 } else if (processMatch) {
38 store.dispatch(loadProcess(processMatch.params.id));
39 } else if (processLogMatch) {
40 store.dispatch(loadProcessLog(processLogMatch.params.id));
41 } else if (rootMatch) {
42 store.dispatch(navigateToRootProject);
43 } else if (sharedWithMeMatch) {
44 store.dispatch(loadSharedWithMe);
45 } else if (workflowMatch) {
46 store.dispatch(loadWorkflow);