Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | 356x 207x 207x 207x 207x 207x 207x 207x 21x 16x 6x 6x 21x 22x 1x 2x 2x 2x 2x 1x 114x 1x 372x 1x 186x 1x 1x 114x 1x | import { ReactElement, useState } from "react";
import { SubmitHandler, useForm, useFormState } from "react-hook-form";
import { useTranslation } from "react-i18next";
import styled from "styled-components";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { Button, ButtonStyle } from "client/components/Button";
import { useAppDispatch } from "client/utils/hooks";
import { LoginErrorMessage, submitLogin } from "client/views/login/loginThunks";
import { ErrorMessage } from "client/components/ErrorMessage";
import { UncontrolledInput } from "client/components/UncontrolledInput";
export interface LoginFormFields {
username: string;
password: string;
}
export const LocalLoginForm = (): ReactElement => {
const dispatch = useAppDispatch();
const { t } = useTranslation();
const [passwordVisible, setPasswordVisible] = useState<boolean>(false);
const [serverError, setServerError] = useState<LoginErrorMessage | null>(
null,
);
const {
register,
handleSubmit,
formState: { errors },
control,
} = useForm<LoginFormFields>();
const { isSubmitting } = useFormState({
control,
});
const onSubmit: SubmitHandler<LoginFormFields> = async (
loginFormFields,
): Promise<void> => {
const errorMessage = await dispatch(submitLogin(loginFormFields));
if (errorMessage) {
setServerError(errorMessage);
return;
}
};
return (
<StyledForm onSubmit={handleSubmit(onSubmit)}>
<InputContainer>
<StyledLabel htmlFor="username">{t("username")}</StyledLabel>
<StyledInput
id="username"
{...register("username", {
required: t("validation.required"),
onChange: () => {
setServerError(null);
},
})}
type={"text"}
autoComplete="username"
data-testid={"login-form-input-username"}
/>
</InputContainer>
{errors.username && (
<FormFieldError>{errors.username.message}</FormFieldError>
)}
<InputContainer>
<StyledLabel htmlFor="password">{t("password")}</StyledLabel>
<FormRow>
<StyledInput
id="password"
{...register("password", {
required: t("validation.required"),
onChange: () => {
setServerError(null);
},
})}
type={passwordVisible ? "text" : "password"}
autoComplete="current-password"
data-testid={"login-form-input-password"}
/>
<FormFieldIcon>
<FontAwesomeIcon
icon={passwordVisible ? "eye-slash" : "eye"}
onClick={() => setPasswordVisible(!passwordVisible)}
aria-label={t(
passwordVisible
? "iconAltText.hidePassword"
: "iconAltText.showPassword",
)}
/>
</FormFieldIcon>
</FormRow>
</InputContainer>
{errors.password && (
<FormFieldError>{errors.password.message}</FormFieldError>
)}
<FormRow>
<Button
type="submit"
disabled={isSubmitting}
buttonStyle={ButtonStyle.PRIMARY}
data-testid="login-button"
>
{t("button.login")}
</Button>
</FormRow>
{serverError && (
<ErrorMessage
message={t(serverError)}
closeError={() => setServerError(null)}
/>
)}
</StyledForm>
);
};
const FormFieldError = styled.div`
display: flex;
background: ${(props) => props.theme.backgroundHighlight};
color: ${(props) => props.theme.textError};
width: 50%;
padding: 0 10px;
margin-top: -8px;
font-size: ${(props) => props.theme.fontSizeSmall};
@media (max-width: ${(props) => props.theme.breakpointPhone}) {
width: 100%;
}
`;
const StyledInput = styled(UncontrolledInput)`
width: min(260px, 100%);
@media (min-width: ${(props) => props.theme.breakpointDesktop}) {
width: 360px;
}
`;
const FormRow = styled.div`
align-items: center;
display: flex;
flex: 0 1 auto;
flex-direction: row;
justify-content: flex-start;
@media (max-width: ${(props) => props.theme.breakpointPhone}) {
width: 100%;
}
`;
const FormFieldIcon = styled.span`
font-size: ${(props) => props.theme.fontSizeLarge};
cursor: pointer;
`;
const StyledForm = styled.form`
display: flex;
gap: 16px;
flex-direction: column;
`;
const StyledLabel = styled.label`
padding: 0 0 2px 4px;
font-size: ${(props) => props.theme.fontSizeSmall};
`;
const InputContainer = styled.div`
display: flex;
flex-direction: column;
`;
|