69 lines
4.3 KiB
JavaScript
69 lines
4.3 KiB
JavaScript
// This file is only used in app router due to the specific error state handling.
|
|
import { isNextRouterError } from '../components/is-next-router-error';
|
|
import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';
|
|
import { reportGlobalError } from './report-global-error';
|
|
import { ErrorBoundaryHandler } from '../components/error-boundary';
|
|
import DefaultErrorBoundary from '../components/builtin/global-error';
|
|
const devToolErrorMod = process.env.NODE_ENV !== 'production' ? require('../../next-devtools/userspace/app/errors') : {
|
|
decorateDevError: (error)=>error,
|
|
handleClientError: ()=>{},
|
|
originConsoleError: console.error.bind(console)
|
|
};
|
|
export function onCaughtError(thrownValue, errorInfo) {
|
|
const errorBoundaryComponent = errorInfo.errorBoundary?.constructor;
|
|
let isImplicitErrorBoundary;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const { AppDevOverlayErrorBoundary } = require('../../next-devtools/userspace/app/app-dev-overlay-error-boundary');
|
|
isImplicitErrorBoundary = errorBoundaryComponent === AppDevOverlayErrorBoundary;
|
|
}
|
|
isImplicitErrorBoundary = isImplicitErrorBoundary || errorBoundaryComponent === ErrorBoundaryHandler && errorInfo.errorBoundary.props.errorComponent === DefaultErrorBoundary;
|
|
// Skip the segment explorer triggered error
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const { SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE } = require('../../next-devtools/userspace/app/segment-explorer-node');
|
|
if (thrownValue instanceof Error && thrownValue.message === SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE) {
|
|
return;
|
|
}
|
|
}
|
|
if (isImplicitErrorBoundary) {
|
|
// We don't consider errors caught unless they're caught by an explicit error
|
|
// boundary. The built-in ones are considered implicit.
|
|
// This mimics how the same app would behave without Next.js.
|
|
return onUncaughtError(thrownValue);
|
|
}
|
|
// Skip certain custom errors which are not expected to be reported on client
|
|
if (isBailoutToCSRError(thrownValue) || isNextRouterError(thrownValue)) return;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const errorBoundaryName = // read react component displayName
|
|
errorBoundaryComponent?.displayName || errorBoundaryComponent?.name || 'Unknown';
|
|
const componentThatErroredFrame = errorInfo?.componentStack?.split('\n')[1];
|
|
// Match chrome or safari stack trace
|
|
const matches = // regex to match the function name in the stack trace
|
|
// example 1: at Page (http://localhost:3000/_next/static/chunks/pages/index.js?ts=1631600000000:2:1)
|
|
// example 2: Page@http://localhost:3000/_next/static/chunks/pages/index.js?ts=1631600000000:2:1
|
|
componentThatErroredFrame?.match(/\s+at (\w+)\s+|(\w+)@/) ?? [];
|
|
const componentThatErroredName = matches[1] || matches[2] || 'Unknown';
|
|
// Create error location with errored component and error boundary, to match the behavior of default React onCaughtError handler.
|
|
const errorBoundaryMessage = `It was handled by the <${errorBoundaryName}> error boundary.`;
|
|
const componentErrorMessage = componentThatErroredName ? `The above error occurred in the <${componentThatErroredName}> component.` : `The above error occurred in one of your components.`;
|
|
const errorLocation = `${componentErrorMessage} ${errorBoundaryMessage}`;
|
|
const error = devToolErrorMod.decorateDevError(thrownValue);
|
|
// Log and report the error with location but without modifying the error stack
|
|
devToolErrorMod.originConsoleError('%o\n\n%s', thrownValue, errorLocation);
|
|
devToolErrorMod.handleClientError(error);
|
|
} else {
|
|
devToolErrorMod.originConsoleError(thrownValue);
|
|
}
|
|
}
|
|
export function onUncaughtError(thrownValue) {
|
|
// Skip certain custom errors which are not expected to be reported on client
|
|
if (isBailoutToCSRError(thrownValue) || isNextRouterError(thrownValue)) return;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const error = devToolErrorMod.decorateDevError(thrownValue);
|
|
// TODO: Add an adendum to the overlay telling people about custom error boundaries.
|
|
reportGlobalError(error);
|
|
} else {
|
|
reportGlobalError(thrownValue);
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=error-boundary-callbacks.js.map
|