mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
75 lines
2.9 KiB
TypeScript
75 lines
2.9 KiB
TypeScript
/**
|
|
* Copyright (c) 2021 OpenLens Authors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
* the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
import "./error-boundary.scss";
|
|
|
|
import React from "react";
|
|
import { Button } from "../button";
|
|
import { navigation } from "../../navigation";
|
|
import { issuesTrackerUrl, slackUrl } from "../../../common/vars";
|
|
import * as Sentry from "@sentry/react";
|
|
import { observer } from "mobx-react";
|
|
|
|
@observer
|
|
export class ErrorBoundary extends React.Component {
|
|
render() {
|
|
return (
|
|
<Sentry.ErrorBoundary
|
|
fallback={({ error, componentStack, resetError }) => {
|
|
const slackLink = <a href={slackUrl} rel="noreferrer" target="_blank">Slack</a>;
|
|
const githubLink = <a href={issuesTrackerUrl} rel="noreferrer" target="_blank">Github</a>;
|
|
const pageUrl = location.pathname;
|
|
|
|
return (
|
|
<div className="flex ErrorBoundary column gaps">
|
|
<h5>
|
|
App crash at <span className="contrast">{pageUrl}</span>
|
|
</h5>
|
|
<p>
|
|
To help us improve the product please report bugs to {slackLink} community or {githubLink} issues tracker.
|
|
</p>
|
|
<div className="wrapper">
|
|
<code className="block">
|
|
<p className="contrast">Component stack:</p>
|
|
{componentStack}
|
|
</code>
|
|
<code className="box grow">
|
|
<p className="contrast">Error stack:</p> <br/>
|
|
{error.stack}
|
|
</code>
|
|
</div>
|
|
<Button
|
|
className="box self-flex-start"
|
|
primary label="Back"
|
|
onClick={() => {
|
|
resetError();
|
|
navigation.goBack();
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}}>
|
|
{this.props.children}
|
|
</Sentry.ErrorBoundary>
|
|
);
|
|
}
|
|
}
|