Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: umijs/babel-plugin-import
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.13.3
Choose a base ref
...
head repository: umijs/babel-plugin-import
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.13.4
Choose a head ref
  • 4 commits
  • 10 files changed
  • 4 contributors

Commits on Nov 3, 2021

  1. fix: newExpression arguments not be traverse issue (#597)

    Co-authored-by: 华志林 <linmu.hzl@raycloud.com>
    J10240221 and 华志林 authored Nov 3, 2021
    Copy the full SHA
    d21264e View commit details

Commits on Apr 11, 2022

  1. feat(customStyleName): 完善customStyleName传参 (#603)

    * feat(customStyleName): 完善customStyleName传参
    
    * test(customStyleName): 提供customStyleName传入file参数的测例
    
    * test(customStyleName): 补充customStyleName 的分支测例
    DawnLck authored Apr 11, 2022
    Copy the full SHA
    469c018 View commit details
  2. chore: update build script

    sorrycc committed Apr 11, 2022
    Copy the full SHA
    05c959b View commit details
  3. 1.13.4

    sorrycc committed Apr 11, 2022
    Copy the full SHA
    7af38ec View commit details
5 changes: 0 additions & 5 deletions .fatherrc-next.ts

This file was deleted.

7 changes: 7 additions & 0 deletions .fatherrc.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

export default {
target: 'node',
cjs: {
type: 'babel',
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,4 +6,5 @@
/*.log
/*.log.*
/yarn.lock
/pnpm-lock.yaml

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "babel-plugin-import",
"version": "1.13.3",
"version": "1.13.4",
"description": "Component modular import plugin for babel.",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/babel-plugin-import"
},
"main": "lib/index.js",
"scripts": {
"build": "father-next",
"build": "father-build",
"test": "umi-test --coverage",
"debug": "umi-test",
"lint": "eslint --ext .js src",
@@ -45,7 +45,7 @@
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"father-next": "^3.0.0-alpha.3",
"father-build": "^1.21.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.8",
"material-ui": "^0.20.2",
7 changes: 5 additions & 2 deletions src/Plugin.js
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ export default class Plugin {
? addDefault(file.path, path, { nameHint: methodName })
: addNamed(file.path, methodName, path);
if (this.customStyleName) {
const stylePath = winPath(this.customStyleName(transformedMethodName));
const stylePath = winPath(this.customStyleName(transformedMethodName, file));
addSideEffect(file.path, `${stylePath}`);
} else if (this.styleLibraryDirectory) {
const stylePath = winPath(
@@ -274,7 +274,10 @@ export default class Plugin {

NewExpression(path, state) {
const { node } = path;
this.buildExpressionHandler(node, ['callee', 'arguments'], path, state);
this.buildExpressionHandler(node, ['callee'], path, state);

const argumentsProps = node.arguments.map((_, index) => index);
this.buildExpressionHandler(node.arguments, argumentsProps, path, state);
}

SwitchStatement(path, state) {
1 change: 1 addition & 0 deletions test/fixtures/as-arguments-identifier/actual.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import { Modal } from 'antd';
const _Modal = bind()(Modal);
const _newModal = new AnyClass(Modal);
4 changes: 3 additions & 1 deletion test/fixtures/as-arguments-identifier/expected.js
Original file line number Diff line number Diff line change
@@ -4,4 +4,6 @@ var _modal = _interopRequireDefault(require("antd/lib/modal"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

var _Modal = bind()(_modal.default);
var _Modal = bind()(_modal.default);

var _newModal = new AnyClass(_modal.default);
5 changes: 5 additions & 0 deletions test/fixtures/custom-style-name-file/actual.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Button } from 'element-ui';

ReactDOM.render(<div>
<Button>xxxx</Button>
</div>);
11 changes: 11 additions & 0 deletions test/fixtures/custom-style-name-file/expected.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"use strict";

var _react = _interopRequireDefault(require("react"));

require("../../../../element-ui/lib/theme-light/button");

var _button2 = _interopRequireDefault(require("element-ui/lib/button"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

ReactDOM.render( /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_button2.default, null, "xxxx")));
14 changes: 14 additions & 0 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -101,6 +101,20 @@ describe('index', () => {
customStyleName: name => `element-ui/lib/theme-light/${name}`,
},
];
} else if (caseName === 'custom-style-name-file') {
pluginWithOpts = [
plugin,
{
libraryName: 'element-ui',
customStyleName: (name, file) => {
const { root, filename } = file?.opts;
const diff = filename?.slice(root?.length);
const count = diff.match(/\//g).length;
const prefix = String.prototype.repeat.call('../', count);
return `${prefix}element-ui/lib/theme-light/${name}`;
},
},
];
} else {
pluginWithOpts = [plugin, { libraryName: 'antd' }];
}