You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
import React from 'react';
|
|
import { Button, Form, Input, InputNumber } from 'antd';
|
|
|
|
const layout = {
|
|
labelCol: { span: 8 },
|
|
wrapperCol: { span: 16 },
|
|
};
|
|
|
|
/* eslint-disable no-template-curly-in-string */
|
|
const validateMessages = {
|
|
required: '${label} is required!',
|
|
types: {
|
|
email: '${label} is not a valid email!',
|
|
number: '${label} is not a valid number!',
|
|
},
|
|
number: {
|
|
range: '${label} must be between ${min} and ${max}',
|
|
},
|
|
};
|
|
/* eslint-enable no-template-curly-in-string */
|
|
|
|
const App: React.FC = () => {
|
|
const onFinish = (values: any) => {
|
|
console.log(values);
|
|
};
|
|
|
|
return (
|
|
<Form {...layout} name="nest-messages" onFinish={onFinish} validateMessages={validateMessages}>
|
|
<Form.Item name={['user', 'name']} label="Name" rules={[{ required: true }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item name={['user', 'email']} label="Email" rules={[{ type: 'email' }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item name={['user', 'age']} label="Age" rules={[{ type: 'number', min: 0, max: 99 }]}>
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item name={['user', 'website']} label="Website">
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item name={['user', 'introduction']} label="Introduction">
|
|
<Input.TextArea />
|
|
</Form.Item>
|
|
<Form.Item wrapperCol={{ ...layout.wrapperCol, offset: 8 }}>
|
|
<Button type="primary" htmlType="submit">
|
|
Submit
|
|
</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|