import Head from "next/head";
import {
GraphQLErrorPagesService,
SitecoreContext,
ErrorPages,
} from "@sitecore-jss/sitecore-jss-nextjs";
import { SitecorePageProps } from "lib/page-props";
import Layout from "src/Layout";
import { componentFactory } from "temp/componentFactory";
import { GetStaticProps } from "next";
import config from "temp/config";
import { siteResolver } from "lib/site-resolver";
/**
* Rendered in case if we have 500 error
*/
const ServerError = (): JSX.Element => (
<>
500: Server Error
500 Internal Server Error
There is a problem with the resource you are looking for, and it cannot
be displayed.
Go to the Home page
>
);
const Custom500 = (props: SitecorePageProps): JSX.Element => {
if (!(props && props.layoutData)) {
return ;
}
return (
);
};
export const getStaticProps: GetStaticProps = async (context) => {
const site = siteResolver.getByName(config.jssAppName);
const errorPagesService = new GraphQLErrorPagesService({
endpoint: config.graphQLEndpoint,
apiKey: config.sitecoreApiKey,
siteName: site.name,
language: context.locale || context.defaultLocale || config.defaultLanguage,
});
let resultErrorPages: ErrorPages | null = null;
if (!process.env.DISABLE_SSG_FETCH) {
try {
resultErrorPages = await errorPagesService.fetchErrorPages();
} catch (error) {
console.log("Error occurred while fetching error pages");
console.log(error);
}
}
return {
props: {
layoutData: resultErrorPages?.serverErrorPage?.rendered || null,
},
};
};
export default Custom500;