mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
Make ReactDebugCurrentFrame shared state between core and renderers (#9365)
This commit is contained in:
parent
e303e00d06
commit
d9fd08df26
|
|
@ -46,7 +46,9 @@ const fbjsModules = [
|
|||
];
|
||||
|
||||
const devOnlyFilesToStubOut = [
|
||||
"'ReactDebugCurrentFrame'",
|
||||
"'ReactComponentTreeHook'",
|
||||
"'react/lib/ReactDebugCurrentFrame'",
|
||||
"'react/lib/ReactComponentTreeHook'",
|
||||
"'react-dom/lib/ReactPerf'",
|
||||
"'react-dom/lib/ReactTestUtils'",
|
||||
|
|
@ -169,9 +171,6 @@ function getInternalModules() {
|
|||
// it doesn't pick them up and assumes they're external
|
||||
return {
|
||||
reactProdInvariant: resolve('./src/shared/utils/reactProdInvariant.js'),
|
||||
'react/lib/ReactDebugCurrentFrame': resolve(
|
||||
'./src/isomorphic/classic/element/ReactDebugCurrentFrame.js'
|
||||
),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -277,6 +276,28 @@ function getReactComponentTreeHookModuleAlias(bundleType, isRenderer) {
|
|||
}
|
||||
}
|
||||
|
||||
// this works almost identically to the ReactCurrentOwner shim above
|
||||
const shimReactDebugCurrentFrame = resolve(
|
||||
'./scripts/rollup/shims/rollup/ReactDebugCurrentFrameRollupShim.js'
|
||||
);
|
||||
const realReactDebugCurrentFrame = resolve(
|
||||
'./src/isomorphic/classic/element/ReactDebugCurrentFrame.js'
|
||||
);
|
||||
|
||||
function getReactDebugCurrentFrameModuleAlias(bundleType, isRenderer) {
|
||||
if (isRenderer) {
|
||||
return {
|
||||
ReactDebugCurrentFrame: shimReactDebugCurrentFrame,
|
||||
'react/lib/ReactDebugCurrentFrame': shimReactDebugCurrentFrame,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
ReactDebugCurrentFrame: realReactDebugCurrentFrame,
|
||||
'react/lib/ReactDebugCurrentFrame': realReactDebugCurrentFrame,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
const devOnlyModuleStub = `'${resolve('./scripts/rollup/shims/rollup/DevOnlyStubShim.js')}'`;
|
||||
|
||||
function replaceDevOnlyStubbedModules(bundleType) {
|
||||
|
|
@ -302,6 +323,7 @@ function getAliases(paths, bundleType, isRenderer, extractErrors) {
|
|||
return Object.assign(
|
||||
getReactCurrentOwnerModuleAlias(bundleType, isRenderer),
|
||||
getReactComponentTreeHookModuleAlias(bundleType, isRenderer),
|
||||
getReactDebugCurrentFrameModuleAlias(bundleType, isRenderer),
|
||||
createModuleMap(
|
||||
paths,
|
||||
extractErrors && extractErrorCodes(errorCodeOpts),
|
||||
|
|
|
|||
|
|
@ -1,41 +1,41 @@
|
|||
{
|
||||
"branch": "master",
|
||||
"branch": "debug-frame",
|
||||
"bundleSizes": {
|
||||
"react.development.js (UMD_DEV)": {
|
||||
"size": 116208,
|
||||
"gzip": 29564
|
||||
"size": 116245,
|
||||
"gzip": 29572
|
||||
},
|
||||
"react.production.min.js (UMD_PROD)": {
|
||||
"size": 13719,
|
||||
"gzip": 5080
|
||||
},
|
||||
"react-dom.development.js (UMD_DEV)": {
|
||||
"size": 564771,
|
||||
"gzip": 130439
|
||||
"size": 563524,
|
||||
"gzip": 130148
|
||||
},
|
||||
"react-dom.production.min.js (UMD_PROD)": {
|
||||
"size": 120123,
|
||||
"gzip": 37844
|
||||
},
|
||||
"react-dom-server.development.js (UMD_DEV)": {
|
||||
"size": 477021,
|
||||
"gzip": 115494
|
||||
"size": 475780,
|
||||
"gzip": 115177
|
||||
},
|
||||
"react-dom-server.production.min.js (UMD_PROD)": {
|
||||
"size": 106349,
|
||||
"gzip": 32998
|
||||
},
|
||||
"react-art.development.js (UMD_DEV)": {
|
||||
"size": 341151,
|
||||
"gzip": 76261
|
||||
"size": 339599,
|
||||
"gzip": 75952
|
||||
},
|
||||
"react-art.production.min.js (UMD_PROD)": {
|
||||
"size": 94939,
|
||||
"gzip": 28976
|
||||
},
|
||||
"react.development.js (NODE_DEV)": {
|
||||
"size": 109222,
|
||||
"gzip": 27519
|
||||
"size": 109259,
|
||||
"gzip": 27527
|
||||
},
|
||||
"react.production.min.js (NODE_PROD)": {
|
||||
"size": 12615,
|
||||
|
|
@ -50,64 +50,64 @@
|
|||
"gzip": 14329
|
||||
},
|
||||
"ReactDOMStack-dev.js (FB_DEV)": {
|
||||
"size": 523202,
|
||||
"gzip": 124830
|
||||
"size": 521957,
|
||||
"gzip": 124586
|
||||
},
|
||||
"ReactDOMStack-prod.js (FB_PROD)": {
|
||||
"size": 351707,
|
||||
"gzip": 84367
|
||||
},
|
||||
"react-dom.development.js (NODE_DEV)": {
|
||||
"size": 543145,
|
||||
"gzip": 125402
|
||||
"size": 541898,
|
||||
"gzip": 125114
|
||||
},
|
||||
"react-dom.production.min.js (NODE_PROD)": {
|
||||
"size": 116802,
|
||||
"gzip": 36707
|
||||
},
|
||||
"ReactDOMFiber-dev.js (FB_DEV)": {
|
||||
"size": 797617,
|
||||
"gzip": 184146
|
||||
"size": 796380,
|
||||
"gzip": 183920
|
||||
},
|
||||
"ReactDOMFiber-prod.js (FB_PROD)": {
|
||||
"size": 407360,
|
||||
"gzip": 93460
|
||||
},
|
||||
"react-dom-server.development.js (NODE_DEV)": {
|
||||
"size": 446422,
|
||||
"gzip": 107796
|
||||
"size": 445181,
|
||||
"gzip": 107467
|
||||
},
|
||||
"react-dom-server.production.min.js (NODE_PROD)": {
|
||||
"size": 101204,
|
||||
"gzip": 31227
|
||||
},
|
||||
"ReactDOMServerStack-dev.js (FB_DEV)": {
|
||||
"size": 445173,
|
||||
"gzip": 107652
|
||||
"size": 443932,
|
||||
"gzip": 107406
|
||||
},
|
||||
"ReactDOMServerStack-prod.js (FB_PROD)": {
|
||||
"size": 332974,
|
||||
"gzip": 80219
|
||||
},
|
||||
"ReactARTStack-dev.js (FB_DEV)": {
|
||||
"size": 494340,
|
||||
"gzip": 118840
|
||||
"size": 492711,
|
||||
"gzip": 118489
|
||||
},
|
||||
"ReactARTStack-prod.js (FB_PROD)": {
|
||||
"size": 365115,
|
||||
"gzip": 87595
|
||||
},
|
||||
"react-art.development.js (NODE_DEV)": {
|
||||
"size": 266386,
|
||||
"gzip": 57183
|
||||
"size": 264816,
|
||||
"gzip": 56881
|
||||
},
|
||||
"react-art.production.min.js (NODE_PROD)": {
|
||||
"size": 56517,
|
||||
"gzip": 17109
|
||||
},
|
||||
"ReactARTFiber-dev.js (FB_DEV)": {
|
||||
"size": 265561,
|
||||
"gzip": 57011
|
||||
"size": 263991,
|
||||
"gzip": 56709
|
||||
},
|
||||
"ReactARTFiber-prod.js (FB_PROD)": {
|
||||
"size": 205194,
|
||||
|
|
@ -122,20 +122,20 @@
|
|||
"gzip": 84001
|
||||
},
|
||||
"ReactTestRendererFiber-dev.js (FB_DEV)": {
|
||||
"size": 263452,
|
||||
"gzip": 55974
|
||||
"size": 261900,
|
||||
"gzip": 55671
|
||||
},
|
||||
"ReactTestRendererStack-dev.js (FB_DEV)": {
|
||||
"size": 155222,
|
||||
"gzip": 35662
|
||||
"size": 151142,
|
||||
"gzip": 34709
|
||||
},
|
||||
"react-noop-renderer.development.js (NODE_DEV)": {
|
||||
"size": 255447,
|
||||
"gzip": 53933
|
||||
"size": 253895,
|
||||
"gzip": 53629
|
||||
},
|
||||
"react-test-renderer.development.js (NODE_DEV)": {
|
||||
"size": 264286,
|
||||
"gzip": 56152
|
||||
"size": 262734,
|
||||
"gzip": 55847
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
var ReactInternals = require('react').__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
||||
|
||||
module.exports = ReactInternals.ReactDebugCurrentFrame;
|
||||
|
|
@ -27,8 +27,9 @@ if (__DEV__) {
|
|||
Object.assign(
|
||||
ReactFBEntry.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
|
||||
{
|
||||
// ReactComponentTreeHook should not be included in production.
|
||||
// These should not be included in production.
|
||||
ReactComponentTreeHook: require('react/lib/ReactComponentTreeHook'),
|
||||
ReactDebugCurrentFrame: require('react/lib/ReactDebugCurrentFrame'),
|
||||
},
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@ if (__DEV__) {
|
|||
Object.assign(
|
||||
ReactUMDEntry.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
|
||||
{
|
||||
// ReactComponentTreeHook should not be included in production.
|
||||
// These should not be included in production.
|
||||
ReactComponentTreeHook: require('react/lib/ReactComponentTreeHook'),
|
||||
ReactDebugCurrentFrame: require('react/lib/ReactDebugCurrentFrame'),
|
||||
},
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user