Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ability to whitelist specific property/function names to use loose mode when transforming destructuring #9486

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions packages/babel-plugin-transform-destructuring/src/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,43 @@
import { declare } from "@babel/helper-plugin-utils";
import { types as t } from "@babel/core";
import escapeRegExp from "lodash/escapeRegExp";

function checkNameMatchesSelectiveLoose(name, selectiveLoose) {
for (let i = 0; i < selectiveLoose.length; i++) {
if (selectiveLoose[i].test(name)) {
return true;
}
}
return false;
}

export default declare((api, options) => {
api.assertVersion(7);

const { loose = false, useBuiltIns = false } = options;
const {
loose = false,
useBuiltIns = false,
selectiveLoose = false,
} = options;

if (typeof loose !== "boolean") {
throw new Error(`.loose must be a boolean or undefined`);
}

// Format selectiveLoose entries to RegExp expressions that can
// match generated babel names, i.e. `_x`, `_x2`, `_x3`, etc.
if (selectiveLoose) {
if (selectiveLoose instanceof Array) {
for (let i = 0; i < selectiveLoose.length; i++) {
selectiveLoose[i] = new RegExp(
`^_${escapeRegExp(selectiveLoose[i])}\\d*$`,
);
}
} else {
throw new Error(`.selectiveLoose must be an array or undefined`);
}
}

const arrayOnlySpread = loose;

function getExtendsHelper(file) {
Expand Down Expand Up @@ -73,6 +101,7 @@ export default declare((api, options) => {
this.kind = opts.kind;
this.arrayOnlySpread = opts.arrayOnlySpread;
this.addHelper = opts.addHelper;
this.selectiveLoose = opts.selectiveLoose;
}

buildVariableAssignment(id, init) {
Expand Down Expand Up @@ -210,8 +239,11 @@ export default declare((api, options) => {
);
}

const isLoose = this.selectiveLoose
? checkNameMatchesSelectiveLoose(objRef.name, this.selectiveLoose)
: loose;
value = t.callExpression(
this.addHelper(`objectWithoutProperties${loose ? "Loose" : ""}`),
this.addHelper(`objectWithoutProperties${isLoose ? "Loose" : ""}`),
[t.cloneNode(objRef), keyExpression],
);
}
Expand Down Expand Up @@ -479,6 +511,7 @@ export default declare((api, options) => {
scope: scope,
nodes: nodes,
arrayOnlySpread,
selectiveLoose,
addHelper: name => this.addHelper(name),
});

Expand All @@ -504,6 +537,7 @@ export default declare((api, options) => {
scope: scope,
nodes: nodes,
arrayOnlySpread,
selectiveLoose,
addHelper: name => this.addHelper(name),
});
destructuring.init(pattern, ref);
Expand All @@ -522,6 +556,7 @@ export default declare((api, options) => {
scope: scope,
nodes: nodes,
arrayOnlySpread,
selectiveLoose,
addHelper: name => this.addHelper(name),
});

Expand Down Expand Up @@ -579,6 +614,7 @@ export default declare((api, options) => {
scope: scope,
kind: node.kind,
arrayOnlySpread,
selectiveLoose,
addHelper: name => this.addHelper(name),
});

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const useState = () => (["state", "dispatch"]);

var [state, dispatch] = useState();

expect(state).toBe("state");
expect(dispatch).toBe("dispatch");
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var z = {};
var { ...x } = z;
var { x, ...y } = z;
var { [x]: x, ...y } = z;
(function({ x, ...y }) { });

({ x, y, ...z } = o);

var [state, dispatch] = useState();
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"plugins": [
["transform-destructuring", { "loose": true, "selectiveLoose": ["z", "useState"] }],
"proposal-object-rest-spread",
["external-helpers", { "helperVersion": "7.1.5" }]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
var z = {};
var _z = z,
x = babelHelpers.extends({}, _z);
var _z2 = z,
x = _z2.x,
y = babelHelpers.objectWithoutPropertiesLoose(_z2, ["x"]);
var _z3 = z,
x = _z3[x],
y = babelHelpers.objectWithoutPropertiesLoose(_z3, [x].map(babelHelpers.toPropertyKey));

(function (_ref) {
let x = _ref.x,
y = babelHelpers.objectWithoutProperties(_ref, ["x"]);
});

var _o = o;
x = _o.x;
y = _o.y;
z = babelHelpers.objectWithoutProperties(_o, ["x", "y"]);

var _useState = useState(),
state = _useState[0],
dispatch = _useState[1];