X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ddac62fc3f788162bd56bbd5bcacc2f9395c9cca..72a8bf2138429b61dfc9710cc41932396b6f5b4f:/src/store/collections/collection-move-actions.ts diff --git a/src/store/collections/collection-move-actions.ts b/src/store/collections/collection-move-actions.ts index dcd7b1aa..929f1612 100644 --- a/src/store/collections/collection-move-actions.ts +++ b/src/store/collections/collection-move-actions.ts @@ -3,21 +3,26 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { dialogActions } from "~/store/dialog/dialog-actions"; -import { startSubmit, stopSubmit, initialize } from 'redux-form'; -import { ServiceRepository } from '~/services/services'; -import { RootState } from '~/store/store'; -import { getCommonResourceServiceError, CommonResourceServiceError } from "~/common/api/common-resource-service"; -import { snackbarActions } from '~/store/snackbar/snackbar-actions'; -import { projectPanelActions } from '~/store/project-panel/project-panel-action'; -import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog'; -import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions'; +import { dialogActions } from "store/dialog/dialog-actions"; +import { startSubmit, stopSubmit, initialize, FormErrors } from 'redux-form'; +import { ServiceRepository } from 'services/services'; +import { RootState } from 'store/store'; +import { getCommonResourceServiceError, CommonResourceServiceError } from "services/common-service/common-resource-service"; +import {snackbarActions, SnackbarKind} from 'store/snackbar/snackbar-actions'; +import { projectPanelActions } from 'store/project-panel/project-panel-action'; +import { MoveToFormDialogData } from 'store/move-to-dialog/move-to-dialog'; +import { resetPickerProjectTree } from 'store/project-tree-picker/project-tree-picker-actions'; +import { progressIndicatorActions } from "store/progress-indicator/progress-indicator-actions"; +import { initProjectsTreePicker } from 'store/tree-picker/tree-picker-actions'; +import { getResource } from "store/resources/resources"; +import { CollectionResource } from "models/collection"; export const COLLECTION_MOVE_FORM_NAME = 'collectionMoveFormName'; export const openMoveCollectionDialog = (resource: { name: string, uuid: string }) => (dispatch: Dispatch) => { dispatch(resetPickerProjectTree()); + dispatch(initProjectsTreePicker(COLLECTION_MOVE_FORM_NAME)); dispatch(initialize(COLLECTION_MOVE_FORM_NAME, resource)); dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_MOVE_FORM_NAME, data: {} })); }; @@ -25,21 +30,26 @@ export const openMoveCollectionDialog = (resource: { name: string, uuid: string export const moveCollection = (resource: MoveToFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(startSubmit(COLLECTION_MOVE_FORM_NAME)); + let cachedCollection = getResource(resource.uuid)(getState().resources); try { - const collection = await services.collectionService.get(resource.uuid); - await services.collectionService.update(resource.uuid, { ...collection, ownerUuid: resource.ownerUuid }); + dispatch(progressIndicatorActions.START_WORKING(COLLECTION_MOVE_FORM_NAME)); + if (!cachedCollection) { + cachedCollection = await services.collectionService.get(resource.uuid); + } + const collection = await services.collectionService.update(resource.uuid, { ownerUuid: resource.ownerUuid }); dispatch(projectPanelActions.REQUEST_ITEMS()); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_MOVE_FORM_NAME })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been moved', hideDuration: 2000 })); - return collection; + dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_MOVE_FORM_NAME)); + return {...cachedCollection, ...collection}; } catch (e) { const error = getCommonResourceServiceError(e); - if (error === CommonResourceServiceError.UNIQUE_VIOLATION) { - dispatch(stopSubmit(COLLECTION_MOVE_FORM_NAME, { ownerUuid: 'A collection with the same name already exists in the target project.' })); + if (error === CommonResourceServiceError.UNIQUE_NAME_VIOLATION) { + dispatch(stopSubmit(COLLECTION_MOVE_FORM_NAME, { ownerUuid: 'A collection with the same name already exists in the target project.' } as FormErrors)); } else { dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_MOVE_FORM_NAME })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Could not move the collection.', hideDuration: 2000 })); + dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Could not move the collection.', hideDuration: 2000, kind: SnackbarKind.ERROR })); } - return ; + dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_MOVE_FORM_NAME)); + return; } };