X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9320734bb358e7148918da13e81ebba59ecf16e8..c952afae1af2fb31b68be04f70bd7ae6f9d52aba:/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 89deea6f..d85a304e 100644 --- a/src/views-components/dialog-create/dialog-project-create.tsx +++ b/src/views-components/dialog-create/dialog-project-create.tsx @@ -2,139 +2,81 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -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 React from 'react'; +import { InjectedFormProps } from 'redux-form'; +import { WithDialogProps } from 'store/dialog/with-dialog'; +import { ProjectCreateFormDialogData, PROJECT_CREATE_FORM_NAME } from 'store/projects/project-create-actions'; +import { FormDialog } from 'components/form-dialog/form-dialog'; +import { ProjectNameField, ProjectDescriptionField, UsersField } from 'views-components/form-fields/project-form-fields'; +import { CreateProjectPropertiesForm } from 'views-components/project-properties/create-project-properties-form'; +import { ResourceParentField } from '../form-fields/resource-form-fields'; +import { FormGroup, FormLabel, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; +import { resourcePropertiesList } from 'views-components/resource-properties/resource-properties-list'; +import { GroupClass } from 'models/group'; -import Validator from '../../utils/dialog-validator'; +type CssRules = 'propertiesForm' | 'description'; -interface ProjectCreateProps { - open: boolean; - handleClose: () => void; - onSubmit: (data: { name: string, description: string }) => void; -} - -interface DialogState { - name: string; - description: string; - isNameValid: boolean; - isDescriptionValid: boolean; -} - -class DialogProjectCreate extends React.Component> { - state: DialogState = { - name: '', - description: '', - isNameValid: false, - 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 />} /> - - - - - -
-
- ); - } - - handleSubmit = () => { - this.props.onSubmit({ - name: this.state.name, - description: this.state.description - }); - } +const styles: StyleRulesCallback = theme => ({ + propertiesForm: { + marginTop: theme.spacing.unit * 2, + marginBottom: theme.spacing.unit * 2, + }, + description: { + marginTop: theme.spacing.unit * 2, + marginBottom: theme.spacing.unit * 2, + }, +}); - handleProjectName(e: React.ChangeEvent) { - this.setState({ - name: e.target.value, - }); - } +type DialogProjectProps = WithDialogProps<{sourcePanel: GroupClass}> & InjectedFormProps; - handleDescriptionValue(e: React.ChangeEvent) { - this.setState({ - description: e.target.value, - }); - } +export const DialogProjectCreate = (props: DialogProjectProps) => { + let title = 'New Project'; + let fields = ProjectAddFields; + const sourcePanel = props.data.sourcePanel || ''; - isNameValid(value: boolean | string) { - this.setState({ - isNameValid: value, - }); - } + if (sourcePanel === GroupClass.ROLE) { + title = 'New Group'; + fields = GroupAddFields; + } - isDescriptionValid(value: boolean | string) { - this.setState({ - isDescriptionValid: value, - }); - } -} + return ; +}; -type CssRules = "button" | "lastButton" | "dialogContent" | "textField" | "dialog" | "dialogTitle"; +const CreateProjectPropertiesList = resourcePropertiesList(PROJECT_CREATE_FORM_NAME); -const styles: StyleRulesCallback = theme => ({ - button: { - marginLeft: theme.spacing.unit - }, - lastButton: { - marginLeft: theme.spacing.unit, - marginRight: "20px", - }, - dialogContent: { - marginTop: "20px", - }, - dialogTitle: { - paddingBottom: "0" - }, - textField: { - marginTop: "32px", - }, - dialog: { - minWidth: "600px", - minHeight: "320px" - } -}); +const ProjectAddFields = withStyles(styles)( + ({ classes }: WithStyles) => + + +
+ +
+
+ Properties + + + + +
+
); -export default withStyles(styles)(DialogProjectCreate); \ No newline at end of file +const GroupAddFields = withStyles(styles)( + ({ classes }: WithStyles) => + + +
+ +
+
+ Properties + + + + +
+
);