mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
f912fa0c30
* feat: form support clearOnDestroy * feat: demo * feat: demo
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Button, Form, Input, Modal, Radio } from 'antd';
|
|
|
|
interface Values {
|
|
title?: string;
|
|
description?: string;
|
|
modifier?: string;
|
|
}
|
|
|
|
const App: React.FC = () => {
|
|
const [form] = Form.useForm();
|
|
const [formValues, setFormValues] = useState<Values>();
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const onCreate = (values: Values) => {
|
|
console.log('Received values of form: ', values);
|
|
setFormValues(values);
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Button type="primary" onClick={() => setOpen(true)}>
|
|
New Collection
|
|
</Button>
|
|
<pre>{JSON.stringify(formValues, null, 2)}</pre>
|
|
<Modal
|
|
open={open}
|
|
title="Create a new collection"
|
|
okText="Create"
|
|
cancelText="Cancel"
|
|
okButtonProps={{ autoFocus: true, htmlType: 'submit' }}
|
|
onCancel={() => setOpen(false)}
|
|
destroyOnClose
|
|
modalRender={(dom) => (
|
|
<Form
|
|
layout="vertical"
|
|
form={form}
|
|
name="form_in_modal"
|
|
initialValues={{ modifier: 'public' }}
|
|
clearOnDestroy
|
|
onFinish={(values) => onCreate(values)}
|
|
>
|
|
{dom}
|
|
</Form>
|
|
)}
|
|
>
|
|
<Form.Item
|
|
name="title"
|
|
label="Title"
|
|
rules={[{ required: true, message: 'Please input the title of collection!' }]}
|
|
>
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item name="description" label="Description">
|
|
<Input type="textarea" />
|
|
</Form.Item>
|
|
<Form.Item name="modifier" className="collection-create-form_last-form-item">
|
|
<Radio.Group>
|
|
<Radio value="public">Public</Radio>
|
|
<Radio value="private">Private</Radio>
|
|
</Radio.Group>
|
|
</Form.Item>
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|