Skip to content

Commit 516c1d8

Browse files
committed
Merge pull request facebook#6444 from zpao/re__spreadwarn
Add back React.__spread and make it warn
2 parents 6fd2b29 + fc1cfb6 commit 516c1d8

File tree

2 files changed

+44
-11
lines changed

2 files changed

+44
-11
lines changed

scripts/babel/transform-object-assign-require.js

+23-11
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@
1212
module.exports = function autoImporter(babel) {
1313
const t = babel.types;
1414

15+
function getAssignIdent(path, file, state) {
16+
if (!state.id) {
17+
state.id = path.scope.generateUidIdentifier('assign');
18+
path.scope.getProgramParent().push({
19+
id: state.id,
20+
init: t.callExpression(
21+
t.identifier('require'),
22+
[t.stringLiteral('object-assign')]
23+
),
24+
});
25+
}
26+
return state.id;
27+
}
28+
1529
return {
1630
pre: function() {
1731
// map from module to generated identifier
@@ -22,17 +36,15 @@ module.exports = function autoImporter(babel) {
2236
CallExpression: function(path, file) {
2337
if (path.get('callee').matchesPattern('Object.assign')) {
2438
// generate identifier and require if it hasn't been already
25-
if (!this.id) {
26-
this.id = path.scope.generateUidIdentifier('assign');
27-
path.scope.getProgramParent().push({
28-
id: this.id,
29-
init: t.callExpression(
30-
t.identifier('require'),
31-
[t.stringLiteral('object-assign')]
32-
),
33-
});
34-
}
35-
path.node.callee = this.id;
39+
var id = getAssignIdent(path, file, this);
40+
path.node.callee = id;
41+
}
42+
},
43+
44+
MemberExpression: function(path, file) {
45+
if (path.matchesPattern('Object.assign')) {
46+
var id = getAssignIdent(path, file, this);
47+
path.replaceWith(id);
3648
}
3749
},
3850
},

src/isomorphic/React.js

+21
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ var ReactPropTypes = require('ReactPropTypes');
2121
var ReactVersion = require('ReactVersion');
2222

2323
var onlyChild = require('onlyChild');
24+
var warning = require('warning');
2425

2526
var createElement = ReactElement.createElement;
2627
var createFactory = ReactElement.createFactory;
@@ -32,6 +33,23 @@ if (__DEV__) {
3233
cloneElement = ReactElementValidator.cloneElement;
3334
}
3435

36+
var __spread = Object.assign;
37+
38+
if (__DEV__) {
39+
var warned = false;
40+
__spread = function() {
41+
warning(
42+
warned,
43+
'React.__spread is deprecated and should not be used. Use ' +
44+
'Object.assign directly or another helper function with similar ' +
45+
'semantics. You may be seeing this warning due to your compiler. ' +
46+
'See https://fb.me/react-spread-deprecation for more details.'
47+
);
48+
warned = true;
49+
return Object.assign.apply(null, arguments);
50+
};
51+
}
52+
3553
var React = {
3654

3755
// Modern
@@ -65,6 +83,9 @@ var React = {
6583
DOM: ReactDOMFactories,
6684

6785
version: ReactVersion,
86+
87+
// Deprecated hook for JSX spread, don't use this for anything.
88+
__spread: __spread,
6889
};
6990

7091
module.exports = React;

0 commit comments

Comments
 (0)