X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/47eb02af0c2c7bc4f0f852400308033c72322af8..72a8bf2138429b61dfc9710cc41932396b6f5b4f:/src/store/collections/collection-copy-actions.ts?ds=sidebyside diff --git a/src/store/collections/collection-copy-actions.ts b/src/store/collections/collection-copy-actions.ts index 4038c715..d4e647f8 100644 --- a/src/store/collections/collection-copy-actions.ts +++ b/src/store/collections/collection-copy-actions.ts @@ -3,49 +3,70 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { dialogActions } from "~/store/dialog/dialog-actions"; -import { initialize, startSubmit, stopSubmit } from 'redux-form'; -import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions'; -import { RootState } from '~/store/store'; -import { ServiceRepository } from '~/services/services'; -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 { dialogActions } from "store/dialog/dialog-actions"; +import { FormErrors, initialize, startSubmit, stopSubmit } from "redux-form"; +import { resetPickerProjectTree } from "store/project-tree-picker/project-tree-picker-actions"; +import { RootState } from "store/store"; +import { ServiceRepository } from "services/services"; +import { getCommonResourceServiceError, CommonResourceServiceError } from "services/common-service/common-resource-service"; +import { CopyFormDialogData } from "store/copy-dialog/copy-dialog"; +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_COPY_FORM_NAME = 'projectCopy'; +export const COLLECTION_COPY_FORM_NAME = "collectionCopyFormName"; +export const COLLECTION_MULTI_COPY_FORM_NAME = "collectionMultiCopyFormName"; -export interface CollectionCopyFormDialogData { - name: string; - ownerUuid: string; - uuid: string; -} +export const openCollectionCopyDialog = (resource: { name: string; uuid: string; isSingle?: boolean }) => (dispatch: Dispatch) => { + dispatch(resetPickerProjectTree()); + dispatch(initProjectsTreePicker(COLLECTION_COPY_FORM_NAME)); + const initialData: CopyFormDialogData = { name: `Copy of: ${resource.name}`, ownerUuid: "", uuid: resource.uuid, isSingle: resource.isSingle }; + dispatch(initialize(COLLECTION_COPY_FORM_NAME, initialData)); + dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_COPY_FORM_NAME, data: {} })); +}; -export const openCollectionCopyDialog = (resource: { name: string, uuid: string }) => - (dispatch: Dispatch) => { - dispatch(resetPickerProjectTree()); - const initialData: CollectionCopyFormDialogData = { name: `Copy of: ${resource.name}`, ownerUuid: '', uuid: resource.uuid }; - dispatch(initialize(COLLECTION_COPY_FORM_NAME, initialData)); - dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_COPY_FORM_NAME, data: {} })); - }; +export const openMultiCollectionCopyDialog = (resource: { name: string; uuid: string; isSingle?: boolean }) => (dispatch: Dispatch) => { + dispatch(resetPickerProjectTree()); + dispatch(initProjectsTreePicker(COLLECTION_MULTI_COPY_FORM_NAME)); + const initialData: CopyFormDialogData = { name: `Copy of: ${resource.name}`, ownerUuid: "", uuid: resource.uuid, isSingle: resource.isSingle }; + dispatch(initialize(COLLECTION_MULTI_COPY_FORM_NAME, initialData)); + dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_MULTI_COPY_FORM_NAME, data: {} })); +}; -export const copyCollection = (resource: CollectionCopyFormDialogData) => - async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - dispatch(startSubmit(COLLECTION_COPY_FORM_NAME)); +export const copyCollection = + (resource: CopyFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { + const formName = resource.isSingle ? COLLECTION_COPY_FORM_NAME : COLLECTION_MULTI_COPY_FORM_NAME; + dispatch(startSubmit(formName)); + let collection = getResource(resource.uuid)(getState().resources); try { - const collection = await services.collectionService.get(resource.uuid); - const uuidKey = 'uuid'; - delete collection[uuidKey]; - await services.collectionService.create({ ...collection, ownerUuid: resource.ownerUuid, name: resource.name }); - dispatch(projectPanelActions.REQUEST_ITEMS()); - dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_COPY_FORM_NAME })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been copied', hideDuration: 2000 })); + if (!collection) { + collection = await services.collectionService.get(resource.uuid); + } + const collManifestText = await services.collectionService.get(resource.uuid, undefined, ["manifestText"]); + collection.manifestText = collManifestText.manifestText; + const { href, ...collectionRecord } = collection; + const newCollection = await services.collectionService.create({ + ...collectionRecord, + ownerUuid: resource.ownerUuid, + name: resource.name, + }); + dispatch(dialogActions.CLOSE_DIALOG({ id: formName })); + return newCollection; } catch (e) { const error = getCommonResourceServiceError(e); - if (error === CommonResourceServiceError.UNIQUE_VIOLATION) { - dispatch(stopSubmit(COLLECTION_COPY_FORM_NAME, { ownerUuid: 'A collection with the same name already exists in the target project.' })); + if (error === CommonResourceServiceError.UNIQUE_NAME_VIOLATION) { + dispatch( + stopSubmit(formName, { + ownerUuid: "A collection with the same name already exists in the target project.", + } as FormErrors) + ); } else { - dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_COPY_FORM_NAME })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Could not copy the collection', hideDuration: 2000 })); + dispatch(dialogActions.CLOSE_DIALOG({ id: formName })); + throw new Error("Could not copy the collection."); } + return; + } finally { + dispatch(progressIndicatorActions.STOP_WORKING(formName)); } - }; \ No newline at end of file + };