X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e53e6f1efe7b156934514b51fd5f956262f6f9af..73122efb6429184611d17b3278ecbe9c2e26a6c2:/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 cd6df55670..85ffd4a0be 100644 --- a/src/store/trash/trash-actions.ts +++ b/src/store/trash/trash-actions.ts @@ -3,57 +3,78 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { RootState } from "~/store/store"; -import { ServiceRepository } from "~/services/services"; -import { snackbarActions } 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, TrashableResource } from "~/models/resource"; +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 => { - if (isTrashed) { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Restoring from trash..." })); - await services.groupsService.untrash(uuid); - dispatch(activateSidePanelTreeItem(uuid)); - dispatch(trashPanelActions.REQUEST_ITEMS()); - dispatch(snackbarActions.CLOSE_SNACKBAR()); + let errorMessage = ''; + let successMessage = ''; + try { + if (isTrashed) { + errorMessage = "Could not restore project from trash"; + successMessage = "Restored from trash"; + await services.groupsService.untrash(uuid); + dispatch(navigateTo(uuid)); + dispatch(activateSidePanelTreeItem(uuid)); + } else { + errorMessage = "Could not move project to trash"; + successMessage = "Added to trash"; + await services.groupsService.trash(uuid); + dispatch(loadSidePanelTreeProjects(ownerUuid)); + dispatch(navigateTo(ownerUuid)); + } + } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Restored from trash", - hideDuration: 2000 - })); - } else { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Moving to trash..." })); - await services.groupsService.trash(uuid); - dispatch(loadSidePanelTreeProjects(ownerUuid)); - dispatch(snackbarActions.CLOSE_SNACKBAR()); - dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Added to trash", - hideDuration: 2000 + message: errorMessage, + kind: SnackbarKind.ERROR })); } + dispatch(snackbarActions.OPEN_SNACKBAR({ + message: successMessage, + hideDuration: 2000, + kind: SnackbarKind.SUCCESS + })); }; export const toggleCollectionTrashed = (uuid: string, isTrashed: boolean) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise => { - if (isTrashed) { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Restoring from trash..." })); - await services.collectionService.untrash(uuid); - dispatch(trashPanelActions.REQUEST_ITEMS()); - dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Restored from trash", - hideDuration: 2000 - })); - } else { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Moving to trash..." })); - await services.collectionService.trash(uuid); - dispatch(projectPanelActions.REQUEST_ITEMS()); + let errorMessage = ''; + let successMessage = ''; + try { + if (isTrashed) { + const { location } = getState().router; + 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()); + } else { + errorMessage = "Could not move collection to trash"; + successMessage = "Added to trash"; + await services.collectionService.trash(uuid); + dispatch(projectPanelActions.REQUEST_ITEMS()); + } + } catch (e) { dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Added to trash", - hideDuration: 2000 + 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) =>