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.
50 lines
1.2 KiB
50 lines
1.2 KiB
import type { FormInstance } from 'antd';
|
|
import { Button, Form, Input, Space } from 'antd';
|
|
import React from 'react';
|
|
|
|
const SubmitButton = ({ form }: { form: FormInstance }) => {
|
|
const [submittable, setSubmittable] = React.useState(false);
|
|
|
|
// Watch all values
|
|
const values = Form.useWatch([], form);
|
|
|
|
React.useEffect(() => {
|
|
form.validateFields({ validateOnly: true }).then(
|
|
() => {
|
|
setSubmittable(true);
|
|
},
|
|
() => {
|
|
setSubmittable(false);
|
|
},
|
|
);
|
|
}, [values]);
|
|
|
|
return (
|
|
<Button type="primary" htmlType="submit" disabled={!submittable}>
|
|
Submit
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
const App = () => {
|
|
const [form] = Form.useForm();
|
|
|
|
return (
|
|
<Form form={form} name="validateOnly" layout="vertical" autoComplete="off">
|
|
<Form.Item name="name" label="Name" rules={[{ required: true }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item name="age" label="Age" rules={[{ required: true }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item>
|
|
<Space>
|
|
<SubmitButton form={form} />
|
|
<Button htmlType="reset">Reset</Button>
|
|
</Space>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|