-
Notifications
You must be signed in to change notification settings - Fork 47.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build Component Stacks from Native Stack Frames (#18561)
* Implement component stack extraction hack * Normalize errors in tests This drops the requirement to include owner to pass the test. * Special case tests * Add destructuring to force toObject which throws before the side-effects This ensures that we don't double call yieldValue or advanceTime in tests. Ideally we could use empty destructuring but ES lint doesn't like it. * Cache the result in DEV In DEV it's somewhat likely that we'll see many logs that add component stacks. This could be slow so we cache the results of previous components. * Fixture * Add Reflect to lint * Log if out of range. * Fix special case when the function call throws in V8 In V8 we need to ignore the first line. Normally we would never get there because the stacks would differ before that, but the stacks are the same if we end up throwing at the same place as the control.
- Loading branch information
1 parent
8e13f09
commit 98d410f
Showing
35 changed files
with
594 additions
and
179 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Compile this with Babel. | ||
// babel --config-file ./babel.config.json BabelClass.js --out-file BabelClass-compiled.js --source-maps | ||
|
||
class BabelClass extends React.Component { | ||
render() { | ||
return this.props.children; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Example | ||
|
||
const Throw = React.lazy(() => { | ||
throw new Error('Example'); | ||
}); | ||
|
||
const Component = React.memo(function Component({children}) { | ||
return children; | ||
}); | ||
|
||
function DisplayName({children}) { | ||
return children; | ||
} | ||
DisplayName.displayName = 'Custom Name'; | ||
|
||
class NativeClass extends React.Component { | ||
render() { | ||
return this.props.children; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Example | ||
|
||
const x = React.createElement; | ||
|
||
class ErrorBoundary extends React.Component { | ||
static getDerivedStateFromError(error) { | ||
return { | ||
error: error, | ||
}; | ||
} | ||
|
||
componentDidCatch(error, errorInfo) { | ||
console.log(error.message, errorInfo.componentStack); | ||
this.setState({ | ||
componentStack: errorInfo.componentStack, | ||
}); | ||
} | ||
|
||
render() { | ||
if (this.state && this.state.error) { | ||
return x( | ||
'div', | ||
null, | ||
x('h3', null, this.state.error.message), | ||
x('pre', null, this.state.componentStack) | ||
); | ||
} | ||
return this.props.children; | ||
} | ||
} | ||
|
||
function Example() { | ||
let state = React.useState(false); | ||
return x( | ||
ErrorBoundary, | ||
null, | ||
x( | ||
DisplayName, | ||
null, | ||
x( | ||
React.SuspenseList, | ||
null, | ||
x( | ||
NativeClass, | ||
null, | ||
x( | ||
BabelClass, | ||
null, | ||
x( | ||
React.Suspense, | ||
null, | ||
x('div', null, x(Component, null, x(Throw))) | ||
) | ||
) | ||
) | ||
) | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"plugins": [ | ||
["@babel/plugin-transform-classes", {"loose": true}] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Component Stacks</title> | ||
<style> | ||
html, body { | ||
margin: 20px; | ||
} | ||
pre { | ||
background: #eee; | ||
border: 1px solid #ccc; | ||
padding: 2px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
<p> | ||
To install React, follow the instructions on | ||
<a href="https://github.com/facebook/react/">GitHub</a>. | ||
</p> | ||
<p> | ||
If you can see this, React is <strong>not</strong> working right. | ||
If you checked out the source from GitHub make sure to run <code>npm run build</code>. | ||
</p> | ||
</div> | ||
<script src="../../build/node_modules/react/umd/react.production.min.js"></script> | ||
<script src="../../build/node_modules/react-dom/umd/react-dom.production.min.js"></script> | ||
<script src="./Component.js"></script> | ||
<script src="./BabelClass-compiled.js"></script> | ||
<script src="./Example.js"></script> | ||
<script> | ||
const container = document.getElementById("container"); | ||
ReactDOM.render(React.createElement(Example), container); | ||
</script> | ||
<h3>The above stack should look something like this:</h3> | ||
<pre> | ||
|
||
at Lazy | ||
at Component (/stacks/Component.js:7:50) | ||
at div | ||
at Suspense | ||
at BabelClass (/stacks/BabelClass-compiled.js:13:29) | ||
at NativeClass (/stacks/Component.js:16:1) | ||
at SuspenseList | ||
at Custom Name (/stacks/Component.js:11:23) | ||
at ErrorBoundary (/stacks/Example.js:5:1) | ||
at Example (/stacks/Example.js:33:21)</pre> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.