X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/88ce683068f65862b3b5e753e55989902be5f1a9..df9ea1569dd0d4ae1c05bacc8a5e5f7695f4453b:/src/store/trash/trash-actions.ts diff --git a/src/store/trash/trash-actions.ts b/src/store/trash/trash-actions.ts index 06e16483..b59276c1 100644 --- a/src/store/trash/trash-actions.ts +++ b/src/store/trash/trash-actions.ts @@ -5,52 +5,84 @@ import { Dispatch } from "redux"; import { RootState } from "~/store/store"; import { ServiceRepository } from "~/services/services"; -import { snackbarActions } from "~/store/snackbar/snackbar-actions"; +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 { navigateToTrash } from '../navigation/navigation-action'; +import { matchTrashRoute, 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()); + try { + if (isTrashed) { + dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Restoring from trash..." })); + await services.groupsService.untrash(uuid); + dispatch(activateSidePanelTreeItem(uuid)); + 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..." })); + await services.groupsService.trash(uuid); + dispatch(loadSidePanelTreeProjects(ownerUuid)); + dispatch(snackbarActions.OPEN_SNACKBAR({ + message: "Added to trash", + hideDuration: 2000, + kind: SnackbarKind.SUCCESS + })); + } + } 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: "Could not move project to trash", + kind: SnackbarKind.ERROR })); } }; 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()); + try { + if (isTrashed) { + const { location } = getState().router; + dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Restoring 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..." })); + 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: "Added to trash", - hideDuration: 2000 + message: "Could not move collection to trash", + kind: SnackbarKind.ERROR })); } }; + +export const toggleTrashed = (kind: ResourceKind, uuid: string, ownerUuid: string, isTrashed: boolean) => + (dispatch: Dispatch) => { + if (kind === ResourceKind.PROJECT) { + dispatch(toggleProjectTrashed(uuid, ownerUuid, isTrashed!!)); + } else if (kind === ResourceKind.COLLECTION) { + dispatch(toggleCollectionTrashed(uuid, isTrashed!!)); + } + };