74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import { DefaultLayout } from "@Front/Components/LayoutTemplates/DefaultLayout";
|
|
import { FrontendVariables } from "@Front/Config/VariablesFront";
|
|
import "@Front/index.scss";
|
|
import type { NextPage } from "next";
|
|
import type { AppType, AppProps } from "next/app";
|
|
import type { ReactElement, ReactNode } from "react";
|
|
|
|
export type NextPageWithLayout<TProps = Record<string, unknown>, TInitialProps = TProps> = NextPage<TProps, TInitialProps> & {
|
|
getLayout?: (page: ReactElement) => ReactNode;
|
|
};
|
|
|
|
type AppPropsWithLayout = AppProps & {
|
|
Component: NextPageWithLayout;
|
|
} & {
|
|
backApiProtocol: string;
|
|
backApiHost: string;
|
|
backApiRootUrl: string;
|
|
backApiVersion: string;
|
|
frontAppHost: string;
|
|
frontAppPort: string;
|
|
idNotAuthorizeEndpoint: string;
|
|
idNotClientId: string;
|
|
fcAuthorizeEndpoint: string;
|
|
fcClientId: string;
|
|
};
|
|
|
|
const MyApp = (({
|
|
Component,
|
|
pageProps,
|
|
backApiProtocol,
|
|
backApiHost,
|
|
backApiRootUrl,
|
|
backApiVersion,
|
|
frontAppHost,
|
|
frontAppPort,
|
|
idNotAuthorizeEndpoint,
|
|
idNotClientId,
|
|
fcAuthorizeEndpoint,
|
|
fcClientId
|
|
}: AppPropsWithLayout) => {
|
|
const getLayout = Component.getLayout ?? ((page) => <DefaultLayout children={page}></DefaultLayout>);
|
|
|
|
const instance = FrontendVariables.getInstance();
|
|
instance.BACK_API_PROTOCOL = backApiProtocol;
|
|
instance.BACK_API_HOST = backApiHost;
|
|
instance.BACK_API_ROOT_URL = backApiRootUrl;
|
|
instance.BACK_API_VERSION = backApiVersion;
|
|
instance.FRONT_APP_HOST = frontAppHost;
|
|
instance.FRONT_APP_PORT = frontAppPort;
|
|
instance.IDNOT_AUTHORIZE_ENDPOINT = idNotAuthorizeEndpoint;
|
|
instance.IDNOT_CLIENT_ID = idNotClientId;
|
|
instance.FC_AUTHORIZE_ENDPOINT= fcAuthorizeEndpoint;
|
|
instance.FC_CLIENT_ID = fcClientId
|
|
|
|
return getLayout(<Component {...pageProps} />);
|
|
}) as AppType;
|
|
|
|
MyApp.getInitialProps = async () => {
|
|
return {
|
|
backApiProtocol: process.env["NEXT_PUBLIC_BACK_API_PROTOCOL"],
|
|
backApiHost: process.env["NEXT_PUBLIC_BACK_API_HOST"],
|
|
backApiRootUrl: process.env["NEXT_PUBLIC_BACK_API_ROOT_URL"],
|
|
backApiVersion: process.env["NEXT_PUBLIC_BACK_API_VERSION"],
|
|
frontAppHost: process.env["NEXT_PUBLIC_FRONT_APP_HOST"],
|
|
frontAppPort: process.env["NEXT_PUBLIC_FRONT_APP_PORT"],
|
|
idNotAuthorizeEndpoint: process.env["NEXT_PUBLIC_IDNOT_AUTHORIZE_ENDPOINT"],
|
|
idNotClientId: process.env["NEXT_PUBLIC_IDNOT_CLIENT_ID"],
|
|
fcAuthorizeEndpoint: process.env["NEXT_PUBLIC_FC_AUTHORIZE_ENDPOINT"],
|
|
fcClientId: process.env["NEXT_PUBLIC_FC_CLIENT_ID"]
|
|
};
|
|
};
|
|
|
|
export default MyApp;
|