repositories-panel-init
[arvados-workbench2.git] / src / routes / route-change-handlers.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { History, Location } from 'history';
6 import { RootStore } from '~/store/store';
7 import { matchProcessRoute, matchProcessLogRoute, matchProjectRoute, matchCollectionRoute, matchFavoritesRoute, matchTrashRoute, matchRootRoute, matchSharedWithMeRoute, matchRunProcessRoute, matchWorkflowRoute, matchSearchResultsRoute, matchRepositoriesRoute } from './routes';
8 import { loadProject, loadCollection, loadFavorites, loadTrash, loadProcess, loadProcessLog, loadRepositories } from '~/store/workbench/workbench-actions';
9 import { navigateToRootProject } from '~/store/navigation/navigation-action';
10 import { loadSharedWithMe, loadRunProcess, loadWorkflow, loadSearchResults } from '~//store/workbench/workbench-actions';
11
12 export const addRouteChangeHandlers = (history: History, store: RootStore) => {
13     const handler = handleLocationChange(store);
14     handler(history.location);
15     history.listen(handler);
16 };
17
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 repositoryMatch = matchRepositoriesRoute(pathname); 
27     const searchResultsMatch = matchSearchResultsRoute(pathname);
28     const sharedWithMeMatch = matchSharedWithMeRoute(pathname);
29     const runProcessMatch = matchRunProcessRoute(pathname);
30     const workflowMatch = matchWorkflowRoute(pathname);
31
32     if (projectMatch) {
33         store.dispatch(loadProject(projectMatch.params.id));
34     } else if (collectionMatch) {
35         store.dispatch(loadCollection(collectionMatch.params.id));
36     } else if (favoriteMatch) {
37         store.dispatch(loadFavorites());
38     } else if (trashMatch) {
39         store.dispatch(loadTrash());
40     } else if (processMatch) {
41         store.dispatch(loadProcess(processMatch.params.id));
42     } else if (processLogMatch) {
43         store.dispatch(loadProcessLog(processLogMatch.params.id));
44     } else if (rootMatch) {
45         store.dispatch(navigateToRootProject);
46     } else if (sharedWithMeMatch) {
47         store.dispatch(loadSharedWithMe);
48     } else if (runProcessMatch) {
49         store.dispatch(loadRunProcess);
50     } else if (workflowMatch) {
51         store.dispatch(loadWorkflow);
52     } else if (searchResultsMatch) {
53         store.dispatch(loadSearchResults);
54     } else if(repositoryMatch) {
55         store.dispatch(loadRepositories);
56     }
57 };