import { Button, Form, Input } from 'antd'; import { Connect } from 'dob-react'; import * as React from 'react'; import { PureComponent } from '../../../utils/react-helper'; import * as S from '../menu.style'; import { Props, State } from './new-page.type'; const FormItem = Form.Item; const formItemLayout = { labelCol: { xs: { span: 24 }, sm: { span: 8 } }, wrapperCol: { xs: { span: 24 }, sm: { span: 16 } } }; const tailFormItemLayout = { wrapperCol: { xs: { span: 24, offset: 0 }, sm: { span: 16, offset: 8 } } }; function hasErrors(fieldsError: any) { return Object.keys(fieldsError).some((field: string) => fieldsError[field]); } @Connect class FormComponent extends PureComponent { public static defaultProps = new Props(); public state = new State(); public render() { return (
{this.props.form.getFieldDecorator('path', { initialValue: 'about', rules: [ { type: 'string', message: 'Path must be string!' }, { required: true, message: 'Path is required!' } ] })()}
); } private handleSubmit = async (e: any) => { e.preventDefault(); await this.props.ApplicationAction.addPage(this.props.form.getFieldsValue()); this.props.onSuccess(); } } export default Form.create()(FormComponent as any) as any;