X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/42ec7892e74f6d9d19f2f0155830565f447a861f..7490775a0dd834c087f291219092fb350be9705f:/src/store/collections/collection-partial-copy-actions.ts diff --git a/src/store/collections/collection-partial-copy-actions.ts b/src/store/collections/collection-partial-copy-actions.ts index 74fa17b3..9f478d74 100644 --- a/src/store/collections/collection-partial-copy-actions.ts +++ b/src/store/collections/collection-partial-copy-actions.ts @@ -3,17 +3,17 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from 'redux'; -import * as _ from "lodash"; -import { RootState } from '~/store/store'; +import { difference } from "lodash"; +import { RootState } from 'store/store'; import { FormErrors, initialize, startSubmit, stopSubmit } from 'redux-form'; -import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions'; -import { dialogActions } from '~/store/dialog/dialog-actions'; -import { ServiceRepository } from '~/services/services'; +import { resetPickerProjectTree } from 'store/project-tree-picker/project-tree-picker-actions'; +import { dialogActions } from 'store/dialog/dialog-actions'; +import { ServiceRepository } from 'services/services'; import { filterCollectionFilesBySelection } from '../collection-panel/collection-panel-files/collection-panel-files-state'; -import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; -import { getCommonResourceServiceError, CommonResourceServiceError } from '~/services/common-service/common-resource-service'; -import { progressIndicatorActions } from "~/store/progress-indicator/progress-indicator-actions"; -import { initProjectsTreePicker } from '~/store/tree-picker/tree-picker-actions'; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; +import { getCommonResourceServiceError, CommonResourceServiceError } from 'services/common-service/common-resource-service'; +import { progressIndicatorActions } from "store/progress-indicator/progress-indicator-actions"; +import { initProjectsTreePicker } from 'store/tree-picker/tree-picker-actions'; export const COLLECTION_PARTIAL_COPY_FORM_NAME = 'COLLECTION_PARTIAL_COPY_DIALOG'; export const COLLECTION_PARTIAL_COPY_TO_SELECTED_COLLECTION = 'COLLECTION_PARTIAL_COPY_TO_SELECTED_DIALOG'; @@ -52,13 +52,13 @@ export const copyCollectionPartial = ({ name, description, projectUuid }: Collec if (currentCollection) { try { dispatch(progressIndicatorActions.START_WORKING(COLLECTION_PARTIAL_COPY_FORM_NAME)); - const collection = await services.collectionService.get(currentCollection.uuid); + const collectionManifestText = await services.collectionService.get(currentCollection.uuid, undefined, ['manifestText']); const collectionCopy = { name, description, ownerUuid: projectUuid, uuid: undefined, - manifestText: collection.manifestText, + manifestText: collectionManifestText.manifestText, }; const newCollection = await services.collectionService.create(collectionCopy); const copiedFiles = await services.collectionService.files(newCollection.uuid); @@ -67,7 +67,7 @@ export const copyCollectionPartial = ({ name, description, projectUuid }: Collec return !paths.find(path => path.indexOf(file.replace(newCollection.uuid, '')) > -1); }); await services.collectionService.deleteFiles( - '', + newCollection.uuid, filesToDelete ); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_PARTIAL_COPY_FORM_NAME })); @@ -112,6 +112,13 @@ export const copyCollectionPartialToSelectedCollection = ({ collectionUuid }: Co dispatch(startSubmit(COLLECTION_PARTIAL_COPY_TO_SELECTED_COLLECTION)); const state = getState(); const currentCollection = state.collectionPanel.item; + + if (currentCollection && !currentCollection.manifestText) { + const fetchedCurrentCollection = await services.collectionService.get(currentCollection.uuid, undefined, ['manifestText']); + currentCollection.manifestText = fetchedCurrentCollection.manifestText; + currentCollection.unsignedManifestText = fetchedCurrentCollection.unsignedManifestText; + } + if (currentCollection) { try { dispatch(progressIndicatorActions.START_WORKING(COLLECTION_PARTIAL_COPY_TO_SELECTED_COLLECTION)); @@ -123,14 +130,14 @@ export const copyCollectionPartialToSelectedCollection = ({ collectionUuid }: Co if (fileExistsInSelectedCollection) { return path; } else { - return; + return null; } }); - const diffPathToRemove = _.difference(paths, pathsToRemove); - await services.collectionService.deleteFiles(selectedCollection.uuid, pathsToRemove); - const collectionWithDeletedFiles = await services.collectionService.get(collectionUuid); - await services.collectionService.update(collectionUuid, { manifestText: `${collectionWithDeletedFiles.manifestText}${currentCollection.manifestText ? currentCollection.manifestText : currentCollection.unsignedManifestText}` }); - await services.collectionService.deleteFiles(collectionWithDeletedFiles.uuid, diffPathToRemove); + const diffPathToRemove = difference(paths, pathsToRemove); + await services.collectionService.deleteFiles(selectedCollection.uuid, pathsToRemove.map(path => path.replace(currentCollection.uuid, collectionUuid))); + const collectionWithDeletedFiles = await services.collectionService.get(collectionUuid, undefined, ['uuid', 'manifestText']); + await services.collectionService.update(collectionUuid, { manifestText: `${collectionWithDeletedFiles.manifestText}${(currentCollection.manifestText ? currentCollection.manifestText : currentCollection.unsignedManifestText) || ''}` }); + await services.collectionService.deleteFiles(collectionWithDeletedFiles.uuid, diffPathToRemove.map(path => path.replace(currentCollection.uuid, collectionUuid))); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_PARTIAL_COPY_TO_SELECTED_COLLECTION })); dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Files has been copied to selected collection.',