X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cb690390d4f253c3bbb9c543e243cf988f39fbb3..edcdf0ae72c56bf4aa05f93ed2877faa3a5e75c4:/services/workbench2/src/store/trash/trash-actions.ts diff --git a/services/workbench2/src/store/trash/trash-actions.ts b/services/workbench2/src/store/trash/trash-actions.ts index f4e3d3f0c4..c7c3186c0f 100644 --- a/services/workbench2/src/store/trash/trash-actions.ts +++ b/services/workbench2/src/store/trash/trash-actions.ts @@ -8,12 +8,12 @@ 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-bind"; +import { projectPanelDataActions } from "store/project-panel/project-panel-action-bind"; import { sharedWithMePanelActions } from "store/shared-with-me-panel/shared-with-me-panel-actions"; import { ResourceKind } from "models/resource"; import { navigateTo, navigateToTrash } from "store/navigation/navigation-action"; import { matchCollectionRoute, matchSharedWithMeRoute } from "routes/routes"; -import { MultiSelectMenuActionNames } from "views-components/multiselect-toolbar/ms-menu-actions"; +import { ContextMenuActionNames } from "views-components/context-menu/context-menu-action-set"; import { addDisabledButton } from "store/multiselect/multiselect-actions"; export const toggleProjectTrashed = @@ -22,7 +22,7 @@ export const toggleProjectTrashed = let errorMessage = ""; let successMessage = ""; let untrashedResource; - dispatch(addDisabledButton(MultiSelectMenuActionNames.MOVE_TO_TRASH)) + dispatch(addDisabledButton(ContextMenuActionNames.MOVE_TO_TRASH)) try { if (isTrashed) { errorMessage = "Could not restore project from trash"; @@ -35,7 +35,7 @@ export const toggleProjectTrashed = successMessage = "Added project to trash"; await services.groupsService.trash(uuid); dispatch(loadSidePanelTreeProjects(ownerUuid)); - + const { location } = getState().router; if (matchSharedWithMeRoute(location ? location.pathname : "")) { dispatch(sharedWithMePanelActions.REQUEST_ITEMS()); @@ -77,7 +77,7 @@ export const toggleCollectionTrashed = async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository): Promise => { let errorMessage = ""; let successMessage = ""; - dispatch(addDisabledButton(MultiSelectMenuActionNames.MOVE_TO_TRASH)) + dispatch(addDisabledButton(ContextMenuActionNames.MOVE_TO_TRASH)) try { if (isTrashed) { const { location } = getState().router; @@ -92,7 +92,7 @@ export const toggleCollectionTrashed = errorMessage = "Could not move collection to trash"; successMessage = "Added to trash"; await services.collectionService.trash(uuid); - dispatch(projectPanelActions.REQUEST_ITEMS()); + dispatch(projectPanelDataActions.REQUEST_ITEMS()); } dispatch( snackbarActions.OPEN_SNACKBAR({