Ant Plus 5, Ant Design Form 简化版,让表单更简单

2022-12-06 18:04:13 +08:00
 nanxiaobei

Ant Design Form 简化版,以最简单的方式来搭建表单。

现 Ant Plus 5 发布,重新设计并使用 TypeScript 重写。

GitHub

https://github.com/nanxiaobei/ant-plus

特点

安装

pnpm add antx
# or
yarn add antx
# or
npm i antx

使用

import { Button, Form, Input, Select, WrapperCol } from 'antx';

const App = () => {
  return (
    <Form labelCol={{ span: 8 }} wrapperCol={{ span: 16 }}>
      <Input label="Name" name="name" rules={['required', 'max=10']} />
      <Select
        label="Gender"
        name="gender"
        rules={['required']}
        options={[
          { value: 1, label: 'Male' },
          { value: 2, label: 'Female' },
        ]}
      />
      <InputNumber
        label="Age"
        name="age"
        rules={['required', 'number', 'min=0']}
      />
      <WrapperCol>
        <Button type="primary" htmlType="submit">
          Submit
        </Button>
      </WrapperCol>
    </Form>
  );
};

export default App;

介绍

antx 提供一套 antd 增强表单组件的集合,增强表单组件的特点:

1. 不写 <Form.Item>
直接混写 Form.Item props 与原表单组件 props (完整 TypeScript 提示),显著简化代码。

2. 简化 rules 写法 (仅增强,原 rules 写法同样支持)
提供 string 短语形式 rules ,例如 rules={['required', 'max=10'']}rules={[{ required: true }, { max: 10 }]}

3. 未新增任何其它 props
所有 props 均为 antd 原有 props ,未新增任何其它 props 及 API ,减少心智负担

此外 antx 还提供了 3 个原始组件(FormButtonItem),2 个自定义组件(WrapperColWatch),以及一个工具函数 create

API

1. 增强表单组件

一级表单组件:

二级表单组件,antd 中使用方式为 AAA.BBBantx 中可直接引入 BBB

2. 基础组件

FormButtonItem 均为 antd 原始组件,为方便使用而提供。WatchWrapperCol 为自定义组件。

// Watch 使用示例
import { Watch } from 'antx';

<Form>
  <Input label="歌曲" name="song" />
  <Watch name="song">
    {(song) => {
      return <div>歌曲:{song}</div>;
    }}
  </Watch>
</Form>;
// WrapperCol 使用示例
import { WrapperCol } from 'antx';

<Form>
  <Input label="歌曲" name="song" />
  <WrapperCol>这是一条与输入框对齐的提示</WrapperCol>
</Form>;

3. create 工具函数

import { create } from 'antx';

// 拓展 (TypeScript 提示支持)
const MyCustomInputPlus = create(MyCustomInput);

<Form>
  <MyCustomInputPlus label="歌曲" name="song" rules={['required']} />
</Form>;

4. 简化版 rules

// 简化版 rules 使用示例

<Form>
  <Input label="歌曲" name="song" rules={['required', 'min=0', 'max=50']} />
</Form>

对比

Ant Plus 与 Ant Design 表单代码对比:

试试

欢迎尝试 → https://github.com/nanxiaobei/ant-plus

1934 次点击
所在节点    React
1 条回复
yolio2003
2022-12-06 23:37:39 +08:00
666

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/900571

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX