49 lines
No EOL
1.9 KiB
TypeScript
49 lines
No EOL
1.9 KiB
TypeScript
import React from "react";
|
|
import {assert} from "keycloakify/lib/tools/assert";
|
|
import type {PageProps} from "keycloakify";
|
|
import type {KcContext} from "../kcContext";
|
|
import type {I18n} from "../i18n";
|
|
|
|
export default function Info(props: PageProps<Extract<KcContext, { pageId: "info.ftl" }>, I18n>) {
|
|
const {kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps} = props;
|
|
|
|
const {msgStr, msg} = i18n;
|
|
|
|
assert(kcContext.message !== undefined);
|
|
|
|
const {messageHeader, message, requiredActions, skipLink, pageRedirectUri, actionUri, client} = kcContext;
|
|
|
|
return (
|
|
<Template
|
|
{...{kcContext, i18n, doFetchDefaultThemeResources, ...kcProps}}
|
|
displayMessage={false}
|
|
headerNode={messageHeader !== undefined ? <>{messageHeader}</> : <>{message.summary}</>}
|
|
formNode={
|
|
<div id="kc-info-message">
|
|
<p className="instruction">
|
|
{message.summary}
|
|
|
|
{requiredActions !== undefined && (
|
|
<b>{requiredActions.map(requiredAction => msgStr(`requiredAction.${requiredAction}` as const)).join(",")}</b>
|
|
)}
|
|
</p>
|
|
{!skipLink && pageRedirectUri !== undefined ? (
|
|
<p>
|
|
<a href={pageRedirectUri}>{msg("backToApplication")}</a>
|
|
</p>
|
|
) : actionUri !== undefined ? (
|
|
<p>
|
|
<a href={actionUri}>{msg("proceedWithAction")}</a>
|
|
</p>
|
|
) : (
|
|
client.baseUrl !== undefined && (
|
|
<p>
|
|
<a href={client.baseUrl}>{msg("backToApplication")}</a>
|
|
</p>
|
|
)
|
|
)}
|
|
</div>
|
|
}
|
|
/>
|
|
);
|
|
} |