Use redux-form in my account 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, matchSshKeysRoute, matchRepositoriesRoute, matchMyAccountRoute, matchVirtualMachineRoute } from './routes';
8 import { loadProject, loadCollection, loadFavorites, loadTrash, loadProcess, loadProcessLog, loadSshKeys, loadRepositories, loadMyAccount, loadVirtualMachines } 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 virtualMachineMatch = matchVirtualMachineRoute(pathname);
31     const workflowMatch = matchWorkflowRoute(pathname);
32     const sshKeysMatch = matchSshKeysRoute(pathname);
33     const myAccountMatch = matchMyAccountRoute(pathname);
34
35     if (projectMatch) {
36         store.dispatch(loadProject(projectMatch.params.id));
37     } else if (collectionMatch) {
38         store.dispatch(loadCollection(collectionMatch.params.id));
39     } else if (favoriteMatch) {
40         store.dispatch(loadFavorites());
41     } else if (trashMatch) {
42         store.dispatch(loadTrash());
43     } else if (processMatch) {
44         store.dispatch(loadProcess(processMatch.params.id));
45     } else if (processLogMatch) {
46         store.dispatch(loadProcessLog(processLogMatch.params.id));
47     } else if (rootMatch) {
48         store.dispatch(navigateToRootProject);
49     } else if (sharedWithMeMatch) {
50         store.dispatch(loadSharedWithMe);
51     } else if (runProcessMatch) {
52         store.dispatch(loadRunProcess);
53     } else if (workflowMatch) {
54         store.dispatch(loadWorkflow);
55     } else if (searchResultsMatch) {
56         store.dispatch(loadSearchResults);
57     } else if (virtualMachineMatch) {
58         store.dispatch(loadVirtualMachines);
59     } else if(repositoryMatch) {
60         store.dispatch(loadRepositories);
61     } else if (sshKeysMatch) {
62         store.dispatch(loadSshKeys);
63     } else if (myAccountMatch) {
64         store.dispatch(loadMyAccount);
65     }
66 };