X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/5627bf1a83323d2b0364cb069564998eb8c6ca7a..4f49d0cc42ae4b046b9702d2549097558ae5a928:/src/store/collections/collection-create-actions.ts diff --git a/src/store/collections/collection-create-actions.ts b/src/store/collections/collection-create-actions.ts index d8d292c0..254d6a8a 100644 --- a/src/store/collections/collection-create-actions.ts +++ b/src/store/collections/collection-create-actions.ts @@ -5,19 +5,16 @@ import { Dispatch } from "redux"; import { reset, startSubmit, stopSubmit, initialize } from 'redux-form'; import { RootState } from '~/store/store'; -import { uploadCollectionFiles } from '~/store/collections/uploader/collection-uploader-actions'; -import { projectPanelActions } from "~/store/project-panel/project-panel-action"; -import { snackbarActions } from "~/store/snackbar/snackbar-actions"; import { dialogActions } from "~/store/dialog/dialog-actions"; -import { CollectionResource } from '~/models/collection'; import { ServiceRepository } from '~/services/services'; -import { getCommonResourceServiceError, CommonResourceServiceError } from "~/common/api/common-resource-service"; +import { getCommonResourceServiceError, CommonResourceServiceError } from "~/services/common-service/common-resource-service"; +import { uploadCollectionFiles } from './collection-upload-actions'; +import { fileUploaderActions } from '~/store/file-uploader/file-uploader-actions'; export interface CollectionCreateFormDialogData { ownerUuid: string; name: string; description: string; - files: File[]; } export const COLLECTION_CREATE_FORM_NAME = "collectionCreateFormName"; @@ -25,31 +22,24 @@ export const COLLECTION_CREATE_FORM_NAME = "collectionCreateFormName"; export const openCollectionCreateDialog = (ownerUuid: string) => (dispatch: Dispatch) => { dispatch(initialize(COLLECTION_CREATE_FORM_NAME, { ownerUuid })); + dispatch(fileUploaderActions.CLEAR_UPLOAD()); dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_CREATE_FORM_NAME, data: { ownerUuid } })); }; -export const addCollection = (data: CollectionCreateFormDialogData) => - async (dispatch: Dispatch) => { - await dispatch(createCollection(data)); - dispatch(snackbarActions.OPEN_SNACKBAR({ - message: "Collection has been successfully created.", - hideDuration: 2000 - })); - }; - -export const createCollection = (collection: Partial) => +export const createCollection = (data: CollectionCreateFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(startSubmit(COLLECTION_CREATE_FORM_NAME)); try { - const newCollection = await services.collectionService.create(collection); + const newCollection = await services.collectionService.create(data); await dispatch(uploadCollectionFiles(newCollection.uuid)); - dispatch(projectPanelActions.REQUEST_ITEMS()); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_CREATE_FORM_NAME })); dispatch(reset(COLLECTION_CREATE_FORM_NAME)); + return newCollection; } catch (e) { const error = getCommonResourceServiceError(e); if (error === CommonResourceServiceError.UNIQUE_VIOLATION) { dispatch(stopSubmit(COLLECTION_CREATE_FORM_NAME, { name: 'Collection with the same name already exists.' })); } + return ; } - }; \ No newline at end of file + };