ant-design/components/form/FormList.tsx
叶枫 fd98901a9c feat: Form list add move typescript (#20406)
* Update Form.tsx

* Update Form.tsx

* feat: add-typescript
2019-12-24 20:36:27 +08:00

38 lines
839 B
TypeScript

import * as React from 'react';
import { List } from 'rc-field-form';
import warning from '../_util/warning';
interface FieldData {
name: number;
key: number;
fieldKey: number;
}
interface Operation {
add: () => void;
remove: (index: number) => void;
move: (from: number, to: number) => void;
}
interface FormListProps {
name: string | number | (string | number)[];
children: (fields: FieldData[], operation: Operation) => React.ReactNode;
}
const FormList: React.FC<FormListProps> = ({ children, ...props }) => {
warning(!!props.name, 'Form.List', 'Miss `name` prop.');
return (
<List {...props}>
{(fields, operation) => {
return children(
fields.map(field => ({ ...field, fieldKey: field.key })),
operation,
);
}}
</List>
);
};
export default FormList;