X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/dd30e03643f9b093c1fe05b05481f75906faa0e7..3d8c3da5fdc9488ac37d09211af8312e77ebebcb:/src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts diff --git a/src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts b/src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts index 97abfef0..d509218e 100644 --- a/src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts +++ b/src/store/collection-panel/collection-panel-files/collection-panel-files-actions.ts @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { default as unionize, ofType, UnionOf } from "unionize"; +import { unionize, ofType, UnionOf } from "~/common/unionize"; import { Dispatch } from "redux"; import { CollectionFilesTree, CollectionFileType } from "~/models/collection-file"; import { ServiceRepository } from "~/services/services"; @@ -22,7 +22,7 @@ export const collectionPanelFilesAction = unionize({ TOGGLE_COLLECTION_FILE_SELECTION: ofType<{ id: string }>(), SELECT_ALL_COLLECTION_FILES: ofType<{}>(), UNSELECT_ALL_COLLECTION_FILES: ofType<{}>(), -}, { tag: 'type', value: 'payload' }); +}); export type CollectionPanelFilesAction = UnionOf; @@ -86,63 +86,7 @@ export const openMultipleFilesRemoveDialog = () => } }); -export const COLLECTION_PARTIAL_COPY = 'COLLECTION_PARTIAL_COPY'; -export interface CollectionPartialCopyFormData { - name: string; - description: string; - projectUuid: string; -} - -export const openCollectionPartialCopyDialog = () => - (dispatch: Dispatch, getState: () => RootState) => { - const currentCollection = getState().collectionPanel.item; - if (currentCollection) { - const initialData = { - name: currentCollection.name, - description: currentCollection.description, - projectUuid: '' - }; - dispatch(initialize(COLLECTION_PARTIAL_COPY, initialData)); - dispatch(resetPickerProjectTree()); - dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_PARTIAL_COPY, data: {} })); - } - }; - -export const doCollectionPartialCopy = ({ name, description, projectUuid }: CollectionPartialCopyFormData) => - async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - dispatch(startSubmit(COLLECTION_PARTIAL_COPY)); - const state = getState(); - const currentCollection = state.collectionPanel.item; - if (currentCollection) { - try { - const collection = await services.collectionService.get(currentCollection.uuid); - const collectionCopy = { - ...collection, - name, - description, - ownerUuid: projectUuid, - uuid: undefined - }; - const newCollection = await services.collectionService.create(collectionCopy); - const paths = filterCollectionFilesBySelection(state.collectionPanelFiles, false).map(file => file.id); - await services.collectionService.deleteFiles(newCollection.uuid, paths); - dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_PARTIAL_COPY })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'New collection created.', hideDuration: 2000 })); - } catch (e) { - const error = getCommonResourceServiceError(e); - if (error === CommonResourceServiceError.UNIQUE_VIOLATION) { - dispatch(stopSubmit(COLLECTION_PARTIAL_COPY, { name: 'Collection with this name already exists.' })); - } else if (error === CommonResourceServiceError.UNKNOWN) { - dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_PARTIAL_COPY })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Could not create a copy of collection', hideDuration: 2000 })); - } else { - dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_PARTIAL_COPY })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been copied but may contain incorrect files.', hideDuration: 2000 })); - } - } - } - }; export const RENAME_FILE_DIALOG = 'renameFileDialog'; export interface RenameFileDialogData {