File size: 1,865 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
import { PureComponent } from 'react'
import { dispatcher } from 'next/dist/compiled/next-devtools'
import { RuntimeErrorHandler } from '../../../client/dev/runtime-error-handler'
import { ErrorBoundary } from '../../../client/components/error-boundary'
import DefaultGlobalError from '../../../client/components/builtin/global-error'
import type { GlobalErrorState } from '../../../client/components/app-router-instance'
import { SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE } from './segment-explorer-node'
type AppDevOverlayErrorBoundaryProps = {
children: React.ReactNode
globalError: GlobalErrorState
}
type AppDevOverlayErrorBoundaryState = {
reactError: unknown
}
function ErroredHtml({
globalError: [GlobalError, globalErrorStyles],
error,
}: {
globalError: GlobalErrorState
error: unknown
}) {
if (!error) {
return (
<html>
<head />
<body />
</html>
)
}
return (
<ErrorBoundary errorComponent={DefaultGlobalError}>
{globalErrorStyles}
<GlobalError error={error} />
</ErrorBoundary>
)
}
export class AppDevOverlayErrorBoundary extends PureComponent<
AppDevOverlayErrorBoundaryProps,
AppDevOverlayErrorBoundaryState
> {
state = { reactError: null }
static getDerivedStateFromError(error: Error) {
RuntimeErrorHandler.hadRuntimeError = true
return {
reactError: error,
}
}
componentDidCatch(err: Error) {
if (
process.env.NODE_ENV === 'development' &&
err.message === SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE
) {
return
}
dispatcher.openErrorOverlay()
}
render() {
const { children, globalError } = this.props
const { reactError } = this.state
const fallback = (
<ErroredHtml globalError={globalError} error={reactError} />
)
return reactError !== null ? fallback : children
}
}
|