47 lines
No EOL
2.2 KiB
TypeScript
47 lines
No EOL
2.2 KiB
TypeScript
import React, { useState } from "react";
|
|
import { clsx } from "keycloakify/lib/tools/clsx";
|
|
import { UserProfileFormFields } from "keycloakify/lib/pages/shared/UserProfileCommons";
|
|
import type { PageProps } from "keycloakify";
|
|
import type { KcContext } from "../kcContext";
|
|
import type { I18n } from "../i18n";
|
|
|
|
export default function IdpReviewUserProfile(props: PageProps<Extract<KcContext, { pageId: "idp-review-user-profile.ftl" }>, I18n>) {
|
|
const { kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps } = props;
|
|
|
|
const { msg, msgStr } = i18n;
|
|
|
|
const { url } = kcContext;
|
|
|
|
const [isFomSubmittable, setIsFomSubmittable] = useState(false);
|
|
|
|
return (
|
|
<Template
|
|
{...{ kcContext, i18n, doFetchDefaultThemeResources, ...kcProps }}
|
|
headerNode={msg("loginIdpReviewProfileTitle")}
|
|
formNode={
|
|
<form id="kc-idp-review-profile-form" className={clsx(kcProps.kcFormClass)} action={url.loginAction} method="post">
|
|
<UserProfileFormFields kcContext={kcContext} onIsFormSubmittableValueChange={setIsFomSubmittable} i18n={i18n} {...kcProps} />
|
|
|
|
<div className={clsx(kcProps.kcFormGroupClass)}>
|
|
<div id="kc-form-options" className={clsx(kcProps.kcFormOptionsClass)}>
|
|
<div className={clsx(kcProps.kcFormOptionsWrapperClass)} />
|
|
</div>
|
|
<div id="kc-form-buttons" className={clsx(kcProps.kcFormButtonsClass)}>
|
|
<input
|
|
className={clsx(
|
|
kcProps.kcButtonClass,
|
|
kcProps.kcButtonPrimaryClass,
|
|
kcProps.kcButtonBlockClass,
|
|
kcProps.kcButtonLargeClass
|
|
)}
|
|
type="submit"
|
|
value={msgStr("doSubmit")}
|
|
disabled={!isFomSubmittable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
}
|
|
/>
|
|
);
|
|
} |