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.
57 lines
1.5 KiB
57 lines
1.5 KiB
import React, { useState } from 'react';
|
|
import { Button, Form, Input, Radio } from 'antd';
|
|
|
|
type LayoutType = Parameters<typeof Form>[0]['layout'];
|
|
|
|
const App: React.FC = () => {
|
|
const [form] = Form.useForm();
|
|
const [formLayout, setFormLayout] = useState<LayoutType>('horizontal');
|
|
|
|
const onFormLayoutChange = ({ layout }: { layout: LayoutType }) => {
|
|
setFormLayout(layout);
|
|
};
|
|
|
|
const formItemLayout =
|
|
formLayout === 'horizontal'
|
|
? {
|
|
labelCol: { span: 4 },
|
|
wrapperCol: { span: 14 },
|
|
}
|
|
: null;
|
|
|
|
const buttonItemLayout =
|
|
formLayout === 'horizontal'
|
|
? {
|
|
wrapperCol: { span: 14, offset: 4 },
|
|
}
|
|
: null;
|
|
|
|
return (
|
|
<Form
|
|
{...formItemLayout}
|
|
layout={formLayout}
|
|
form={form}
|
|
initialValues={{ layout: formLayout }}
|
|
onValuesChange={onFormLayoutChange}
|
|
>
|
|
<Form.Item label="Form Layout" name="layout">
|
|
<Radio.Group value={formLayout}>
|
|
<Radio.Button value="horizontal">Horizontal</Radio.Button>
|
|
<Radio.Button value="vertical">Vertical</Radio.Button>
|
|
<Radio.Button value="inline">Inline</Radio.Button>
|
|
</Radio.Group>
|
|
</Form.Item>
|
|
<Form.Item label="Field A">
|
|
<Input placeholder="input placeholder" />
|
|
</Form.Item>
|
|
<Form.Item label="Field B">
|
|
<Input placeholder="input placeholder" />
|
|
</Form.Item>
|
|
<Form.Item {...buttonItemLayout}>
|
|
<Button type="primary">Submit</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|