2021-09-09 13:51:06 +00:00
|
|
|
/**
|
|
|
|
* Typescript class based component for custom-error
|
|
|
|
* @link https://nextjs.org/docs/advanced-features/custom-error-page
|
|
|
|
*/
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { NextPage, NextPageContext } from "next";
|
|
|
|
import type { ErrorProps } from "next/error";
|
|
|
|
import NextError from "next/error";
|
2021-09-22 19:52:38 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2022-03-16 23:36:43 +00:00
|
|
|
import { getErrorFromUnknown } from "@calcom/lib/errors";
|
2022-03-23 22:00:30 +00:00
|
|
|
import logger from "@calcom/lib/logger";
|
2022-03-16 23:36:43 +00:00
|
|
|
|
2021-09-09 13:51:06 +00:00
|
|
|
import { HttpError } from "@lib/core/http/error";
|
|
|
|
|
2021-09-22 19:52:38 +00:00
|
|
|
import { ErrorPage } from "@components/error/error-page";
|
|
|
|
|
2021-09-09 13:51:06 +00:00
|
|
|
// Adds HttpException to the list of possible error types.
|
|
|
|
type AugmentedError = (NonNullable<NextPageContext["err"]> & HttpError) | null;
|
|
|
|
type CustomErrorProps = {
|
|
|
|
err?: AugmentedError;
|
|
|
|
message?: string;
|
|
|
|
hasGetInitialPropsRun?: boolean;
|
|
|
|
} & Omit<ErrorProps, "err">;
|
|
|
|
|
|
|
|
type AugmentedNextPageContext = Omit<NextPageContext, "err"> & {
|
|
|
|
err: AugmentedError;
|
|
|
|
};
|
|
|
|
|
|
|
|
const log = logger.getChildLogger({ prefix: ["[error]"] });
|
|
|
|
|
|
|
|
const CustomError: NextPage<CustomErrorProps> = (props) => {
|
|
|
|
const { statusCode, err, message, hasGetInitialPropsRun } = props;
|
|
|
|
|
|
|
|
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.tsx so it can be captured
|
2022-05-17 20:43:27 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2021-09-09 13:51:06 +00:00
|
|
|
const e = getErrorFromUnknown(err);
|
|
|
|
// can be captured here
|
|
|
|
// e.g. Sentry.captureException(e);
|
|
|
|
}
|
|
|
|
return <ErrorPage statusCode={statusCode} error={err} message={message} />;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Partially adapted from the example in
|
|
|
|
* https://github.com/vercel/next.js/tree/canary/examples/with-sentry
|
|
|
|
*/
|
2022-11-11 09:47:11 +00:00
|
|
|
CustomError.getInitialProps = async (ctx: AugmentedNextPageContext) => {
|
|
|
|
const { res, err, asPath } = ctx;
|
2021-09-09 13:51:06 +00:00
|
|
|
const errorInitialProps = (await NextError.getInitialProps({
|
|
|
|
res,
|
|
|
|
err,
|
|
|
|
} as NextPageContext)) as CustomErrorProps;
|
|
|
|
|
|
|
|
// Workaround for https://github.com/vercel/next.js/issues/8592, mark when
|
|
|
|
// getInitialProps has run
|
|
|
|
errorInitialProps.hasGetInitialPropsRun = true;
|
|
|
|
|
|
|
|
// If a HttpError message, let's override defaults
|
|
|
|
if (err instanceof HttpError) {
|
|
|
|
errorInitialProps.statusCode = err.statusCode;
|
|
|
|
errorInitialProps.title = err.name;
|
|
|
|
errorInitialProps.message = err.message;
|
|
|
|
errorInitialProps.err = err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
// Running on the server, the response object is available.
|
|
|
|
//
|
|
|
|
// Next.js will pass an err on the server if a page's `getInitialProps`
|
|
|
|
// threw or returned a Promise that rejected
|
|
|
|
|
|
|
|
// Overrides http status code if present in errorInitialProps
|
|
|
|
res.statusCode = errorInitialProps.statusCode;
|
|
|
|
|
|
|
|
log.debug(`server side logged this: ${err?.toString() ?? JSON.stringify(err)}`);
|
|
|
|
log.info("return props, ", errorInitialProps);
|
|
|
|
|
|
|
|
return errorInitialProps;
|
|
|
|
} else {
|
|
|
|
// 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's React Error
|
|
|
|
// Boundary. Read more about what types of exceptions are caught by Error
|
|
|
|
// Boundaries: https://reactjs.org/docs/error-boundaries.html
|
|
|
|
if (err) {
|
|
|
|
log.info("client side logged this", err);
|
|
|
|
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
|
|
|
|
new Error(`_error.tsx getInitialProps missing data at path: ${asPath}`);
|
|
|
|
|
|
|
|
return errorInitialProps;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default CustomError;
|