15768: unit tests pass again Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox...
[arvados-workbench2.git] / src / store / project-panel / project-panel-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 { bindDataExplorerActions } from "store/data-explorer/data-explorer-action";
7 import { propertiesActions } from "store/properties/properties-actions";
8 import { RootState } from "store/store";
9 import { getProperty } from "store/properties/properties";
10 import { loadProject } from "store/workbench/workbench-actions";
11 import { projectPanelActions } from "store/data-explorer/data-explorer-action";
12
13 export const PROJECT_PANEL_ID = "projectPanel";
14 export const PROJECT_PANEL_CURRENT_UUID = "projectPanelCurrentUuid";
15 export const IS_PROJECT_PANEL_TRASHED = "isProjectPanelTrashed";
16
17 export const openProjectPanel = (projectUuid: string) => async (dispatch: Dispatch) => {
18     await dispatch<any>(loadProject(projectUuid));
19     dispatch(propertiesActions.SET_PROPERTY({ key: PROJECT_PANEL_CURRENT_UUID, value: projectUuid }));
20     dispatch(projectPanelActions.RESET_EXPLORER_SEARCH_VALUE());
21     dispatch(projectPanelActions.REQUEST_ITEMS());
22 };
23
24 export const getProjectPanelCurrentUuid = (state: RootState) => getProperty<string>(PROJECT_PANEL_CURRENT_UUID)(state.properties);
25
26 export const setIsProjectPanelTrashed = (isTrashed: boolean) => propertiesActions.SET_PROPERTY({ key: IS_PROJECT_PANEL_TRASHED, value: isTrashed });