All files / client/src/views/registration/components KonstiRegistrationForm.tsx

90.9% Statements 30/33
27.77% Branches 5/18
86.66% Functions 13/15
90.9% Lines 30/33

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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255                                                          356x 59x 59x   59x   59x             59x   59x       59x     6x       4x                                                       11x                                                           11x                                                                   11x                               10x                                                                     1x   2x         1x     45x         1x               1x   2x 2x   2x         1x 48x       1x           1x       1x 30x     1x        
import { ReactElement, useState } from "react";
import { SubmitHandler, useForm, useFormState } from "react-hook-form";
import { useTranslation } from "react-i18next";
import styled, { css } from "styled-components";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { Button, ButtonStyle } from "client/components/Button";
import { useAppDispatch } from "client/utils/hooks";
import {
  submitRegistration,
  RegistrationErrorMessage,
} from "client/views/registration/registrationThunks";
import {
  PASSWORD_LENGTH_MAX,
  PASSWORD_LENGTH_MIN,
  USERNAME_LENGTH_MAX,
  USERNAME_LENGTH_MIN,
} from "shared/constants/validation";
import { ErrorMessage } from "client/components/ErrorMessage";
import { UncontrolledInput } from "client/components/UncontrolledInput";
import { Checkbox } from "client/components/Checkbox";
import { PrivacyPolicy } from "client/components/PrivacyPolicy";
 
export interface KonstiRegistrationFormFields {
  password: string;
  username: string;
  registerDescription: boolean;
  serial: string;
}
 
export const KonstiRegistrationForm = (): ReactElement => {
  const dispatch = useAppDispatch();
  const { t } = useTranslation();
 
  const [passwordVisible, setPasswordVisible] = useState<boolean>(false);
  const [serverError, setServerError] =
    useState<RegistrationErrorMessage | null>(null);
 
  const {
    register,
    handleSubmit,
    formState: { errors },
    control,
  } = useForm<KonstiRegistrationFormFields>();
 
  const { isSubmitting } = useFormState({
    control,
  });
 
  const onSubmit: SubmitHandler<KonstiRegistrationFormFields> = async (
    registrationFormFields,
  ): Promise<void> => {
    const errorMessage = await dispatch(
      submitRegistration(registrationFormFields),
    );
    // eslint-disable-next-line @typescript-eslint/no-unused-expressions
    errorMessage && setServerError(errorMessage);
  };
 
  return (
    <div>
      <StyledForm onSubmit={handleSubmit(onSubmit)}>
        <InputContainer>
          <StyledLabel htmlFor="username">{t("username")}</StyledLabel>
          <InfomationLabel htmlFor="username">
            {t("registrationView.nickVisibleHintText")}
          </InfomationLabel>
          <StyledInput
            id="username"
            {...register("username", {
              required: t("validation.required"),
              minLength: {
                value: USERNAME_LENGTH_MIN,
                message: t("validation.tooShort", {
                  length: String(USERNAME_LENGTH_MIN),
                }),
              },
              maxLength: {
                value: USERNAME_LENGTH_MAX,
                message: t("validation.tooLong", {
                  length: String(USERNAME_LENGTH_MAX),
                }),
              },
              onChange: () => {
                setServerError(null);
              },
            })}
            type={"text"}
          />
        </InputContainer>
 
        {errors.username && (
          <FormFieldError>{errors.username.message}</FormFieldError>
        )}
 
        <InputContainer>
          <StyledLabel htmlFor="password">{t("password")}</StyledLabel>
          <FormRow>
            <StyledInput
              {...register("password", {
                required: t("validation.required"),
                minLength: {
                  value: PASSWORD_LENGTH_MIN,
                  message: t("validation.tooShort", {
                    length: String(PASSWORD_LENGTH_MIN),
                  }),
                },
                maxLength: {
                  value: PASSWORD_LENGTH_MAX,
                  message: t("validation.tooLong", {
                    length: String(PASSWORD_LENGTH_MAX),
                  }),
                },
                onChange: () => {
                  setServerError(null);
                },
              })}
              type={passwordVisible ? "text" : "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>
        )}
 
        <InputContainer>
          <StyledLabel htmlFor="serial">{t("serial")}</StyledLabel>
          <InfomationLabel htmlFor="serial">
            {t("registrationSerialHelp")}
          </InfomationLabel>
          <StyledInput
            id="serial"
            {...register("serial", {
              required: t("validation.required"),
              onChange: () => {
                setServerError(null);
              },
            })}
            type={"text"}
          />
        </InputContainer>
 
        {errors.serial && (
          <FormFieldError>{errors.serial.message}</FormFieldError>
        )}
 
        <FormRow>
          <Checkbox
            {...register("registerDescription", {
              required: t("validation.required"),
              onChange: () => {
                setServerError(null);
              },
            })}
            id={"registerDescriptionCheckbox"}
            label={t("agreePrivacyPolicy")}
          />
        </FormRow>
 
        {errors.registerDescription && (
          <FormFieldError>{errors.registerDescription.message}</FormFieldError>
        )}
 
        <PrivacyPolicy />
 
        <FormRow>
          <Button
            disabled={isSubmitting}
            type="submit"
            buttonStyle={ButtonStyle.PRIMARY}
          >
            {t("button.register")}
          </Button>
        </FormRow>
 
        {serverError && (
          <ErrorMessage
            message={t(serverError)}
            closeError={() => setServerError(null)}
          />
        )}
      </StyledForm>
    </div>
  );
};
 
const widthDefinition = css`
  width: 50%;
  @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;
`;
 
const FormFieldError = styled.div`
  display: flex;
  background: ${(props) => props.theme.backgroundHighlight};
  color: ${(props) => props.theme.textError};
  padding: 0 0 4px 10px;
  font-size: ${(props) => props.theme.fontSizeSmaller};
  margin-top: -8px;
  ${widthDefinition}
`;
 
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;
`;
 
const InfomationLabel = styled(StyledLabel)`
  color: ${(props) => props.theme.textSecondary};
`;
 
const InputContainer = styled.div`
  display: flex;
  flex-direction: column;
`;