X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ea66f8c38e160e47975be9680ebea8878343a13b..c48d10802d4ae95273f8b98e622e5df200cdc3a7:/src/store/trash/trash-actions.ts?ds=sidebyside diff --git a/src/store/trash/trash-actions.ts b/src/store/trash/trash-actions.ts index 690f824d..85ffd4a0 100644 --- a/src/store/trash/trash-actions.ts +++ b/src/store/trash/trash-actions.ts @@ -3,15 +3,15 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { RootState } from "~/store/store"; -import { ServiceRepository } from "~/services/services"; -import { snackbarActions, SnackbarKind } from "~/store/snackbar/snackbar-actions"; -import { trashPanelActions } from "~/store/trash-panel/trash-panel-action"; -import { activateSidePanelTreeItem, loadSidePanelTreeProjects } from "~/store/side-panel-tree/side-panel-tree-actions"; -import { getProjectPanelCurrentUuid, projectPanelActions } from "~/store/project-panel/project-panel-action"; -import { ResourceKind } from "~/models/resource"; -import { navigateTo, navigateToTrash } from '~/store/navigation/navigation-action'; -import { matchCollectionRoute } from '~/routes/routes'; +import { RootState } from "store/store"; +import { ServiceRepository } from "services/services"; +import { snackbarActions, SnackbarKind } from "store/snackbar/snackbar-actions"; +import { trashPanelActions } from "store/trash-panel/trash-panel-action"; +import { activateSidePanelTreeItem, loadSidePanelTreeProjects } from "store/side-panel-tree/side-panel-tree-actions"; +import { projectPanelActions } from "store/project-panel/project-panel-action"; +import { ResourceKind } from "models/resource"; +import { navigateTo, navigateToTrash } from 'store/navigation/navigation-action'; +import { matchCollectionRoute } from 'routes/routes'; export const toggleProjectTrashed = (uuid: string, ownerUuid: string, isTrashed: boolean) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise => { @@ -28,12 +28,8 @@ export const toggleProjectTrashed = (uuid: string, ownerUuid: string, isTrashed: errorMessage = "Could not move project to trash"; successMessage = "Added to trash"; await services.groupsService.trash(uuid); - if (getProjectPanelCurrentUuid(getState()) === uuid) { - dispatch(navigateTo(ownerUuid)); - } else { - dispatch(projectPanelActions.REQUEST_ITEMS()); - } dispatch(loadSidePanelTreeProjects(ownerUuid)); + dispatch(navigateTo(ownerUuid)); } } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ @@ -50,36 +46,35 @@ export const toggleProjectTrashed = (uuid: string, ownerUuid: string, isTrashed: export const toggleCollectionTrashed = (uuid: string, isTrashed: boolean) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise => { + let errorMessage = ''; + let successMessage = ''; try { if (isTrashed) { const { location } = getState().router; - dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Restoring from trash...", kind: SnackbarKind.INFO })); + errorMessage = "Could not restore collection from trash"; + successMessage = "Restored from trash"; await services.collectionService.untrash(uuid); if (matchCollectionRoute(location ? location.pathname : '')) { dispatch(navigateToTrash); } dispatch(trashPanelActions.REQUEST_ITEMS()); - dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Restored from trash", - hideDuration: 2000, - kind: SnackbarKind.SUCCESS - })); } else { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Moving to trash...", kind: SnackbarKind.INFO })); + errorMessage = "Could not move collection to trash"; + successMessage = "Added to trash"; await services.collectionService.trash(uuid); dispatch(projectPanelActions.REQUEST_ITEMS()); - dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Added to trash", - hideDuration: 2000, - kind: SnackbarKind.SUCCESS - })); } } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Could not move collection to trash", + message: errorMessage, kind: SnackbarKind.ERROR })); } + dispatch(snackbarActions.OPEN_SNACKBAR({ + message: successMessage, + hideDuration: 2000, + kind: SnackbarKind.SUCCESS + })); }; export const toggleTrashed = (kind: ResourceKind, uuid: string, ownerUuid: string, isTrashed: boolean) =>