Fix tslint error
[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 } from "redux";
6 import { getProjectList, projectActions } from "../project/project-action";
7 import { push } from "react-router-redux";
8 import { TreeItemStatus } from "../../components/tree/tree";
9 import { findTreeItem } from "../project/project-reducer";
10 import { RootState } from "../store";
11 import { ResourceKind } from "../../models/resource";
12 import { projectPanelActions } from "../project-panel/project-panel-action";
13 import { getCollectionUrl } from "../../models/collection";
14 import { getProjectUrl, ProjectResource } from "../../models/project";
15 import { ProjectService } from "../../services/project-service/project-service";
16 import { ServiceRepository } from "../../services/services";
17 import { sidePanelActions } from "../side-panel/side-panel-action";
18 import { SidePanelIdentifiers } from "../side-panel/side-panel-reducer";
19 import { getUuidObjectType, ObjectTypes } from "../../models/object-types";
20
21 export const getResourceUrl = (resourceKind: ResourceKind, resourceUuid: string): string => {
22     switch (resourceKind) {
23         case ResourceKind.PROJECT: return getProjectUrl(resourceUuid);
24         case ResourceKind.COLLECTION: return getCollectionUrl(resourceUuid);
25         default:
26             return '';
27     }
28 };
29
30 export enum ItemMode {
31     BOTH,
32     OPEN,
33     ACTIVE
34 }
35
36 export const setProjectItem = (itemId: string, itemMode: ItemMode) =>
37     (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
38         console.log("SetProjectItem!!", itemId);
39         debugger;
40         const { projects, router } = getState();
41         const treeItem = findTreeItem(projects.items, itemId);
42
43         if (treeItem) {
44             const resourceUrl = getResourceUrl(treeItem.data.kind, treeItem.data.uuid);
45
46             if (itemMode === ItemMode.ACTIVE || itemMode === ItemMode.BOTH) {
47                 if (router.location && !router.location.pathname.includes(resourceUrl)) {
48                     dispatch(push(resourceUrl));
49                 }
50                 dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM_ACTIVE(treeItem.data.uuid));
51             }
52
53             const promise = treeItem.status === TreeItemStatus.LOADED
54                 ? Promise.resolve()
55                 : dispatch<any>(getProjectList(itemId));
56
57             promise
58                 .then(() => dispatch<any>(() => {
59                     if (itemMode === ItemMode.OPEN || itemMode === ItemMode.BOTH) {
60                         dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM_OPEN(treeItem.data.uuid));
61                     }
62                     dispatch(projectPanelActions.RESET_PAGINATION());
63                     dispatch(projectPanelActions.REQUEST_ITEMS());
64                 }));
65
66         } else {
67             const uuid = services.authService.getUuid();
68             if (itemId === uuid) {
69                 dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM_ACTIVE(uuid));
70                 dispatch(projectPanelActions.RESET_PAGINATION());
71                 dispatch(projectPanelActions.REQUEST_ITEMS());
72             }
73         }
74     };
75
76 export const restoreBranch = (itemId: string) =>
77     async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
78         const ancestors = await loadProjectAncestors(itemId, services.projectService);
79         const uuids = ancestors.map(ancestor => ancestor.uuid);
80         await loadBranch(uuids, dispatch);
81         dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(SidePanelIdentifiers.PROJECTS));
82         dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(SidePanelIdentifiers.PROJECTS));
83         uuids.forEach(uuid => {
84             dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM_OPEN(uuid));
85         });
86     };
87
88 export const loadProjectAncestors = async (uuid: string, projectService: ProjectService): Promise<Array<ProjectResource>> => {
89     if (getUuidObjectType(uuid) === ObjectTypes.USER) {
90         return [];
91     } else {
92         const currentProject = await projectService.get(uuid);
93         const ancestors = await loadProjectAncestors(currentProject.ownerUuid, projectService);
94         return [...ancestors, currentProject];
95     }
96 };
97
98 const loadBranch = async (uuids: string[], dispatch: Dispatch): Promise<any> => {
99     const [uuid, ...rest] = uuids;
100     if (uuid) {
101         await dispatch<any>(getProjectList(uuid));
102         return loadBranch(rest, dispatch);
103     }
104 };