X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ea54fb82c3a59ca8a959643f8bec4776635433e0..1bbdd9c70d0099e0bf46b3c1ac55e423e3406314:/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 058d2dd4..e5a6676c 100644 --- a/src/store/collections/collection-copy-actions.ts +++ b/src/store/collections/collection-copy-actions.ts @@ -11,12 +11,14 @@ 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'; export const COLLECTION_COPY_FORM_NAME = 'collectionCopyFormName'; export const openCollectionCopyDialog = (resource: { name: string, uuid: string }) => (dispatch: Dispatch) => { dispatch(resetPickerProjectTree()); + dispatch(initProjectsTreePicker(COLLECTION_COPY_FORM_NAME)); const initialData: CopyFormDialogData = { 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: {} })); @@ -30,10 +32,10 @@ export const copyCollection = (resource: CopyFormDialogData) => 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 }); + const newCollection = await services.collectionService.create({ ...collection, ownerUuid: resource.ownerUuid, name: resource.name }); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_COPY_FORM_NAME })); dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_COPY_FORM_NAME)); - return collection; + return newCollection; } catch (e) { const error = getCommonResourceServiceError(e); if (error === CommonResourceServiceError.UNIQUE_VIOLATION) {