X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ffac6f1051efb642db49c4c4a5d2f3f477ca6d34..9e16e70e7f9bc9fd0e0a52eca9a9c37a45ef3639:/src/store/project-panel/project-panel-action.ts diff --git a/src/store/project-panel/project-panel-action.ts b/src/store/project-panel/project-panel-action.ts index e0d58247e7..3b30f4aab5 100644 --- a/src/store/project-panel/project-panel-action.ts +++ b/src/store/project-panel/project-panel-action.ts @@ -2,7 +2,25 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { bindDataExplorerActions } from "../data-explorer/data-explorer-action"; -import { ProjectPanelMiddlewareService } from "./project-panel-middleware-service"; +import { Dispatch } from 'redux'; +import { bindDataExplorerActions } from "store/data-explorer/data-explorer-action"; +import { propertiesActions } from "store/properties/properties-actions"; +import { RootState } from 'store/store'; +import { getProperty } from "store/properties/properties"; -export const projectPanelActions = bindDataExplorerActions(ProjectPanelMiddlewareService.getInstance()); +export const PROJECT_PANEL_ID = "projectPanel"; +export const PROJECT_PANEL_CURRENT_UUID = "projectPanelCurrentUuid"; +export const IS_PROJECT_PANEL_TRASHED = 'isProjectPanelTrashed'; +export const projectPanelActions = bindDataExplorerActions(PROJECT_PANEL_ID); + +export const openProjectPanel = (projectUuid: string) => + (dispatch: Dispatch) => { + dispatch(propertiesActions.SET_PROPERTY({ key: PROJECT_PANEL_CURRENT_UUID, value: projectUuid })); + dispatch(projectPanelActions.RESET_EXPLORER_SEARCH_VALUE()); + dispatch(projectPanelActions.REQUEST_ITEMS()); + }; + +export const getProjectPanelCurrentUuid = (state: RootState) => getProperty(PROJECT_PANEL_CURRENT_UUID)(state.properties); + +export const setIsProjectPanelTrashed = (isTrashed: boolean) => + propertiesActions.SET_PROPERTY({ key: IS_PROJECT_PANEL_TRASHED, value: isTrashed });