44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
/* eslint-disable react-refresh/only-export-components */
|
|
import { createRoot } from "react-dom/client";
|
|
import { StrictMode, lazy, Suspense } from "react";
|
|
|
|
// The following block can be uncommented to test a specific page with `yarn dev`
|
|
// Don't forget to comment back or your bundle size will increase
|
|
/*
|
|
import { getKcContextMock } from "./login/KcPageStory";
|
|
|
|
if (import.meta.env.DEV) {
|
|
window.kcContext = getKcContextMock({
|
|
pageId: "register.ftl",
|
|
overrides: {}
|
|
});
|
|
}
|
|
*/
|
|
|
|
const KcLoginThemePage = lazy(() => import("./login/KcPage"));
|
|
const KcAccountThemePage = lazy(() => import("./account/KcPage"));
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<Suspense>
|
|
{(() => {
|
|
switch (window.kcContext?.themeType) {
|
|
case "login":
|
|
return <KcLoginThemePage kcContext={window.kcContext} />;
|
|
case "account":
|
|
return <KcAccountThemePage kcContext={window.kcContext} />;
|
|
}
|
|
return <h1>No Keycloak Context</h1>;
|
|
})()}
|
|
</Suspense>
|
|
</StrictMode>
|
|
);
|
|
|
|
declare global {
|
|
interface Window {
|
|
kcContext?:
|
|
| import("./login/KcContext").KcContext
|
|
| import("./account/KcContext").KcContext;
|
|
}
|
|
}
|