103 lines
3.9 KiB
JavaScript
103 lines
3.9 KiB
JavaScript
"use client";
|
|
|
|
import React from "react";
|
|
import { usePathname } from "./navigation";
|
|
const styles = {
|
|
error: {
|
|
// https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52
|
|
fontFamily: 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"',
|
|
height: "100vh",
|
|
textAlign: "center",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
justifyContent: "center"
|
|
},
|
|
text: {
|
|
fontSize: "14px",
|
|
fontWeight: 400,
|
|
lineHeight: "28px",
|
|
margin: "0 8px"
|
|
}
|
|
};
|
|
export class ErrorBoundaryHandler extends React.Component {
|
|
static getDerivedStateFromError(error) {
|
|
return {
|
|
error
|
|
};
|
|
}
|
|
static getDerivedStateFromProps(props, state) {
|
|
/**
|
|
* Handles reset of the error boundary when a navigation happens.
|
|
* Ensures the error boundary does not stay enabled when navigating to a new page.
|
|
* Approach of setState in render is safe as it checks the previous pathname and then overrides
|
|
* it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders
|
|
*/ if (props.pathname !== state.previousPathname && state.error) {
|
|
return {
|
|
error: null,
|
|
previousPathname: props.pathname
|
|
};
|
|
}
|
|
return {
|
|
error: state.error,
|
|
previousPathname: props.pathname
|
|
};
|
|
}
|
|
render() {
|
|
if (this.state.error) {
|
|
return /*#__PURE__*/ React.createElement(React.Fragment, null, this.props.errorStyles, /*#__PURE__*/ React.createElement(this.props.errorComponent, {
|
|
error: this.state.error,
|
|
reset: this.reset
|
|
}));
|
|
}
|
|
return this.props.children;
|
|
}
|
|
constructor(props){
|
|
super(props);
|
|
this.reset = ()=>{
|
|
this.setState({
|
|
error: null
|
|
});
|
|
};
|
|
this.state = {
|
|
error: null,
|
|
previousPathname: this.props.pathname
|
|
};
|
|
}
|
|
}
|
|
export function GlobalError(param) {
|
|
let { error } = param;
|
|
const digest = error == null ? void 0 : error.digest;
|
|
return /*#__PURE__*/ React.createElement("html", {
|
|
id: "__next_error__"
|
|
}, /*#__PURE__*/ React.createElement("head", null), /*#__PURE__*/ React.createElement("body", null, /*#__PURE__*/ React.createElement("div", {
|
|
style: styles.error
|
|
}, /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h2", {
|
|
style: styles.text
|
|
}, "Application error: a " + (digest ? "server" : "client") + "-side exception has occurred (see the " + (digest ? "server logs" : "browser console") + " for more information)."), digest ? /*#__PURE__*/ React.createElement("p", {
|
|
style: styles.text
|
|
}, "Digest: " + digest) : null))));
|
|
}
|
|
// Exported so that the import signature in the loaders can be identical to user
|
|
// supplied custom global error signatures.
|
|
export default GlobalError;
|
|
/**
|
|
* Handles errors through `getDerivedStateFromError`.
|
|
* Renders the provided error component and provides a way to `reset` the error boundary state.
|
|
*/ /**
|
|
* Renders error boundary with the provided "errorComponent" property as the fallback.
|
|
* If no "errorComponent" property is provided it renders the children without an error boundary.
|
|
*/ export function ErrorBoundary(param) {
|
|
let { errorComponent, errorStyles, children } = param;
|
|
const pathname = usePathname();
|
|
if (errorComponent) {
|
|
return /*#__PURE__*/ React.createElement(ErrorBoundaryHandler, {
|
|
pathname: pathname,
|
|
errorComponent: errorComponent,
|
|
errorStyles: errorStyles
|
|
}, children);
|
|
}
|
|
return /*#__PURE__*/ React.createElement(React.Fragment, null, children);
|
|
}
|
|
|
|
//# sourceMappingURL=error-boundary.js.map
|