从 v3 到 v4

本文档将帮助你从 antd 3.x 版本升级到 antd 4.x 版本,如果你是 2.x 或者更老的版本,请先参考之前的升级文档升级到 3.x。

升级准备

  • 请先升级到 3.x 的最新版本,按照控制台 warning 信息移除/修改相关的 API。

  • 升级项目 React 16.12.0 以上。

4.0 有哪些不兼容的变化

设计规范调整

  • 行高从 1.5(21px) 调整为 1.5715(22px)。

  • 基础圆角调整,由4px 改为 2px

  • Selected 颜色和 Hovered 颜色进行了交换。

  • 全局阴影优化,调整为三层阴影区分控件层次关系。

  • 气泡确认框中图标的使用改变,由问号改为感叹号。

  • 部分组件选中颜色统一改为 @blue-1: #E6F7FF,对应 hover 颜色改为 @gray-2: #FAFAFA

  • 报错色色值调整,由 @red-5: #F5222D 改为 @red-5: #FF4D4F

  • 分割线颜色明度降低,由 #E8E8E8 改为 #F0F0F0

  • DatePicker 交互重做,面板和输入框分离,范围选择现可单独选择开始和结束时间。

  • Table 默认背景颜色从透明修改为白色。

  • Tabs 火柴棍样式缩短为和文字等长。

兼容性调整

  • IE 最低支持版本为 IE 11。

  • React 最低支持版本为 React 16.9,部分组件开始使用 hooks 进行重构。

移除废弃的 API

  • 移除了 LocaleProvider,请使用 ConfigProvider 替代。

  • 移除了 Mention,请使用 Mentions 替代。

  • 移除了 Alert 的 iconType 属性,请使用 icon 替代。

  • 移除了 Modal.xxx 的 iconType 属性,请使用 icon 替代。

  • 移除了 Form.create 方法,form 现可由 Form.useForm 获取。

  • 移除了 Form.Item 的 id 属性,请使用 htmlFor 替代。

  • 移除了 Typography 的 setContentRef 属性,请使用 ref 替代。

  • 移除了 TimePicker 的 allowEmpty 属性,请使用 allowClear 替代。

  • 移除了 Tag 的 afterClose 属性,请使用 onClose 替代。

  • 移除了 Card 的 noHovering 属性,请使用 hoverable 替代。

  • 移除了 Carousel 的 vertical 属性,请使用 dotPosition 替代。

  • 移除了 Drawer 的 wrapClassName 属性,请使用 className 替代。

  • 移除了 TextArea 的 autosize 属性,请使用 autoSize 替代。

  • 移除了 Affix 的 offset 属性,请使用 offsetTop 替代。

  • 移除了 Transfer 的 onSearchChange 属性,请使用 onSearch 替代。

  • 移除了 Transfer 的 body 属性,请使用 children 替代。

  • 移除了 Transfer 的 lazy 属性,它并没有起到真正的优化效果。

  • 移除了 Select 的 combobox 模式,请使用 AutoComplete 替代。

图标升级

[email protected] 中,我们引入了 svg 图标(为何使用 svg 图标?)。使用了字符串命名的图标 API 无法做到按需加载,因而全量引入了 svg 图标文件,这大大增加了打包产物的尺寸。在 4.0 中,我们调整了图标的使用 API 从而支持 tree shaking,减少 antd 默认包体积约 150 KB(Gzipped)。

旧版 Icon 使用方式将被废弃:

  1. import { Icon, Button } from 'antd';
  2. const Demo = () => (
  3. <div>
  4. <Icon type="smile" />
  5. <Button icon="smile" />
  6. </div>
  7. );

4.0 中会采用按需引入的方式:

  1. import { Button } from 'antd';
  2. // tree-shaking supported
  3. - import { Icon } from 'antd';
  4. + import { SmileOutlined } from '@ant-design/icons';
  5. const Demo = () => (
  6. <div>
  7. - <Icon type="smile" />
  8. + <SmileOutlined />
  9. <Button icon={<SmileOutlined />} />
  10. </div>
  11. );
  12. // or directly import
  13. import SmileOutlined from '@ant-design/icons/SmileOutlined';

你将仍然可以通过兼容包继续使用:

  1. import { Button } from 'antd';
  2. import { Icon } from '@ant-design/compatible';
  3. const Demo = () => (
  4. <div>
  5. <Icon type="smile" />
  6. <Button icon="smile" />
  7. </div>
  8. );

组件重构

  • Form 重写

    • 不再需要 Form.create

    • 嵌套字段支持从 'xxx.yyy' 改成 ['xxx', 'yyy']

    • 迁移文档请查看此处

  • DatePicker 重写

    • 提供 picker 属性用于选择器切换。

    • 范围选择现在可以单独选择开始和结束时间。

    • onPanelChange 在面板值变化时也会触发。

    • 自定义单元格样式的类名从 ant-calendar-date 改为 ant-picker-cell-inner

  • Tree、Select、TreeSelect、AutoComplete 重新写

    • 使用虚拟滚动。

    • onBlur 时不再修改选中值。

    • dropdownMatchSelectWidth 不再自动适应内容宽度,请用数字设置下拉宽度。

    • AutoComplete 不再支持 optionLabelProp,请直接设置 Option value 属性。

  • Grid 组件使用 flex 布局。

  • Button 的 danger 现在作为一个属性而不是按钮类型。

  • Input、Select 的 valueundefined 时改为非受控状态。

  • Table 重写

    • 在没有 columns 时仍然会保留一列。

    • 嵌套 dataIndex 支持从 'xxx.yyy' 改成 ['xxx', 'yyy']

  1. <Table
  2. columns={[
  3. {
  4. title: 'Age',
  5. - dataIndex: 'user.age',
  6. + dataIndex: ['user', 'age'],
  7. },
  8. ]}
  9. />

开始升级

你可以手动对照上面的列表逐条检查代码进行修改,另外,我们也提供了一个 codemod cli 工具 @ant-design/codemod-v4 以帮助你快速升级到 v4 版本。

在运行 codemod cli 前,请先提交你的本地代码修改。

  1. # 通过 npx 直接运行
  2. npx -p @ant-design/codemod-v4 antd4-codemod src
  3. # 或者全局安装
  4. # 使用 npm
  5. npm i -g @ant-design/codemod-v4
  6. # 或者使用 yarn
  7. yarn global add @ant-design/codemod-v4
  8. # 运行
  9. antd4-codemod src

codemod running

对于无法自动修改的部分,codemod 会在命令行进行提示,建议按提示手动修改。修改后可以反复运行上述命令进行检查。

contains an invalid icon

注意 codemod 不能涵盖所有场景,建议还是要按不兼容的变化逐条排查。

迁移工具修改详情

@ant-design/codemod-v4 会帮你迁移到 antd v4, 废弃的组件则通过 @ant-design/compatible 保持运行, 一般来说你无需手动迁移。下方内容详细介绍了整体的迁移和变化,你也可以参照变动手动修改。

将已废弃的 Form 和 Mention 组件通过 @ant-design/compatible 包引入

  1. - import { Form, Input, Button, Mention } from 'antd';
  2. + import { Form, Mention } from '@ant-design/compatible';
  3. + import '@ant-design/compatible/assets/index.css';
  4. + import { Input, Button } from 'antd';
  5. ReactDOM.render( (
  6. <div>
  7. <Form>
  8. {getFieldDecorator('username')(<Input />)}
  9. <Button>Submit</Button>
  10. </Form>
  11. <Mention
  12. style={{ width: '100%' }}
  13. onChange={onChange}
  14. defaultValue={toContentState('@afc163')}
  15. defaultSuggestions={['afc163', 'benjycui']}
  16. onSelect={onSelect}
  17. />
  18. </div>
  19. );

注意:@ant-design/compatible 引入的老版本 Form 组件,样式类名会从 .ant-form 变成 .ant-legacy-form,如果你对其进行了样式覆盖,也需要相应修改。

用新的 @ant-design/icons 替换字符串类型的 icon 属性值

  1. import { Avatar, Button, Result } from 'antd';
  2. + import { QuestionOutlined, UserOutlined } from '@ant-design/icons';
  3. ReactDOM.render(
  4. <div>
  5. - <Button type="primary" shape="circle" icon="search" />
  6. + <Button type="primary" shape="circle" icon={SearchOutlined} />
  7. - <Avatar shape="square" icon="user" />
  8. + <Avatar shape="square" icon={UserOutlined} />
  9. <Result
  10. - icon="question"
  11. + icon={<QuestionOutlined />}
  12. title="Great, we have done all the operations!"
  13. extra={<Button type="primary">Next</Button>}
  14. />
  15. </div>,
  16. mountNode,
  17. );

将 v3 Icon 组件转换成 @ant-design/icons 中引入

  1. - import { Icon, Input } from 'antd';
  2. + import { Input } from 'antd';
  3. + import Icon, { CodeFilled, SmileOutlined, SmileTwoTone } from '@ant-design/icons';
  4. const HeartSvg = () => (
  5. <svg width="1em" height="1em" fill="currentColor" viewBox="0 0 1024 1024">
  6. <path d="M923 plapla..." />
  7. </svg>
  8. );
  9. const HeartIcon = props => <Icon component={HeartSvg} {...props} />;
  10. ReactDOM.render(
  11. <div>
  12. - <Icon type="code" theme="filled" />
  13. + <CodeFilled />
  14. - <Icon type="smile" theme="twoTone" twoToneColor="#eb2f96" />
  15. + <SmileTwoTone twoToneColor="#eb2f96" />
  16. - <Icon type="code" theme={props.fill ? 'filled' : 'outlined'} />
  17. + <LegacyIcon type="code" theme={props.fill ? 'filled' : 'outlined'} />
  18. <HeartIcon />
  19. <Icon viewBox="0 0 24 24">
  20. <title>Cool Home</title>
  21. <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
  22. </Icon>
  23. <Input suffix={<SmileOutlined />} />
  24. </div>,
  25. mountNode,
  26. );

将 v3 LocaleProvider 组件转换成 v4 ConfigProvider 组件

  1. - import { LocaleProvider } from 'antd';
  2. + import { ConfigProvider } from 'antd';
  3. ReactDOM.render(
  4. - <LocaleProvider {...yourConfig}>
  5. + <ConfigProvider {...yourConfig}>
  6. <Main />
  7. - </LocaleProvider>
  8. + </ConfigProvider>
  9. mountNode,
  10. );

将 Modal.method() 中字符串 icon 属性的调用转换成从 @ant-design/icons 中引入

  1. import { Modal } from 'antd';
  2. + import { AntDesignOutlined } from '@ant-design/icons';
  3. Modal.confirm({
  4. - icon: 'ant-design',
  5. + icon: <AntDesignOutlined />,
  6. title: 'Do you Want to delete these items?',
  7. content: 'Some descriptions',
  8. onOk() {
  9. console.log('OK');
  10. },
  11. onCancel() {
  12. console.log('Cancel');
  13. },
  14. });

遇到问题

v4 做了非常多的细节改进和重构,我们尽可能收集了已知的所有不兼容变化和相关影响,但是有可能还是有一些场景我们没有考虑到。如果你在升级过程中遇到了问题,请到 GitHub issuescodemod Issues 进行反馈。我们会尽快响应和相应改进这篇文档。