search-results-view
[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 } 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, 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 searchResultsMatch = matchSearchResultsRoute(pathname);
27     const sharedWithMeMatch = matchSharedWithMeRoute(pathname);
28     const runProcessMatch = matchRunProcessRoute(pathname);
29     const workflowMatch = matchWorkflowRoute(pathname);
30
31     if (projectMatch) {
32         store.dispatch(loadProject(projectMatch.params.id));
33     } else if (collectionMatch) {
34         store.dispatch(loadCollection(collectionMatch.params.id));
35     } else if (favoriteMatch) {
36         store.dispatch(loadFavorites());
37     } else if (trashMatch) {
38         store.dispatch(loadTrash());
39     } else if (processMatch) {
40         store.dispatch(loadProcess(processMatch.params.id));
41     } else if (processLogMatch) {
42         store.dispatch(loadProcessLog(processLogMatch.params.id));
43     } else if (rootMatch) {
44         store.dispatch(navigateToRootProject);
45     } else if (sharedWithMeMatch) {
46         store.dispatch(loadSharedWithMe);
47     } else if (runProcessMatch) {
48         store.dispatch(loadRunProcess);
49     } else if (workflowMatch) {
50         store.dispatch(loadWorkflow);
51     } else if (searchResultsMatch) {
52         store.dispatch(loadSearchResults);
53     }
54 };