Skip to content

Commit ab0b227

Browse files
authored
docs(form): add customized form controls example (#3112)
1 parent eda4be3 commit ab0b227

File tree

4 files changed

+238
-2
lines changed

4 files changed

+238
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
import React from 'react';
2+
import { Form, Input, Button, MessagePlugin, Space, Select } from 'tdesign-react';
3+
import type { FormProps } from 'tdesign-react';
4+
5+
interface ICourseSelect {
6+
value?: {
7+
type?: string;
8+
name?: string;
9+
};
10+
onChange?: (v: { type?: string; name?: string }) => void;
11+
}
12+
13+
const { FormItem } = Form;
14+
15+
function CourseSelect(props: ICourseSelect) {
16+
const { value, onChange } = props;
17+
18+
return (
19+
<Space>
20+
<Select
21+
options={[
22+
{
23+
label: '数学',
24+
value: 'math',
25+
},
26+
{
27+
label: '英语',
28+
value: 'english',
29+
},
30+
]}
31+
value={value?.type}
32+
onChange={(v) => {
33+
onChange?.({
34+
...value,
35+
type: v as string,
36+
});
37+
}}
38+
placeholder="请选择课程类型"
39+
/>
40+
<Input
41+
value={value?.name}
42+
onChange={(v) => {
43+
onChange?.({
44+
...value,
45+
name: v,
46+
});
47+
}}
48+
placeholder="请输入课程名称"
49+
/>
50+
</Space>
51+
);
52+
}
53+
54+
export default function BaseForm() {
55+
const [form] = Form.useForm();
56+
57+
const onSubmit: FormProps['onSubmit'] = (e) => {
58+
console.log(e);
59+
if (e.validateResult === true) {
60+
MessagePlugin.info('提交成功');
61+
}
62+
};
63+
const setData = () => {
64+
form.setFieldsValue?.({
65+
course: {
66+
type: 'math',
67+
name: '线性代数',
68+
},
69+
});
70+
};
71+
72+
return (
73+
<Form form={form} onSubmit={onSubmit} colon labelWidth={100}>
74+
<FormItem label="课程" name="course">
75+
<CourseSelect />
76+
</FormItem>
77+
<FormItem style={{ marginLeft: 100 }}>
78+
<Button type="submit" theme="primary">
79+
提交
80+
</Button>
81+
<Button theme="primary" onClick={setData} style={{ marginLeft: 12 }}>
82+
设置信息
83+
</Button>
84+
</FormItem>
85+
</Form>
86+
);
87+
}

src/form/form.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@
22

33
### 复杂嵌套数据结构表单
44

5-
可给 `name` 传入数组整理成对象嵌套数据结构
5+
可给 `name` 传入数组整理成对象嵌套数据结构
66

77
{{ nested-data }}
88

99
### 动态增减嵌套表单
1010

11-
可使用 `Form.FormList` 组件创建动态表单
11+
可使用 `Form.FormList` 组件创建动态表单
1212

1313
{{ form-list }}
1414

15+
### 自定义表单控件
16+
17+
可以使用 `Form.FormItem` 包裹自定义组件并在组件中接受 `value``onChange` 的入参,实现自定义表单控件。
18+
19+
{{ customized-form-controls }}
20+
1521
## Hooks
1622

1723
### Form.useForm

0 commit comments

Comments
 (0)