import { useReducer, useEffect, memo } from "react"; import type { ReactNode } from "react"; import { useKcMessage } from "../i18n/useKcMessage"; import { useKcLanguageTag } from "../i18n/useKcLanguageTag"; import type { KcContextBase } from "../getKcContext/KcContextBase"; import { assert } from "../tools/assert"; import { cx } from "tss-react"; import type { KcLanguageTag } from "../i18n/KcLanguageTag"; import { getBestMatchAmongKcLanguageTag } from "../i18n/KcLanguageTag"; import { getKcLanguageTagLabel } from "../i18n/KcLanguageTag"; import { useCallbackFactory } from "powerhooks"; import { appendHead } from "../tools/appendHead"; import { join as pathJoin } from "path"; import { useConstCallback } from "powerhooks"; import type { KcTemplateProps } from "./KcProps"; export type TemplateProps = { displayInfo?: boolean; displayMessage?: boolean; displayRequiredFields?: boolean; displayWide?: boolean; showAnotherWayIfPresent?: boolean; headerNode: ReactNode; showUsernameNode?: ReactNode; formNode: ReactNode; infoNode?: ReactNode; /** If you write your own page you probably want * to avoid pulling the default theme assets. */ doFetchDefaultThemeResources: boolean; } & { kcContext: KcContextBase; } & KcTemplateProps; export const Template = memo((props: TemplateProps) => { const { displayInfo = false, displayMessage = true, displayRequiredFields = false, displayWide = false, showAnotherWayIfPresent = true, headerNode, showUsernameNode = null, formNode, infoNode = null, kcContext, doFetchDefaultThemeResources } = props; useEffect(() => { console.log("Rendering this page with react using keycloakify") }, []); const { msg } = useKcMessage(); const { kcLanguageTag, setKcLanguageTag } = useKcLanguageTag(); const onChangeLanguageClickFactory = useCallbackFactory( ([languageTag]: [KcLanguageTag]) => setKcLanguageTag(languageTag) ); const onTryAnotherWayClick = useConstCallback(() => (document.forms["kc-select-try-another-way-form" as never].submit(), false) ); const { realm, locale, auth, url, message, isAppInitiatedAction } = kcContext; useEffect(() => { if (!realm.internationalizationEnabled) { return; } assert(locale !== undefined); if (kcLanguageTag === getBestMatchAmongKcLanguageTag(locale.current)) { return; } window.location.href = locale.supported.find(({ languageTag }) => languageTag === kcLanguageTag)!.url; }, [kcLanguageTag]); const [isExtraCssLoaded, setExtraCssLoaded] = useReducer(() => true, false); useEffect(() => { if (!doFetchDefaultThemeResources) { setExtraCssLoaded(); return; } let isUnmounted = false; const cleanups: (() => void)[] = []; const toArr = (x: string | readonly string[] | undefined) => typeof x === "string" ? x.split(" ") : x ?? []; Promise.all( [ ...toArr(props.stylesCommon).map(relativePath => pathJoin(url.resourcesCommonPath, relativePath)), ...toArr(props.styles).map(relativePath => pathJoin(url.resourcesPath, relativePath)) ].map(href => appendHead({ "type": "css", href }))).then(() => { if (isUnmounted) { return; } setExtraCssLoaded(); }); toArr(props.scripts).forEach( relativePath => appendHead({ "type": "javascript", "src": pathJoin(url.resourcesPath, relativePath) }) ); if (props.kcHtmlClass !== undefined) { const htmlClassList = document.getElementsByTagName("html")[0] .classList; const tokens = cx(props.kcHtmlClass).split(" ") htmlClassList.add(...tokens); cleanups.push(() => htmlClassList.remove(...tokens)); } return () => { isUnmounted = true; cleanups.forEach(f => f()); }; }, [props.kcHtmlClass]); if (!isExtraCssLoaded) { return null; } return (
{msg("loginTitleHtml", realm.displayNameHtml)}
{ ( realm.internationalizationEnabled && (assert(locale !== undefined), true) && locale.supported.length > 1 ) && } { !( auth !== undefined && auth.showUsername && !auth.showResetCredentials ) ? ( displayRequiredFields ? (
* {msg("requiredFields")}

{headerNode}

) : (

{headerNode}

) ) : ( displayRequiredFields ? (
* {msg("requiredFields")}
{showUsernameNode}
{msg("restartLoginTooltip")}
) : ( <> {showUsernameNode}
{msg("restartLoginTooltip")}
) ) }
{/* App-initiated actions should not see warning messages about the need to complete the action during login. */} { ( displayMessage && message !== undefined && ( message.type !== "warning" || !isAppInitiatedAction ) ) &&
{message.type === "success" && } {message.type === "warning" && } {message.type === "error" && } {message.type === "info" && }
} {formNode} { ( auth !== undefined && auth.showTryAnotherWayLink && showAnotherWayIfPresent ) &&
} { displayInfo &&
{infoNode}
}
); });