19143: Workflow objects appear in project view, are runnable.
[arvados-workbench2.git] / src / store / navigation / navigation-action.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Dispatch, compose, AnyAction } from 'redux';
6 import { push } from "react-router-redux";
7 import { ResourceKind, extractUuidKind } from 'models/resource';
8 import { SidePanelTreeCategory } from '../side-panel-tree/side-panel-tree-actions';
9 import { Routes, getGroupUrl, getNavUrl, getUserProfileUrl } from 'routes/routes';
10 import { RootState } from 'store/store';
11 import { openDetailsPanel } from 'store/details-panel/details-panel-action';
12 import { ServiceRepository } from 'services/services';
13 import { pluginConfig } from 'plugins';
14 import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions';
15 import { USERS_PANEL_LABEL, MY_ACCOUNT_PANEL_LABEL } from 'store/breadcrumbs/breadcrumbs-actions';
16
17 const navigationNotAvailable = (id: string) =>
18     snackbarActions.OPEN_SNACKBAR({
19         message: `${id} not available`,
20         hideDuration: 3000,
21         kind: SnackbarKind.ERROR
22     });
23
24 export const navigateTo = (uuid: string) =>
25     async (dispatch: Dispatch, getState: () => RootState) => {
26
27         for (const navToFn of pluginConfig.navigateToHandlers) {
28             if (navToFn(dispatch, getState, uuid)) {
29                 return;
30             }
31         }
32
33         const kind = extractUuidKind(uuid);
34         switch (kind) {
35             case ResourceKind.PROJECT:
36             case ResourceKind.USER:
37             case ResourceKind.COLLECTION:
38             case ResourceKind.CONTAINER_REQUEST:
39                 dispatch<any>(pushOrGoto(getNavUrl(uuid, getState().auth)));
40                 return;
41             case ResourceKind.VIRTUAL_MACHINE:
42                 dispatch<any>(navigateToAdminVirtualMachines);
43                 return;
44             case ResourceKind.WORKFLOW:
45                 dispatch<any>(openDetailsPanel(uuid));
46                 return;
47         }
48
49         switch (uuid) {
50             case SidePanelTreeCategory.PROJECTS:
51                 const usr = getState().auth.user;
52                 if (usr) {
53                     dispatch<any>(pushOrGoto(getNavUrl(usr.uuid, getState().auth)));
54                 }
55                 return;
56             case SidePanelTreeCategory.FAVORITES:
57                 dispatch<any>(navigateToFavorites);
58                 return;
59             case SidePanelTreeCategory.PUBLIC_FAVORITES:
60                 dispatch(navigateToPublicFavorites);
61                 return;
62             case SidePanelTreeCategory.SHARED_WITH_ME:
63                 dispatch(navigateToSharedWithMe);
64                 return;
65             case SidePanelTreeCategory.WORKFLOWS:
66                 dispatch(navigateToWorkflows);
67                 return;
68             case SidePanelTreeCategory.TRASH:
69                 dispatch(navigateToTrash);
70                 return;
71             case SidePanelTreeCategory.GROUPS:
72                 dispatch(navigateToGroups);
73                 return;
74             case SidePanelTreeCategory.ALL_PROCESSES:
75                 dispatch(navigateToAllProcesses);
76                 return;
77             case USERS_PANEL_LABEL:
78                 dispatch(navigateToUsers);
79                 return;
80             case MY_ACCOUNT_PANEL_LABEL:
81                 dispatch(navigateToMyAccount);
82                 return;
83         }
84
85         dispatch(navigationNotAvailable(uuid));
86     };
87
88
89 export const navigateToNotFound = push(Routes.NO_MATCH);
90
91 export const navigateToRoot = push(Routes.ROOT);
92
93 export const navigateToFavorites = push(Routes.FAVORITES);
94
95 export const navigateToTrash = push(Routes.TRASH);
96
97 export const navigateToPublicFavorites = push(Routes.PUBLIC_FAVORITES);
98
99 export const navigateToWorkflows = push(Routes.WORKFLOWS);
100
101 export const pushOrGoto = (url: string): AnyAction => {
102     if (url === "") {
103         return { type: "noop" };
104     } else if (url[0] === '/') {
105         return push(url);
106     } else {
107         window.location.href = url;
108         return { type: "noop" };
109     }
110 };
111
112
113 export const navigateToRootProject = (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
114     navigateTo(SidePanelTreeCategory.PROJECTS)(dispatch, getState);
115 };
116
117 export const navigateToSharedWithMe = push(Routes.SHARED_WITH_ME);
118
119 export const navigateToRunProcess = push(Routes.RUN_PROCESS);
120
121 export const navigateToSearchResults = (searchValue: string) => {
122     if (searchValue !== "") {
123         return push({ pathname: Routes.SEARCH_RESULTS, search: '?q=' + encodeURIComponent(searchValue) });
124     } else {
125         return push({ pathname: Routes.SEARCH_RESULTS });
126     }
127 };
128
129 export const navigateToUserVirtualMachines = push(Routes.VIRTUAL_MACHINES_USER);
130
131 export const navigateToAdminVirtualMachines = push(Routes.VIRTUAL_MACHINES_ADMIN);
132
133 export const navigateToRepositories = push(Routes.REPOSITORIES);
134
135 export const navigateToSshKeysAdmin = push(Routes.SSH_KEYS_ADMIN);
136
137 export const navigateToSshKeysUser = push(Routes.SSH_KEYS_USER);
138
139 export const navigateToSiteManager = push(Routes.SITE_MANAGER);
140
141 export const navigateToMyAccount = push(Routes.MY_ACCOUNT);
142
143 export const navigateToLinkAccount = push(Routes.LINK_ACCOUNT);
144
145 export const navigateToKeepServices = push(Routes.KEEP_SERVICES);
146
147 export const navigateToUsers = push(Routes.USERS);
148
149 export const navigateToUserProfile = compose(push, getUserProfileUrl);
150
151 export const navigateToApiClientAuthorizations = push(Routes.API_CLIENT_AUTHORIZATIONS);
152
153 export const navigateToGroups = push(Routes.GROUPS);
154
155 export const navigateToGroupDetails = compose(push, getGroupUrl);
156
157 export const navigateToLinks = push(Routes.LINKS);
158
159 export const navigateToCollectionsContentAddress = push(Routes.COLLECTIONS_CONTENT_ADDRESS);
160
161 export const navigateToAllProcesses = push(Routes.ALL_PROCESSES);