X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f1bbac648067f651d408d3cad39fd31d9a36354d..40952ad86a823635968c9abc5d6feacef316cffd:/src/store/collections/creator/collection-creator-action.ts diff --git a/src/store/collections/creator/collection-creator-action.ts b/src/store/collections/creator/collection-creator-action.ts index 3afe0e92a8..d0a66b4cc0 100644 --- a/src/store/collections/creator/collection-creator-action.ts +++ b/src/store/collections/creator/collection-creator-action.ts @@ -8,6 +8,8 @@ import { Dispatch } from "redux"; import { RootState } from "../../store"; import { CollectionResource } from '../../../models/collection'; import { ServiceRepository } from "../../../services/services"; +import { collectionUploaderActions } from "../uploader/collection-uploader-actions"; +import { reset } from "redux-form"; export const collectionCreateActions = unionize({ OPEN_COLLECTION_CREATOR: ofType<{ ownerUuid: string }>(), @@ -19,7 +21,7 @@ export const collectionCreateActions = unionize({ value: 'payload' }); -export const createCollection = (collection: Partial) => +export const createCollection = (collection: Partial, files: File[]) => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { const { ownerUuid } = getState().collections.creator; const collectiontData = { ownerUuid, ...collection }; @@ -27,7 +29,16 @@ export const createCollection = (collection: Partial) => return services.collectionService .create(collectiontData) .then(collection => { - dispatch(collectionCreateActions.CREATE_COLLECTION_SUCCESS(collection)); + dispatch(collectionUploaderActions.START_UPLOAD()); + services.collectionService.uploadFiles(collection.uuid, files, + (fileId, loaded, total, currentTime) => { + dispatch(collectionUploaderActions.SET_UPLOAD_PROGRESS({ fileId, loaded, total, currentTime })); + }) + .then(collection => { + dispatch(collectionCreateActions.CREATE_COLLECTION_SUCCESS(collection)); + dispatch(reset('collectionCreateDialog')); + dispatch(collectionUploaderActions.CLEAR_UPLOAD()); + }); return collection; }); };