2024-05-11 01:30:23 +02:00
|
|
|
import { useState, useEffect, useReducer } from "react";
|
2023-03-18 06:14:05 +01:00
|
|
|
import { clsx } from "keycloakify/tools/clsx";
|
2024-05-11 01:30:23 +02:00
|
|
|
import { assert } from "tsafe/assert";
|
2023-03-21 05:27:31 +01:00
|
|
|
import { useGetClassName } from "keycloakify/login/lib/useGetClassName";
|
2024-06-05 21:13:58 +02:00
|
|
|
import type { PageProps } from "keycloakify/login/pages/PageProps";
|
|
|
|
import type { KcContext } from "../KcContext";
|
2023-03-18 18:54:33 +01:00
|
|
|
import type { I18n } from "../i18n";
|
2022-10-04 15:01:08 -04:00
|
|
|
|
2024-05-11 16:24:13 +02:00
|
|
|
export default function LoginPassword(props: PageProps<Extract<KcContext, { pageId: "login-password.ftl" }>, I18n>) {
|
2023-03-18 06:14:05 +01:00
|
|
|
const { kcContext, i18n, doUseDefaultCss, Template, classes } = props;
|
|
|
|
|
|
|
|
const { getClassName } = useGetClassName({
|
2023-03-21 05:27:31 +01:00
|
|
|
doUseDefaultCss,
|
2023-03-18 06:14:05 +01:00
|
|
|
classes
|
|
|
|
});
|
2022-10-04 15:01:08 -04:00
|
|
|
|
2024-05-11 01:30:23 +02:00
|
|
|
const { realm, url, messagesPerField } = kcContext;
|
2022-10-04 15:01:08 -04:00
|
|
|
|
2022-10-13 11:58:31 +02:00
|
|
|
const { msg, msgStr } = i18n;
|
2022-10-04 15:01:08 -04:00
|
|
|
|
2022-10-13 11:58:31 +02:00
|
|
|
const [isLoginButtonDisabled, setIsLoginButtonDisabled] = useState(false);
|
2022-10-04 15:01:08 -04:00
|
|
|
|
2022-10-13 11:58:31 +02:00
|
|
|
return (
|
2024-05-11 01:30:23 +02:00
|
|
|
<Template
|
|
|
|
{...{ kcContext, i18n, doUseDefaultCss, classes }}
|
|
|
|
headerNode={msg("doLogIn")}
|
|
|
|
displayMessage={!messagesPerField.existsError("password")}
|
|
|
|
>
|
2023-03-21 02:36:13 +01:00
|
|
|
<div id="kc-form">
|
|
|
|
<div id="kc-form-wrapper">
|
2024-05-11 01:30:23 +02:00
|
|
|
<form
|
|
|
|
id="kc-form-login"
|
|
|
|
onSubmit={() => {
|
|
|
|
setIsLoginButtonDisabled(true);
|
|
|
|
return true;
|
|
|
|
}}
|
|
|
|
action={url.loginAction}
|
|
|
|
method="post"
|
|
|
|
>
|
|
|
|
<div className={clsx(getClassName("kcFormGroupClass"), "no-bottom-margin")}>
|
2023-03-21 02:36:13 +01:00
|
|
|
<hr />
|
|
|
|
<label htmlFor="password" className={getClassName("kcLabelClass")}>
|
|
|
|
{msg("password")}
|
|
|
|
</label>
|
2024-05-11 01:30:23 +02:00
|
|
|
|
|
|
|
<PasswordWrapper getClassName={getClassName} i18n={i18n} passwordInputId="password">
|
|
|
|
<input
|
|
|
|
tabIndex={2}
|
|
|
|
id="password"
|
|
|
|
className={getClassName("kcInputClass")}
|
|
|
|
name="password"
|
|
|
|
type="password"
|
|
|
|
autoFocus
|
|
|
|
autoComplete="on"
|
|
|
|
aria-invalid={messagesPerField.existsError("username", "password")}
|
|
|
|
/>
|
|
|
|
</PasswordWrapper>
|
|
|
|
|
|
|
|
{messagesPerField.existsError("password") && (
|
|
|
|
<span id="input-error-password" className={getClassName("kcInputErrorMessageClass")} aria-live="polite">
|
|
|
|
{messagesPerField.get("password")}
|
|
|
|
</span>
|
|
|
|
)}
|
2023-03-21 02:36:13 +01:00
|
|
|
</div>
|
|
|
|
<div className={clsx(getClassName("kcFormGroupClass"), getClassName("kcFormSettingClass"))}>
|
|
|
|
<div id="kc-form-options" />
|
|
|
|
<div className={getClassName("kcFormOptionsWrapperClass")}>
|
|
|
|
{realm.resetPasswordAllowed && (
|
|
|
|
<span>
|
|
|
|
<a tabIndex={5} href={url.loginResetCredentialsUrl}>
|
|
|
|
{msg("doForgotPassword")}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
)}
|
2022-10-13 11:58:31 +02:00
|
|
|
</div>
|
2023-03-21 02:36:13 +01:00
|
|
|
</div>
|
|
|
|
<div id="kc-form-buttons" className={getClassName("kcFormGroupClass")}>
|
|
|
|
<input
|
|
|
|
tabIndex={4}
|
|
|
|
className={clsx(
|
|
|
|
getClassName("kcButtonClass"),
|
|
|
|
getClassName("kcButtonPrimaryClass"),
|
|
|
|
getClassName("kcButtonBlockClass"),
|
|
|
|
getClassName("kcButtonLargeClass")
|
|
|
|
)}
|
|
|
|
name="login"
|
|
|
|
id="kc-login"
|
|
|
|
type="submit"
|
|
|
|
value={msgStr("doLogIn")}
|
|
|
|
disabled={isLoginButtonDisabled}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</form>
|
2022-10-13 11:58:31 +02:00
|
|
|
</div>
|
2023-03-21 02:36:13 +01:00
|
|
|
</div>
|
|
|
|
</Template>
|
2022-10-13 11:58:31 +02:00
|
|
|
);
|
2023-02-25 18:11:23 +01:00
|
|
|
}
|
2024-05-11 01:30:23 +02:00
|
|
|
|
|
|
|
function PasswordWrapper(props: {
|
|
|
|
getClassName: ReturnType<typeof useGetClassName>["getClassName"];
|
|
|
|
i18n: I18n;
|
|
|
|
passwordInputId: string;
|
|
|
|
children: JSX.Element;
|
|
|
|
}) {
|
|
|
|
const { getClassName, i18n, passwordInputId, children } = props;
|
|
|
|
|
|
|
|
const { msgStr } = i18n;
|
|
|
|
|
|
|
|
const [isPasswordRevealed, toggleIsPasswordRevealed] = useReducer((isPasswordRevealed: boolean) => !isPasswordRevealed, false);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const passwordInputElement = document.getElementById(passwordInputId);
|
|
|
|
|
|
|
|
assert(passwordInputElement instanceof HTMLInputElement);
|
|
|
|
|
|
|
|
passwordInputElement.type = isPasswordRevealed ? "text" : "password";
|
|
|
|
}, [isPasswordRevealed]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={getClassName("kcInputGroup")}>
|
|
|
|
{children}
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className={getClassName("kcFormPasswordVisibilityButtonClass")}
|
|
|
|
aria-label={msgStr(isPasswordRevealed ? "hidePassword" : "showPassword")}
|
|
|
|
aria-controls={passwordInputId}
|
|
|
|
onClick={toggleIsPasswordRevealed}
|
|
|
|
>
|
|
|
|
<i
|
|
|
|
className={getClassName(isPasswordRevealed ? "kcFormPasswordVisibilityIconHide" : "kcFormPasswordVisibilityIconShow")}
|
|
|
|
aria-hidden
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|