// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { reduxForm, Field } from 'redux-form'; import { compose } from 'redux'; import { TextField } from '~/components/text-field/text-field'; import { Dialog, DialogActions, DialogContent, DialogTitle } from '@material-ui/core/'; import { Button, StyleRulesCallback, WithStyles, withStyles, CircularProgress } from '@material-ui/core'; import { COLLECTION_NAME_VALIDATION, COLLECTION_DESCRIPTION_VALIDATION } from '~/validators/create-collection/create-collection-validator'; import { FileUpload } from "~/components/file-upload/file-upload"; import { connect, DispatchProp } from "react-redux"; import { RootState } from "~/store/store"; import { collectionUploaderActions, UploadFile } from "~/store/collections/uploader/collection-uploader-actions"; type CssRules = "button" | "lastButton" | "formContainer" | "textField" | "createProgress" | "dialogActions"; const styles: StyleRulesCallback = theme => ({ button: { marginLeft: theme.spacing.unit }, lastButton: { marginLeft: theme.spacing.unit, marginRight: "20px", }, formContainer: { display: "flex", flexDirection: "column", }, textField: { marginBottom: theme.spacing.unit * 3 }, createProgress: { position: "absolute", minWidth: "20px", right: "110px" }, dialogActions: { marginBottom: theme.spacing.unit * 3 } }); interface DialogCollectionCreateProps { open: boolean; handleClose: () => void; onSubmit: (data: { name: string, description: string }, files: UploadFile[]) => void; handleSubmit: any; submitting: boolean; invalid: boolean; pristine: boolean; files: UploadFile[]; } export const COLLECTION_CREATE_DIALOG = "collectionCreateDialog"; export const DialogCollectionCreate = compose( connect((state: RootState) => ({ files: state.collections.uploader })), reduxForm({ form: COLLECTION_CREATE_DIALOG }), withStyles(styles))( class DialogCollectionCreate extends React.Component> { render() { const { classes, open, handleClose, handleSubmit, onSubmit, submitting, invalid, pristine, files } = this.props; const busy = submitting || files.reduce( (prev, curr) => prev + (curr.loaded > 0 && curr.loaded < curr.total ? 1 : 0), 0 ) > 0; return (
onSubmit(data, files))}> Create a collection this.props.dispatch(collectionUploaderActions.SET_UPLOAD_FILES(files))} /> {busy && }
); } } );