X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3429b49bb9ff70db11f3239c7fbbc03ac7c2e460..c6be788f754adcfd8f6cc2c218540c8712c06153:/src/views-components/dialog-create/dialog-project-create.tsx diff --git a/src/views-components/dialog-create/dialog-project-create.tsx b/src/views-components/dialog-create/dialog-project-create.tsx index 4cdf7468..592efc1a 100644 --- a/src/views-components/dialog-create/dialog-project-create.tsx +++ b/src/views-components/dialog-create/dialog-project-create.tsx @@ -3,133 +3,126 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; +import { reduxForm, Field } from 'redux-form'; +import { compose } from 'redux'; import TextField from '@material-ui/core/TextField'; import Dialog from '@material-ui/core/Dialog'; import DialogActions from '@material-ui/core/DialogActions'; import DialogContent from '@material-ui/core/DialogContent'; import DialogTitle from '@material-ui/core/DialogTitle'; -import { Button, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; +import { Button, StyleRulesCallback, WithStyles, withStyles, CircularProgress } from '@material-ui/core'; -import Validator from '../../utils/dialog-validator'; +import { PROJECT_NAME_VALIDATION, PROJECT_DESCRIPTION_VALIDATION } from '../../validators/create-project/create-project-validator'; -interface ProjectCreateProps { - open: boolean; - handleClose: () => void; -} +type CssRules = "button" | "lastButton" | "formContainer" | "textField" | "dialog" | "dialogTitle" | "createProgress" | "dialogActions"; -interface DialogState { - name: string; - description: string; - isNameValid: boolean; - isDescriptionValid: boolean; +const styles: StyleRulesCallback = theme => ({ + button: { + marginLeft: theme.spacing.unit + }, + lastButton: { + marginLeft: theme.spacing.unit, + marginRight: "20px", + }, + formContainer: { + display: "flex", + flexDirection: "column", + marginTop: "20px", + }, + dialogTitle: { + paddingBottom: "0" + }, + textField: { + marginTop: "32px", + }, + dialog: { + minWidth: "600px", + minHeight: "320px" + }, + createProgress: { + position: "absolute", + minWidth: "20px", + right: "95px" + }, + dialogActions: { + marginBottom: "24px" + } +}); +interface DialogProjectProps { + open: boolean; + handleClose: () => void; + onSubmit: (data: { name: string, description: string }) => void; + handleSubmit: any; + submitting: boolean; } -class DialogProjectCreate extends React.Component> { - state: DialogState = { - name: '', - description: '', - isNameValid: true, - isDescriptionValid: true - }; - - render() { - const { name, description } = this.state; - const { classes, open, handleClose } = this.props; - - return ( - -
- Create a project - - this.isNameValid(e)} - isRequired={true} - render={hasError => - this.handleProjectName(e)} - label="Project name" - error={hasError} - fullWidth />} /> - this.isDescriptionValid(e)} - isRequired={false} - render={hasError => - this.handleDescriptionValue(e)} - label="Description - optional" - error={hasError} - fullWidth />} /> - - - - - -
-
- ); - } - - handleProjectName(e: any) { - this.setState({ - name: e.target.value, - }); - } - - handleDescriptionValue(e: any) { - this.setState({ - description: e.target.value, - }); - } - - isNameValid(value: boolean | string) { - this.setState({ - isNameValid: value, - }); - } - - isDescriptionValid(value: boolean | string) { - this.setState({ - isDescriptionValid: value, - }); - } +interface TextFieldProps { + label: string; + floatinglabeltext: string; + className?: string; + input?: string; + meta?: any; } -type CssRules = "button" | "lastButton" | "dialogContent" | "textField" | "dialog" | "dialogTitle" | "dialogActions"; +export const DialogProjectCreate = compose( + reduxForm({ form: 'projectCreateDialog' }), + withStyles(styles))( + class DialogProjectCreate extends React.Component> { + render() { + const { classes, open, handleClose, handleSubmit, onSubmit, submitting } = this.props; -const styles: StyleRulesCallback = theme => ({ - button: { - marginLeft: theme.spacing.unit - }, - lastButton: { - marginLeft: theme.spacing.unit, - marginRight: "20px", - }, - dialogContent: { - marginTop: "20px", - }, - dialogTitle: { - paddingBottom: "0" - }, - dialogActions: { - marginBottom: "5px" - }, - textField: { - marginTop: "32px", - }, - dialog: { - minWidth: "600px", - minHeight: "320px" - } -}); + return ( + +
+
onSubmit(data))}> + Create a + project + + + + + + + + {submitting && } + +
+
+
+ ); + } -export default withStyles(styles)(DialogProjectCreate); \ No newline at end of file + renderTextField = ({ input, label, meta: { touched, error }, ...custom }: TextFieldProps) => ( + + ) + } +);