mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
6129ea1216
* chore: form global-state demo supports dark mode * test: update snapshot
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Form, Input, Typography } from 'antd';
|
|
|
|
const { Paragraph } = Typography;
|
|
|
|
interface FieldData {
|
|
name: string | number | (string | number)[];
|
|
value?: any;
|
|
touched?: boolean;
|
|
validating?: boolean;
|
|
errors?: string[];
|
|
}
|
|
|
|
interface CustomizedFormProps {
|
|
onChange: (fields: FieldData[]) => void;
|
|
fields: FieldData[];
|
|
}
|
|
|
|
const CustomizedForm: React.FC<CustomizedFormProps> = ({ onChange, fields }) => (
|
|
<Form
|
|
name="global_state"
|
|
layout="inline"
|
|
fields={fields}
|
|
onFieldsChange={(_, allFields) => {
|
|
onChange(allFields);
|
|
}}
|
|
>
|
|
<Form.Item
|
|
name="username"
|
|
label="Username"
|
|
rules={[{ required: true, message: 'Username is required!' }]}
|
|
>
|
|
<Input />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
|
|
const App: React.FC = () => {
|
|
const [fields, setFields] = useState<FieldData[]>([{ name: ['username'], value: 'Ant Design' }]);
|
|
|
|
return (
|
|
<>
|
|
<CustomizedForm
|
|
fields={fields}
|
|
onChange={(newFields) => {
|
|
setFields(newFields);
|
|
}}
|
|
/>
|
|
<Paragraph style={{ maxWidth: 440, marginTop: 24 }}>
|
|
<pre style={{ border: 'none' }}>{JSON.stringify(fields, null, 2)}</pre>
|
|
</Paragraph>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|