15768: fixed navigateTo bug Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii...
[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 { ServiceRepository } from "services/services";
12 import { pluginConfig } from "plugins";
13 import { snackbarActions, SnackbarKind } from "store/snackbar/snackbar-actions";
14 import { USERS_PANEL_LABEL, MY_ACCOUNT_PANEL_LABEL } from "store/breadcrumbs/breadcrumbs-actions";
15
16 export const navigationNotAvailable = (id: string) =>
17     snackbarActions.OPEN_SNACKBAR({
18         message: `${id} not available`,
19         hideDuration: 3000,
20         kind: SnackbarKind.ERROR,
21     });
22
23 export const navigateTo = (inputUuid: any) => async (dispatch: Dispatch, getState: () => RootState) => {
24     const uuid = typeof inputUuid === "string" ? inputUuid : inputUuid[0];
25
26     for (const navToFn of pluginConfig.navigateToHandlers) {
27         if (navToFn(dispatch, getState, uuid)) {
28             return;
29         }
30     }
31
32     const kind = extractUuidKind(uuid);
33     switch (kind) {
34         case ResourceKind.PROJECT:
35         case ResourceKind.USER:
36         case ResourceKind.COLLECTION:
37         case ResourceKind.CONTAINER_REQUEST:
38             dispatch<any>(pushOrGoto(getNavUrl(uuid, getState().auth)));
39             return;
40         case ResourceKind.VIRTUAL_MACHINE:
41             dispatch<any>(navigateToAdminVirtualMachines);
42             return;
43         case ResourceKind.WORKFLOW:
44             dispatch<any>(pushOrGoto(getNavUrl(uuid, getState().auth)));
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.TRASH:
66             dispatch(navigateToTrash);
67             return;
68         case SidePanelTreeCategory.GROUPS:
69             dispatch(navigateToGroups);
70             return;
71         case SidePanelTreeCategory.ALL_PROCESSES:
72             dispatch(navigateToAllProcesses);
73             return;
74         case USERS_PANEL_LABEL:
75             dispatch(navigateToUsers);
76             return;
77         case MY_ACCOUNT_PANEL_LABEL:
78             dispatch(navigateToMyAccount);
79             return;
80     }
81
82     dispatch(navigationNotAvailable(uuid));
83 };
84
85 export const navigateToNotFound = push(Routes.NO_MATCH);
86
87 export const navigateToRoot = push(Routes.ROOT);
88
89 export const navigateToFavorites = push(Routes.FAVORITES);
90
91 export const navigateToTrash = push(Routes.TRASH);
92
93 export const navigateToPublicFavorites = push(Routes.PUBLIC_FAVORITES);
94
95 export const navigateToWorkflows = push(Routes.WORKFLOWS);
96
97 export const pushOrGoto = (url: string): AnyAction => {
98     if (url === "") {
99         return { type: "noop" };
100     } else if (url[0] === "/") {
101         return push(url);
102     } else {
103         window.location.href = url;
104         return { type: "noop" };
105     }
106 };
107
108 export const navigateToRootProject = (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
109     navigateTo(SidePanelTreeCategory.PROJECTS)(dispatch, getState);
110 };
111
112 export const navigateToSharedWithMe = push(Routes.SHARED_WITH_ME);
113
114 export const navigateToRunProcess = push(Routes.RUN_PROCESS);
115
116 export const navigateToSearchResults = (searchValue: string) => {
117     if (searchValue !== "") {
118         return push({ pathname: Routes.SEARCH_RESULTS, search: "?q=" + encodeURIComponent(searchValue) });
119     } else {
120         return push({ pathname: Routes.SEARCH_RESULTS });
121     }
122 };
123
124 export const navigateToUserVirtualMachines = push(Routes.VIRTUAL_MACHINES_USER);
125
126 export const navigateToAdminVirtualMachines = push(Routes.VIRTUAL_MACHINES_ADMIN);
127
128 export const navigateToRepositories = push(Routes.REPOSITORIES);
129
130 export const navigateToSshKeysAdmin = push(Routes.SSH_KEYS_ADMIN);
131
132 export const navigateToSshKeysUser = push(Routes.SSH_KEYS_USER);
133
134 export const navigateToSiteManager = push(Routes.SITE_MANAGER);
135
136 export const navigateToMyAccount = push(Routes.MY_ACCOUNT);
137
138 export const navigateToLinkAccount = push(Routes.LINK_ACCOUNT);
139
140 export const navigateToKeepServices = push(Routes.KEEP_SERVICES);
141
142 export const navigateToUsers = push(Routes.USERS);
143
144 export const navigateToUserProfile = compose(push, getUserProfileUrl);
145
146 export const navigateToApiClientAuthorizations = push(Routes.API_CLIENT_AUTHORIZATIONS);
147
148 export const navigateToGroups = push(Routes.GROUPS);
149
150 export const navigateToGroupDetails = compose(push, getGroupUrl);
151
152 export const navigateToLinks = push(Routes.LINKS);
153
154 export const navigateToCollectionsContentAddress = push(Routes.COLLECTIONS_CONTENT_ADDRESS);
155
156 export const navigateToAllProcesses = push(Routes.ALL_PROCESSES);