mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
69 lines
2.3 KiB
TypeScript
69 lines
2.3 KiB
TypeScript
import { NextPageContext } from 'next';
|
|
import NextErrorComponent from 'next/error';
|
|
import { captureException, flush } from '@sentry/nextjs';
|
|
|
|
const MyError = ({
|
|
statusCode,
|
|
hasGetInitialPropsRun,
|
|
err,
|
|
}: {
|
|
statusCode: number;
|
|
hasGetInitialPropsRun: boolean;
|
|
err: Error;
|
|
}) => {
|
|
if (!hasGetInitialPropsRun && err) {
|
|
// getInitialProps is not called in case of
|
|
// https://github.com/vercel/next.js/issues/8592. As a workaround, we pass
|
|
// err via _app.js so it can be captured
|
|
captureException(err);
|
|
// Flushing is not required in this case as it only happens on the client
|
|
}
|
|
|
|
return <NextErrorComponent statusCode={statusCode} />;
|
|
};
|
|
|
|
MyError.getInitialProps = async (props: NextPageContext) => {
|
|
console.log(props);
|
|
const errorInitialProps = await NextErrorComponent.getInitialProps({
|
|
res: props.res,
|
|
err: props.err,
|
|
} as any);
|
|
const { err, asPath } = props;
|
|
|
|
// Workaround for https://github.com/vercel/next.js/issues/8592, mark when
|
|
// getInitialProps has run
|
|
(errorInitialProps as any).hasGetInitialPropsRun = true;
|
|
|
|
// Running on the server, the response object (`res`) is available.
|
|
//
|
|
// Next.js will pass an err on the server if a page's data fetching methods
|
|
// threw or returned a Promise that rejected
|
|
//
|
|
// Running on the client (browser), Next.js will provide an err if:
|
|
//
|
|
// - a page's `getInitialProps` threw or returned a Promise that rejected
|
|
// - an exception was thrown somewhere in the React lifecycle (render,
|
|
// componentDidMount, etc.) that was caught by Next.js' React Error
|
|
// Boundary. Read more about what types of exceptions are caught by Error
|
|
// Boundaries: https://reactjs.org/docs/error-boundaries.html
|
|
|
|
if (err) {
|
|
captureException(err);
|
|
|
|
// Flushing before returning is necessary if deploying to Vercel, see
|
|
// https://vercel.com/docs/platform/limits#streaming-responses
|
|
await flush(2000);
|
|
|
|
return errorInitialProps;
|
|
}
|
|
|
|
// If this point is reached, getInitialProps was called without any
|
|
// information about what the error might be. This is unexpected and may
|
|
// indicate a bug introduced in Next.js, so record it in Sentry
|
|
captureException(new Error(`_error.tsx getInitialProps missing data at path: ${asPath}`));
|
|
await flush(2000);
|
|
|
|
return errorInitialProps;
|
|
};
|
|
|
|
export default MyError;
|