forked from MetaMask/metamask-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add top-level error page (MetaMask#7889)
Any error caught during a React component render or lifecycle method will now be caught by the top-level error boundary, which shows the user this new error page. The error page will display a simple error message, and will show the details of the error in a collapsible section. The caught error is also reported to Sentry. In development the error will be re-thrown to make it easier to see on the console, but it is not re-thrown in production.
- Loading branch information
Showing
6 changed files
with
185 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import React, { PureComponent } from 'react' | ||
import PropTypes from 'prop-types' | ||
import { getEnvironmentType } from '../../../../app/scripts/lib/util' | ||
import { ENVIRONMENT_TYPE_POPUP } from '../../../../app/scripts/lib/enums' | ||
|
||
class ErrorPage extends PureComponent { | ||
static contextTypes = { | ||
t: PropTypes.func.isRequired, | ||
} | ||
|
||
static propTypes = { | ||
error: PropTypes.object.isRequired, | ||
} | ||
|
||
renderErrorDetail (content) { | ||
return ( | ||
<li> | ||
<p> | ||
{content} | ||
</p> | ||
</li> | ||
) | ||
} | ||
|
||
renderErrorStack (title, stack) { | ||
return ( | ||
<li> | ||
<span> | ||
{title} | ||
</span> | ||
<pre className="error-page__stack"> | ||
{stack} | ||
</pre> | ||
</li> | ||
) | ||
} | ||
|
||
render () { | ||
const { error } = this.props | ||
const { t } = this.context | ||
|
||
const isPopup = getEnvironmentType() === ENVIRONMENT_TYPE_POPUP | ||
|
||
return ( | ||
<section className="error-page"> | ||
<h1 className="error-page__header"> | ||
{t('errorPageTitle')} | ||
</h1> | ||
<h2 className="error-page__subheader"> | ||
{ | ||
isPopup | ||
? t('errorPagePopupMessage') | ||
: t('errorPageMessage') | ||
} | ||
</h2> | ||
<section className="error-page__details"> | ||
<details> | ||
<summary> | ||
{t('errorDetails')} | ||
</summary> | ||
<ul> | ||
{ error.message ? this.renderErrorDetail(t('errorMessage', [error.message])) : null } | ||
{ error.code ? this.renderErrorDetail(t('errorCode', [error.code])) : null } | ||
{ error.name ? this.renderErrorDetail(t('errorName', [error.name])) : null } | ||
{ error.stack ? this.renderErrorStack(t('errorStack'), error.stack) : null } | ||
</ul> | ||
</details> | ||
</section> | ||
</section> | ||
) | ||
} | ||
} | ||
|
||
export default ErrorPage |
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 @@ | ||
export { default } from './error.component' |
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,41 @@ | ||
.error-page { | ||
display: flex; | ||
flex-flow: column nowrap; | ||
align-items: center; | ||
|
||
font-family: Roboto; | ||
font-style: normal; | ||
font-weight: normal; | ||
|
||
padding: 35px 10px 10px 10px; | ||
height: 100%; | ||
|
||
&__header { | ||
display: flex; | ||
justify-content: center; | ||
font-size: 42px; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
|
||
&__subheader { | ||
font-size: 19px; | ||
padding: 10px 0; | ||
width: 100%; | ||
max-width: 720px; | ||
text-align: center; | ||
} | ||
|
||
&__details { | ||
font-size: 18px; | ||
overflow-y: auto; | ||
width: 100%; | ||
max-width: 720px; | ||
padding-top: 10px; | ||
} | ||
|
||
&__stack { | ||
overflow-x: auto; | ||
background-color: #eee; | ||
} | ||
} |
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