• 在 TypeScript 中使用
    • 安装和初始化
    • 引入 antd
    • 高级配置
      • 使用 babel-plugin-import
      • 自定义主题
    • 其他方案

    在 TypeScript 中使用

    使用 create-react-app 一步步地创建一个 TypeScript 项目,并引入 antd。

    安装和初始化

    请确保电脑上已经安装了最新版的 yarn 或者 npm。

    使用 yarn 创建项目。

    1. $ yarn create react-app antd-demo-ts --typescript

    如果你使用的是 npm(接下来我们都会用 yarn 作为例子,如果你习惯用 npm 也没问题)。

    1. $ npx create-react-app antd-demo-ts --typescript

    然后我们进入项目并启动。

    1. $ cd antd-demo-ts
    2. $ yarn start

    此时浏览器会访问 http://localhost:3000/ ,看到 Welcome to React 的界面就算成功了。

    引入 antd

    1. $ yarn add antd

    修改 src/App.tsx,引入 antd 的按钮组件。

    1. import React, { Component } from 'react';
    2. import Button from 'antd/lib/button';
    3. import './App.css';
    4. class App extends Component {
    5. render() {
    6. return (
    7. <div className="App">
    8. <Button type="primary">Button</Button>
    9. </div>
    10. );
    11. }
    12. }
    13. export default App;

    修改 src/App.css 引入 antd 的样式。

    1. @import '~antd/dist/antd.css';
    2. .App {
    3. text-align: center;
    4. }
    5. ...

    重新启动 yarn start,现在你应该能看到页面上已经有了 antd 的蓝色按钮组件,接下来就可以继续选用其他组件开发应用了。其他开发流程你可以参考 create-react-app 的官方文档。

    高级配置

    我们现在已经把组件成功运行起来了,但是在实际开发过程中还有很多问题,例如上面的例子实际上加载了全部的 antd 组件的样式(对前端性能是个隐患)。

    此时我们需要对 create-react-app 的默认配置进行自定义,这里我们使用 react-app-rewired (一个对 create-react-app 进行自定义配置的社区解决方案)。

    引入 react-app-rewired 并修改 package.json 里的启动配置。由于新的 react-app-rewired@2.x 版本的关系,你还需要安装 customize-cra。

    1. $ yarn add react-app-rewired customize-cra
    1. /* package.json */
    2. "scripts": {
    3. - "start": "react-scripts start",
    4. + "start": "react-app-rewired start",
    5. - "build": "react-scripts build",
    6. + "build": "react-app-rewired build",
    7. - "test": "react-scripts test",
    8. + "test": "react-app-rewired test",
    9. }

    然后在项目根目录创建一个 config-overrides.js 用于修改默认配置。

    1. module.exports = function override(config, env) {
    2. // do stuff with the webpack config...
    3. return config;
    4. };

    使用 babel-plugin-import

    babel-plugin-import 是一个用于按需加载组件代码和样式的 babel 插件(原理),现在我们尝试安装它并修改 config-overrides.js 文件。

    1. $ yarn add babel-plugin-import
    1. + const { override, fixBabelImports } = require('customize-cra');
    2. - module.exports = function override(config, env) {
    3. - // do stuff with the webpack config...
    4. - return config;
    5. - };
    6. + module.exports = override(
    7. + fixBabelImports('import', {
    8. + libraryName: 'antd',
    9. + libraryDirectory: 'es',
    10. + style: 'css',
    11. + }),
    12. + );

    然后移除前面在 src/App.css 里全量添加的 @import '~antd/dist/antd.css'; 样式代码,并且按下面的格式引入模块。

    1. // src/App.tsx
    2. import React, { Component } from 'react';
    3. - import Button from 'antd/lib/button';
    4. + import { Button } from 'antd';
    5. import './App.css';
    6. class App extends Component {
    7. render() {
    8. return (
    9. <div className="App">
    10. <Button type="primary">Button</Button>
    11. </div>
    12. );
    13. }
    14. }
    15. export default App;

    最后重启 yarn start 访问页面,antd 组件的 js 和 css 代码都会按需加载,你在控制台也不会看到这样的警告信息。关于按需加载的原理和其他方式可以阅读这里。

    自定义主题

    按照 配置主题 的要求,自定义主题需要用到 less 变量覆盖功能。我们可以引入 customize-cra 中提供的 less 相关的函数 addLessLoader 来帮助加载 less 样式,同时修改 config-overrides.js 文件如下。

    1. - const { override, fixBabelImports } = require('customize-cra');
    2. + const { override, fixBabelImports, addLessLoader } = require('customize-cra');
    3. module.exports = override(
    4. fixBabelImports('import', {
    5. libraryName: 'antd',
    6. libraryDirectory: 'es',
    7. - style: 'css',
    8. + style: true,
    9. }),
    10. + addLessLoader({
    11. + javascriptEnabled: true,
    12. + modifyVars: { '@primary-color': '#1DA57A' },
    13. + }),
    14. );

    这里利用了 less-loader 的 modifyVars 来进行主题配置,变量和其他配置方式可以参考 配置主题 文档。

    修改后重启 yarn start,如果看到一个绿色的按钮就说明配置成功了。

    对于自定义 webpack 配置,你也可以使用 craco 和 craco-antd 来实现和 customize-cra 一样的修改 create-react-app 配置的功能。

    其他方案

    • Create React apps (with Typescript and antd) with no build configuration

    • react-app-rewire-typescript

    • ts-import-plugin

    • create-react-app Adding TypeScript

    • Migrating from create-react-app-typescript to Create React App