1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { connect } from "react-redux";
6 import { Dispatch } from "redux";
7 import { SubmissionError } from "redux-form";
9 import { RootState } from "~/store/store";
10 import { DialogCollectionCreate } from "../dialog-create/dialog-collection-create";
11 import { collectionCreateActions, createCollection } from "~/store/collections/creator/collection-creator-action";
12 import { snackbarActions } from "~/store/snackbar/snackbar-actions";
13 import { UploadFile } from "~/store/collections/uploader/collection-uploader-actions";
14 import { projectPanelActions } from "~/store/project-panel/project-panel-action";
16 const mapStateToProps = (state: RootState) => ({
17 open: state.collections.creator.opened
20 const mapDispatchToProps = (dispatch: Dispatch) => ({
22 dispatch(collectionCreateActions.CLOSE_COLLECTION_CREATOR());
24 onSubmit: (data: { name: string, description: string }, files: UploadFile[]) => {
25 return dispatch<any>(addCollection(data, files.map(f => f.file)))
27 throw new SubmissionError({ name: e.errors.join("").includes("UniqueViolation") ? "Collection with this name already exists." : "" });
32 const addCollection = (data: { name: string, description: string }, files: File[]) =>
33 (dispatch: Dispatch) => {
34 return dispatch<any>(createCollection(data, files)).then(() => {
35 dispatch(snackbarActions.OPEN_SNACKBAR({
36 message: "Collection has been successfully created.",
39 dispatch(projectPanelActions.REQUEST_ITEMS());
43 export const CreateCollectionDialog = connect(mapStateToProps, mapDispatchToProps)(DialogCollectionCreate);