使用create-react-app在React中使用Sass进行Ant设计

时间:2018-08-09 08:11:54

标签: reactjs sass less create-react-app antd

我试图在我的React项目中使用antd-scss-theme-plugin将Ant设计与sass结合使用,但是我在网上只能找到使用Webpack的配置。我的项目是使用create-react-app创建的,我不必担心webpack的配置。实际上,我没有自己管理的任何webpack配置文件。

我已经用npm安装了antd和node-sass-chokidar并遵循了配置。辛苦了我可以导入并使用ant组件,也可以使用sass。使用watch-css脚本,我的css会自动编译,并且可以实时看到修改。

现在,我想用我的sass文件覆盖较少的ant设计组件,但是正如我所说,我可以在网上找到的唯一帮助和唯一知道的软件包是针对webpack项目的。

有人使用带有create-react-app的antd-scss-theme-plugin还是知道如何处理配置?

这是我的一些配置文件:

.babelrc:

{
  "presets": ["env"],
  "plugins": ["transform-class-properties", "transform-object-rest-spread"]
}

config-overrides.js:

const { injectBabelPlugin } = require('react-app-rewired')

module.exports = function override(config) {
  injectBabelPlugin(
    ['import', { libraryName: 'antd', libraryDirectory: 'es', style: true }],
    config,
  )
  return config
}

package.json:

    {
  "name": "xxx",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "antd": "^3.8.0",
    "antd-scss-theme-plugin": "^1.0.7",
    "connected-react-router": "^4.3.0",
    "history": "^4.7.2",
    "material-icons-react": "^1.0.2",
    "node-sass-chokidar": "^1.3.3",
    "npm-run-all": "^4.1.3",
    "prop-types": "^15.6.2",
    "react": "^16.4.2",
    "react-app-rewired": "^1.5.2",
    "react-dom": "^16.4.2",
    "react-redux": "^5.0.7",
    "react-router": "^4.3.1",
    "react-router-dom": "^4.3.1",
    "react-router-prop-types": "^1.0.4",
    "react-scripts": "1.1.4",
    "recompose": "^0.27.1",
    "redux": "^4.0.0",
    "redux-thunk": "^2.3.0"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-plugin-import": "^1.8.0",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "eslint": "^4.19.1",
    "eslint-config-airbnb": "^17.0.0",
    "eslint-config-prettier": "^2.9.0",
    "eslint-plugin-import": "^2.13.0",
    "eslint-plugin-jsx-a11y": "^6.1.1",
    "eslint-plugin-react": "^7.10.0",
    "eslint-plugin-react-redux": "^2.3.0",
    "prettier": "^1.14.0"
  },
  "scripts": {
    "build-css": "node-sass-chokidar src/ -o src/",
    "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
    "start-js": "react-app-rewired start",
    "start": "npm-run-all -p watch-css start-js",
    "build-js": "react-app-rewired build",
    "build": "npm-run-all build-css build-js",
    "test": "react-app-rewired test --env=jsdom",
    "eject": "react-scripts eject",
    "format": "prettier --write \"src/**/*.js\"",
    "lint": "eslint ."
  }
}

感谢您以后的所有回答;)!

2 个答案:

答案 0 :(得分:0)

我使用下面的配置安装程序来运行SASS,CRA和Antd的旧项目。但是,如果您访问Antd官方网站,他们现在已经更新了tutorial,用于使用Create React App配置Antd。但是无论如何,他们所解释的是它的使用量更少而不是简单,因此要在项目中使用sass,必须将CRA sass设置和Antd主题自定义结合起来才能使事情正常。

这是我项目中的一个示例,在该示例中,我使用了较少的插件来更新/自定义Antd主题。您应该在项目的根目录中创建一个custom-override.js文件,并添加以下代码行

const { override, fixBabelImports, addLessLoader } = require('customize-cra');
// you can also use craco instead of customize-cra, 
// which is now the most updated way in their current docs.

module.exports = override(
  fixBabelImports('import', {
    libraryName: 'antd',
    libraryDirectory: 'es',
    style: true,
  }),

  addLessLoader({
    javascriptEnabled: true,
    modifyVars: {
      '@primary-color': '#6237a0',
      '@link-color': '#6237a0',
      '@success-color': '#0ea70e',
      '@steps-nav-arrow-color': '#d1cdd6',
    },
  }),
);

然后,您只需要像在基于sass的CRA项目中一样使用scss正常工作即可。

要使用Sass,请先安装node-sass:

npm install node-sass --save
# or
yarn add node-sass

然后只需更新代码,然后将App.css重命名为App.scss并将其导入main(app.js)文件中。您甚至可以通过执行sass导入/定义变量等(使用sass可以做的所有事情)来扩展代码。

这是我的app.scss的快照,其中所有样式都在样式文件夹中定义。

/*
Variable definition 
*/
@import 'styles/variable';



/*
common style import 
*/
@import 'styles/common';



/**
*
# # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # #       Components styles import    # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # #
*
* below I do imports for all my routes and components.
*/

@import 'styles/dashboard';
@import 'styles/details';

答案 1 :(得分:0)

我遇到了同样的问题,最终还是设法解决了这个问题:

  1. 减少全局安装量

npm install -g less

  1. 创建一个main.less文件,并在其中包含antd.less

  2. 重新声明要覆盖的默认变量

main.less:

// main.less 
@import 'node_modules/antd/dist/antd.less 
@primary-color: #CA6027; // primary color for all components
@link-color: #5C987A; // link color
  1. 将main.less编译为CSS并将该文件包含在CSS中:

如果您的main.less是src / styles,则:

lessc "./src/styles/main.less ./src/styles/css/antd.css" --js

css输出将是:

./src/styles/css/antd.css

现在只需在app.js中包含此生成的antd.css。 您将覆盖的新样式将被应用:)