X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c324b64f3b26e79b4640b6f0cf55671f1a261bca..33f356b44d2935a5b3f3d233c3b635e8e7b50085:/src/store/trash/trash-actions.ts diff --git a/src/store/trash/trash-actions.ts b/src/store/trash/trash-actions.ts index 5cf952eb..b59276c1 100644 --- a/src/store/trash/trash-actions.ts +++ b/src/store/trash/trash-actions.ts @@ -10,6 +10,8 @@ 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 => { @@ -46,8 +48,12 @@ export const toggleCollectionTrashed = (uuid: string, isTrashed: boolean) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise => { 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",