import "./KcApp.css"; import { lazy, Suspense } from "react"; import type { KcContext } from "./kcContext"; import { useI18n } from "./i18n"; import Fallback, { defaultKcProps, type KcProps, type PageProps } from "keycloakify"; import Template from "./Template"; import DefaultTemplate from "keycloakify/lib/Template"; const Login = lazy(()=> import("./pages/Login")); // If you can, favor register-user-profile.ftl over register.ftl, see: https://docs.keycloakify.dev/realtime-input-validation const Register = lazy(() => import("./pages/Register")); const Terms = lazy(() => import("./pages/Terms")); const MyExtraPage1 = lazy(() => import("./pages/MyExtraPage1")); const MyExtraPage2 = lazy(() => import("./pages/MyExtraPage2")); const Info = lazy(()=> import("keycloakify/lib/pages/Info")); // This is like editing the theme.properties // https://github.com/keycloak/keycloak/blob/11.0.3/themes/src/main/resources/theme/keycloak/login/theme.properties const kcProps: KcProps = { ...defaultKcProps, // NOTE: The classes are defined in ./KcApp.css "kcHeaderWrapperClass": "my-color my-font", "kcHtmlClass": [...defaultKcProps.kcHtmlClass, "my-root-class"], }; export default function App(props: { kcContext: KcContext; }) { const { kcContext } = props; const i18n = useI18n({ kcContext }); //NOTE: Locales not yet downloaded if (i18n === null) { return null; } const pageProps: Omit, "kcContext"> = { i18n, // Here we have overloaded the default template, however you could use the default one with: //Template: DefaultTemplate, Template, // Wether or not we should download the CSS and JS resources that comes with the default Keycloak theme. doFetchDefaultThemeResources: true, ...kcProps, }; return ( {(() => { switch (kcContext.pageId) { case "login.ftl": return ; case "register.ftl": return ; case "terms.ftl": return ; case "my-extra-page-1.ftl": return ; case "my-extra-page-2.ftl": return ; // We choose to use the default Template for the Info page and to download the theme resources. case "info.ftl": return ; default: return ; } })()} ); }