mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
4cdf37bedb
* init form * first demo * add normal login * add style * webit * support nest errors * beauti form errors * use onReset * modal demo * add list demo * match key of errors logic * date demo * customize component * moving style * add status style * without form create * add demos * add inline style * clean up legacy * fix drawer demo * mention * fix edit-row * editable table cell * update mentions demo * fix some test case * fix upload test * fix lint * part of doc * fix ts * doc update * rm react 15 * rm config * enhance test coverage * clean up * fix FormItem context pass logic * add more demo * en to build * update demo * update demo & snapshot * more doc * update list doc * update doc * update demo to display condition render * update snapshot * add provider doc * support configProvider * more doc about validateMessages * more description * more and more doc * fix typo * en doc * Form.List doc * m v3 -> v4 * add skip
119 lines
3.1 KiB
Markdown
119 lines
3.1 KiB
Markdown
---
|
|
order: 6
|
|
title:
|
|
zh-CN: 自定义表单控件
|
|
en-US: Customized Form Controls
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
自定义或第三方的表单控件,也可以与 Form 组件一起使用。只要该组件遵循以下的约定:
|
|
|
|
> - 提供受控属性 `value` 或其它与 [`valuePropName`](http://ant.design/components/form/#getFieldDecorator-参数) 的值同名的属性。
|
|
> - 提供 `onChange` 事件或 [`trigger`](http://ant.design/components/form/#getFieldDecorator-参数) 的值同名的事件。
|
|
|
|
## en-US
|
|
|
|
Customized or third-party form controls can be used in Form, too. Controls must follow these conventions:
|
|
|
|
> - It has a controlled property `value` or other name which is equal to the value of [`valuePropName`](http://ant.design/components/form/?locale=en-US#getFieldDecorator's-parameters).
|
|
> - It has event `onChange` or an event which name is equal to the value of [`trigger`](http://ant.design/components/form/?locale=en-US#getFieldDecorator's-parameters).
|
|
|
|
```tsx
|
|
import { Form, Input, Select, Button } from 'antd';
|
|
|
|
const { Option } = Select;
|
|
|
|
interface PriceValue {
|
|
number?: number;
|
|
currency?: 'rmb' | 'dollar';
|
|
}
|
|
|
|
interface PriceInputProps {
|
|
value?: PriceValue;
|
|
onChange?: (value: PriceValue) => void;
|
|
}
|
|
|
|
const PriceInput: React.FC<PriceInputProps> = ({ value = {}, onChange }) => {
|
|
const [number, setNumber] = React.useState(0);
|
|
const [currency, setCurrency] = React.useState('rmb');
|
|
|
|
const triggerChange = changedValue => {
|
|
if (onChange) {
|
|
onChange({ number, currency, ...value, ...changedValue });
|
|
}
|
|
};
|
|
|
|
const onNumberChange = e => {
|
|
const newNumber = parseInt(e.target.value || 0, 10);
|
|
if (Number.isNaN(number)) {
|
|
return;
|
|
}
|
|
if (!('number' in value)) {
|
|
setNumber(newNumber);
|
|
}
|
|
triggerChange({ number: newNumber });
|
|
};
|
|
|
|
const onCurrencyChange = newCurrency => {
|
|
if (!('currency' in value)) {
|
|
setCurrency(newCurrency);
|
|
}
|
|
triggerChange({ currency: newCurrency });
|
|
};
|
|
|
|
return (
|
|
<span>
|
|
<Input
|
|
type="text"
|
|
value={value.number || number}
|
|
onChange={onNumberChange}
|
|
style={{ width: 100, marginRight: 8 }}
|
|
/>
|
|
<Select value={value.currency || currency} style={{ width: 80 }} onChange={onCurrencyChange}>
|
|
<Option value="rmb">RMB</Option>
|
|
<Option value="dollar">Dollar</Option>
|
|
</Select>
|
|
</span>
|
|
);
|
|
};
|
|
|
|
const Demo = () => {
|
|
const onFinish = values => {
|
|
console.log('Received values of form: ', values);
|
|
};
|
|
|
|
const checkPrice = (rule, value) => {
|
|
if (value.number > 0) {
|
|
return Promise.resolve();
|
|
}
|
|
return Promise.reject('Price must greater than zero!');
|
|
};
|
|
|
|
return (
|
|
<Form
|
|
name="customized_form_controls"
|
|
layout="inline"
|
|
onFinish={onFinish}
|
|
initialValues={{
|
|
price: {
|
|
number: 0,
|
|
currency: 'rmb',
|
|
},
|
|
}}
|
|
>
|
|
<Form.Item name="price" label="Price" rules={[{ validator: checkPrice }]}>
|
|
<PriceInput />
|
|
</Form.Item>
|
|
<Form.Item>
|
|
<Button type="primary" htmlType="submit">
|
|
Submit
|
|
</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<Demo />, mountNode);
|
|
```
|