Merge branch '13865-repositories'
[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, matchSshKeysRoute, matchRepositoriesRoute } from './routes';
8 import { loadProject, loadCollection, loadFavorites, loadTrash, loadProcess, loadProcessLog, loadSshKeys, 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     const sshKeysMatch = matchSshKeysRoute(pathname);
32
33     if (projectMatch) {
34         store.dispatch(loadProject(projectMatch.params.id));
35     } else if (collectionMatch) {
36         store.dispatch(loadCollection(collectionMatch.params.id));
37     } else if (favoriteMatch) {
38         store.dispatch(loadFavorites());
39     } else if (trashMatch) {
40         store.dispatch(loadTrash());
41     } else if (processMatch) {
42         store.dispatch(loadProcess(processMatch.params.id));
43     } else if (processLogMatch) {
44         store.dispatch(loadProcessLog(processLogMatch.params.id));
45     } else if (rootMatch) {
46         store.dispatch(navigateToRootProject);
47     } else if (sharedWithMeMatch) {
48         store.dispatch(loadSharedWithMe);
49     } else if (runProcessMatch) {
50         store.dispatch(loadRunProcess);
51     } else if (workflowMatch) {
52         store.dispatch(loadWorkflow);
53     } else if (searchResultsMatch) {
54         store.dispatch(loadSearchResults);
55     } else if(repositoryMatch) {
56         store.dispatch(loadRepositories);
57     } else if (sshKeysMatch) {
58         store.dispatch(loadSshKeys);
59     }
60 };