// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from 'redux'; import { RootState } from "../store"; import { loadDetailsPanel } from '~/store/details-panel/details-panel-action'; import { loadCollectionPanel } from '~/store/collection-panel/collection-panel-action'; import { snackbarActions } from '../snackbar/snackbar-actions'; import { loadFavoritePanel } from '../favorite-panel/favorite-panel-action'; import { openProjectPanel, projectPanelActions } from '~/store/project-panel/project-panel-action'; import { activateSidePanelTreeItem, initSidePanelTree, SidePanelTreeCategory, loadSidePanelTreeProjects, getSidePanelTreeNodeAncestorsIds } from '../side-panel-tree/side-panel-tree-actions'; import { loadResource, updateResources } from '../resources/resources-actions'; import { favoritePanelActions } from '~/store/favorite-panel/favorite-panel-action'; import { projectPanelColumns } from '~/views/project-panel/project-panel'; import { favoritePanelColumns } from '~/views/favorite-panel/favorite-panel'; import { matchRootRoute } from '~/routes/routes'; import { setCollectionBreadcrumbs, setProjectBreadcrumbs, setSidePanelBreadcrumbs, setProcessBreadcrumbs, setSharedWithMeBreadcrumbs } from '../breadcrumbs/breadcrumbs-actions'; import { navigateToProject } from '../navigation/navigation-action'; import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog'; import { ServiceRepository } from '~/services/services'; import { getResource } from '../resources/resources'; import { getProjectPanelCurrentUuid } from '../project-panel/project-panel-action'; import * as projectCreateActions from '~/store/projects/project-create-actions'; import * as projectMoveActions from '~/store/projects/project-move-actions'; import * as projectUpdateActions from '~/store/projects/project-update-actions'; import * as collectionCreateActions from '~/store/collections/collection-create-actions'; import * as collectionCopyActions from '~/store/collections/collection-copy-actions'; import * as collectionUpdateActions from '~/store/collections/collection-update-actions'; import * as collectionMoveActions from '~/store/collections/collection-move-actions'; import * as processesActions from '../processes/processes-actions'; import * as processMoveActions from '~/store/processes/process-move-actions'; import * as processUpdateActions from '~/store/processes/process-update-actions'; import * as processCopyActions from '~/store/processes/process-copy-actions'; import { trashPanelColumns } from "~/views/trash-panel/trash-panel"; import { loadTrashPanel, trashPanelActions } from "~/store/trash-panel/trash-panel-action"; import { initProcessLogsPanel } from '../process-logs-panel/process-logs-panel-actions'; import { loadProcessPanel } from '~/store/process-panel/process-panel-actions'; import { sharedWithMePanelActions } from '~/store/shared-with-me-panel/shared-with-me-panel-actions'; import { loadSharedWithMePanel } from '../shared-with-me-panel/shared-with-me-panel-actions'; import { CopyFormDialogData } from '~/store/copy-dialog/copy-dialog'; export const loadWorkbench = () => async (dispatch: Dispatch, getState: () => RootState) => { const { auth, router } = getState(); const { user } = auth; if (user) { const userResource = await dispatch(loadResource(user.uuid)); if (userResource) { dispatch(projectPanelActions.SET_COLUMNS({ columns: projectPanelColumns })); dispatch(favoritePanelActions.SET_COLUMNS({ columns: favoritePanelColumns })); dispatch(trashPanelActions.SET_COLUMNS({ columns: trashPanelColumns })); dispatch(sharedWithMePanelActions.SET_COLUMNS({ columns: projectPanelColumns })); dispatch(initSidePanelTree()); if (router.location) { const match = matchRootRoute(router.location.pathname); if (match) { dispatch(navigateToProject(userResource.uuid)); } } } else { dispatch(userIsNotAuthenticated); } } else { dispatch(userIsNotAuthenticated); } }; export const loadFavorites = () => (dispatch: Dispatch) => { dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.FAVORITES)); dispatch(loadFavoritePanel()); dispatch(setSidePanelBreadcrumbs(SidePanelTreeCategory.FAVORITES)); }; export const loadTrash = () => (dispatch: Dispatch) => { dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH)); dispatch(loadTrashPanel()); dispatch(setSidePanelBreadcrumbs(SidePanelTreeCategory.TRASH)); }; export const loadProject = (uuid: string) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(openProjectPanel(uuid)); await dispatch(activateSidePanelTreeItem(uuid)); const ancestors = getSidePanelTreeNodeAncestorsIds(uuid)(getState().treePicker); if (ancestors.find(uuid => uuid === services.authService.getUuid())) { dispatch(setProjectBreadcrumbs(uuid)); } else { dispatch(setSharedWithMeBreadcrumbs(uuid)); dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.SHARED_WITH_ME)); } dispatch(loadDetailsPanel(uuid)); }; export const createProject = (data: projectCreateActions.ProjectCreateFormDialogData) => async (dispatch: Dispatch) => { const newProject = await dispatch(projectCreateActions.createProject(data)); if (newProject) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Project has been successfully created.", hideDuration: 2000 })); await dispatch(loadSidePanelTreeProjects(newProject.ownerUuid)); dispatch(reloadProjectMatchingUuid([newProject.ownerUuid])); } }; export const moveProject = (data: MoveToFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { try { const oldProject = getResource(data.uuid)(getState().resources); const oldOwnerUuid = oldProject ? oldProject.ownerUuid : ''; const movedProject = await dispatch(projectMoveActions.moveProject(data)); if (movedProject) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Project has been moved', hideDuration: 2000 })); if (oldProject) { await dispatch(loadSidePanelTreeProjects(oldProject.ownerUuid)); } dispatch(reloadProjectMatchingUuid([oldOwnerUuid, movedProject.ownerUuid, movedProject.uuid])); } } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000 })); } }; export const updateProject = (data: projectUpdateActions.ProjectUpdateFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { const updatedProject = await dispatch(projectUpdateActions.updateProject(data)); if (updatedProject) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Project has been successfully updated.", hideDuration: 2000 })); await dispatch(loadSidePanelTreeProjects(updatedProject.ownerUuid)); dispatch(reloadProjectMatchingUuid([updatedProject.ownerUuid, updatedProject.uuid])); } }; export const loadCollection = (uuid: string) => async (dispatch: Dispatch) => { const collection = await dispatch(loadCollectionPanel(uuid)); await dispatch(activateSidePanelTreeItem(collection.ownerUuid)); dispatch(setCollectionBreadcrumbs(collection.uuid)); dispatch(loadDetailsPanel(uuid)); }; export const createCollection = (data: collectionCreateActions.CollectionCreateFormDialogData) => async (dispatch: Dispatch) => { const collection = await dispatch(collectionCreateActions.createCollection(data)); if (collection) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Collection has been successfully created.", hideDuration: 2000 })); dispatch(updateResources([collection])); dispatch(reloadProjectMatchingUuid([collection.ownerUuid])); } }; export const updateCollection = (data: collectionUpdateActions.CollectionUpdateFormDialogData) => async (dispatch: Dispatch) => { const collection = await dispatch(collectionUpdateActions.updateCollection(data)); if (collection) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Collection has been successfully updated.", hideDuration: 2000 })); dispatch(updateResources([collection])); dispatch(reloadProjectMatchingUuid([collection.ownerUuid])); } }; export const copyCollection = (data: CopyFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { try { const collection = await dispatch(collectionCopyActions.copyCollection(data)); dispatch(updateResources([collection])); dispatch(reloadProjectMatchingUuid([collection.ownerUuid])); dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been copied.', hideDuration: 2000 })); } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000 })); } }; export const moveCollection = (data: MoveToFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { try { const collection = await dispatch(collectionMoveActions.moveCollection(data)); dispatch(updateResources([collection])); dispatch(reloadProjectMatchingUuid([collection.ownerUuid])); dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been moved.', hideDuration: 2000 })); } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000 })); } }; export const loadProcess = (uuid: string) => async (dispatch: Dispatch, getState: () => RootState) => { dispatch(loadProcessPanel(uuid)); const process = await dispatch(processesActions.loadProcess(uuid)); await dispatch(activateSidePanelTreeItem(process.containerRequest.ownerUuid)); dispatch(setProcessBreadcrumbs(uuid)); dispatch(loadDetailsPanel(uuid)); }; export const updateProcess = (data: processUpdateActions.ProcessUpdateFormDialogData) => async (dispatch: Dispatch) => { try { const process = await dispatch(processUpdateActions.updateProcess(data)); if (process) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Process has been successfully updated.", hideDuration: 2000 })); dispatch(updateResources([process])); dispatch(reloadProjectMatchingUuid([process.ownerUuid])); } } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000 })); } }; export const moveProcess = (data: MoveToFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { try { const process = await dispatch(processMoveActions.moveProcess(data)); dispatch(updateResources([process])); dispatch(reloadProjectMatchingUuid([process.ownerUuid])); dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process has been moved.', hideDuration: 2000 })); } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000 })); } }; export const copyProcess = (data: CopyFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { try { const process = await dispatch(processCopyActions.copyProcess(data)); dispatch(updateResources([process])); dispatch(reloadProjectMatchingUuid([process.ownerUuid])); dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process has been copied.', hideDuration: 2000 })); } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000 })); } }; export const loadProcessLog = (uuid: string) => async (dispatch: Dispatch) => { const process = await dispatch(processesActions.loadProcess(uuid)); dispatch(setProcessBreadcrumbs(uuid)); dispatch(initProcessLogsPanel(uuid)); await dispatch(activateSidePanelTreeItem(process.containerRequest.ownerUuid)); }; export const resourceIsNotLoaded = (uuid: string) => snackbarActions.OPEN_SNACKBAR({ message: `Resource identified by ${uuid} is not loaded.` }); export const userIsNotAuthenticated = snackbarActions.OPEN_SNACKBAR({ message: 'User is not authenticated' }); export const couldNotLoadUser = snackbarActions.OPEN_SNACKBAR({ message: 'Could not load user' }); export const reloadProjectMatchingUuid = (matchingUuids: string[]) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { const currentProjectPanelUuid = getProjectPanelCurrentUuid(getState()); if (currentProjectPanelUuid && matchingUuids.some(uuid => uuid === currentProjectPanelUuid)) { dispatch(loadProject(currentProjectPanelUuid)); } }; export const loadSharedWithMe = (dispatch: Dispatch) => { dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.SHARED_WITH_ME)); dispatch(loadSharedWithMePanel()); dispatch(setSidePanelBreadcrumbs(SidePanelTreeCategory.SHARED_WITH_ME)); };