All files / src/pages email.tsx

42.22% Statements 19/45
35% Branches 7/20
14.28% Functions 2/14
50% Lines 19/38

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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346                                                              1x               1x                     1x                   1x 3x   3x 3x               2x                 2x                                       2x   2x               2x             2x   2x   2x         2x                     2x   2x                                                                                                                                                                                                                                                                                                                                                                                                           1x              
import { MouseEventHandler, useCallback, useMemo, useState } from 'react'
 
import { useFormik, validateYupSchema, yupToFormErrors } from 'formik'
import { GetServerSideProps } from 'next'
import { Trans, useTranslation } from 'next-i18next'
import { NextSeo } from 'next-seo'
import { useRouter } from 'next/router'
import * as Yup from 'yup'
 
import ActionButton from '../components/ActionButton'
import AlertBlock from '../components/AlertBlock'
import Collapse from '../components/Collapse'
import DateSelectField, {
  DateSelectFieldOnChangeEvent,
} from '../components/DateSelectField'
import ErrorSummary, {
  ErrorSummaryItem,
  getErrorSummaryItems,
  goToErrorSummary,
} from '../components/ErrorSummary'
import ExternalLink from '../components/ExternalLink'
import IdleTimeout from '../components/IdleTimeout'
import InputField from '../components/InputField'
import Layout from '../components/Layout'
import LinkButton from '../components/LinkButton'
import Modal from '../components/Modal'
import { EmailEsrfApiRequestBody } from '../lib/types'
import useEmailEsrf from '../lib/useEmailEsrf'
import { pageWithServerSideTranslations } from '../lib/utils/next-i18next-utils'
import { getDCTermsTitle } from '../lib/utils/seo-utils'
 
const initialValues: EmailEsrfApiRequestBody = {
  dateOfBirth: '',
  email: '',
  givenName: '',
  locale: '',
  surname: '',
}
 
const validationSchema = Yup.object({
  email: Yup.string()
    .required('email.error.required')
    .email('email.error.valid'),
  givenName: Yup.string().required('given-name.error.required'),
  surname: Yup.string().required('surname.error.required'),
  dateOfBirth: Yup.date()
    .required('date-of-birth.error.required')
    .max(new Date(), 'date-of-birth.error.current'),
})
 
const scrollToHeading = () => {
  setTimeout(() => {
    const heading =
      document.querySelector<HTMLHeadingElement>('h1[tabIndex="-1"]')
    if (!heading) return
    heading.scrollIntoView({ behavior: 'smooth', block: 'center' })
    heading.focus()
  }, 300)
}
 
const Email = () => {
  const { t } = useTranslation(['email', 'common'])
 
  const router = useRouter()
  const [modalOpen, setModalOpen] = useState(false)
 
  const {
    error: emailEsrfError,
    isPending: isEmailEsrfPending,
    isSuccess: isEmailEsrfSuccess,
    mutate: emailEsrf,
    reset: resetEmailEsrf,
  } = useEmailEsrf({ onSuccess: () => scrollToHeading() })
 
  const {
    errors: formikErrors,
    handleChange: handleFormikChange,
    handleSubmit: handleFormikSubmit,
    setFieldValue: setFormikFieldValue,
    resetForm: resetFormik,
    values: formikValues,
  } = useFormik<EmailEsrfApiRequestBody>({
    initialValues,
    onSubmit: (values) =>
      emailEsrf({ ...values, locale: router.locale ?? 'en' }),
    validate: async (values) => {
      // manually validate with yup, scroll and focus error summary section element on errors
      try {
        await validateYupSchema(values, validationSchema)
        // empty errors
        return {}
      } catch (yupError) {
        goToErrorSummary('error-summary-email-esrf')
        return yupToFormErrors(yupError)
      }
    },
    validateOnBlur: false,
    validateOnChange: false,
    validateOnMount: false,
  })
 
  const errorSummaryItems = useMemo<ErrorSummaryItem[]>(
    () =>
      getErrorSummaryItems(formikErrors, t).map((item) => {
        if (item.feildId !== 'dateOfBirth') return item
        // field id should target the year select input
        return { ...item, feildId: 'dateOfBirth-year' }
      }),
    [formikErrors, t],
  )
 
  const handleOnDateOfBirthChange: DateSelectFieldOnChangeEvent = useCallback(
    (dateString) => {
      setFormikFieldValue('dateOfBirth', dateString)
    },
    [setFormikFieldValue],
  )
 
  const handleOnCancelClick = useCallback(() => setModalOpen(true), [])
 
  const handleOnModalClose = useCallback(() => setModalOpen(false), [])
 
  const handleOnModalYesButtonClick = useCallback(() => {
    router.push('/landing')
  }, [router])
 
  const handleOnNewFileRequest: MouseEventHandler<HTMLButtonElement> =
    useCallback(
      (e) => {
        e.preventDefault()
        resetFormik()
        resetEmailEsrf()
        scrollToHeading()
      },
      [resetEmailEsrf, resetFormik],
    )
 
  //if the api failed, fail hard to show error page
  Iif (emailEsrfError) throw emailEsrfError
 
  return (
    <Layout>
      <NextSeo
        title={t('header')}
        additionalMetaTags={[getDCTermsTitle(t('header'))]}
      />
      <IdleTimeout />
 
      {isEmailEsrfSuccess ? (
        <div id="response-result">
          <AlertBlock page="email" />
          <h1 id="main-header" className="h1" tabIndex={-1}>
            {t('email-confirmation-msg.request-received.header')}
          </h1>
          <div className="max-w-prose">
            <p>
              <Trans
                i18nKey="email-confirmation-msg.request-received.will-email"
                ns="email"
              />
            </p>
            <p>
              <Trans
                i18nKey="email-confirmation-msg.request-received.once-received"
                ns="email"
              />
            </p>
            <div className="my-8 sm:w-full md:w-fit">
              <LinkButton
                href="/status"
                fullWidth
                id="enter-reference-number"
                style="primary"
              >
                {t('enter-reference-number')}
              </LinkButton>
            </div>
            <h2 className="h2 mt-16">
              {t('email-confirmation-msg.dont-receive-header')}
            </h2>
            <p>{t('email-confirmation-msg.dont-receive')}</p>
            <ul className="mb-5 list-disc space-y-2 pl-10">
              <li>
                <Trans
                  i18nKey="email-confirmation-msg.dont-receive-list.item-1"
                  ns="email"
                />
              </li>
              <li>{t('email-confirmation-msg.dont-receive-list.item-2')}</li>
            </ul>
            <div className="my-8 sm:w-full md:w-fit">
              <ActionButton
                id="get-another-file-number"
                type="button"
                text={t('request-another')}
                onClick={handleOnNewFileRequest}
                fullWidth
              />
            </div>
            <p className="mt-16">{t('email-confirmation-msg.may-take')}</p>
            <p>
              <Trans
                i18nKey={'email-confirmation-msg.please-contact'}
                ns="email"
                components={{
                  Link: <ExternalLink href={t('common:contact-us-link')} />,
                }}
              />
            </p>
          </div>
        </div>
      ) : (
        <div>
          <AlertBlock page="email" />
          <h1 id="main-header" className="h1" tabIndex={-1}>
            {t('header')}
          </h1>
          <form onSubmit={handleFormikSubmit} id="form-email-esrf" noValidate>
            <p>
              <Trans i18nKey="header-messages.required" ns="email" />
            </p>
 
            {errorSummaryItems.length > 0 && (
              <ErrorSummary
                id="error-summary-email-esrf"
                summary={t('common:found-errors', {
                  count: errorSummaryItems.length,
                })}
                errors={errorSummaryItems}
              />
            )}
 
            <InputField
              id="email"
              name="email"
              type="email"
              label={t('email.label')}
              onChange={handleFormikChange}
              value={formikValues.email}
              errorMessage={formikErrors.email && t(formikErrors.email as any)}
              textRequired={t('common:required')}
              required
              helpMessage={t('email.help-message')}
              extraContent={
                <Collapse title={t('email.for-child.title')} variant="slim">
                  <p className="border-l-[6px] border-gray-400 pl-6 text-base text-gray-600">
                    <Trans i18nKey="email.for-child.help-message" ns="email" />
                  </p>
                </Collapse>
              }
            />
            <InputField
              id="givenName"
              name="givenName"
              label={t('given-name.label')}
              onChange={handleFormikChange}
              value={formikValues.givenName}
              errorMessage={
                formikErrors.givenName && t(formikErrors.givenName as any)
              }
              textRequired={t('common:required')}
              required
              helpMessage={
                <Trans i18nKey="given-name.help-message" ns="email" />
              }
              extraContent={
                <Collapse title={t('given-name.title')} variant="slim">
                  <p className="border-l-[6px] border-gray-400 pl-6 text-base text-gray-600">
                    <Trans i18nKey="one-name" ns="email" />
                  </p>
                </Collapse>
              }
            />
            <InputField
              id="surname"
              name="surname"
              label={t('surname.label')}
              onChange={handleFormikChange}
              value={formikValues.surname}
              errorMessage={
                formikErrors.surname && t(formikErrors.surname as any)
              }
              textRequired={t('common:required')}
              required
              helpMessage={<Trans i18nKey="surname.help-message" ns="email" />}
            />
            <DateSelectField
              id="dateOfBirth"
              label={t('date-of-birth.label')}
              onChange={handleOnDateOfBirthChange}
              value={formikValues.dateOfBirth}
              errorMessage={
                formikErrors.dateOfBirth && t(formikErrors.dateOfBirth as any)
              }
              textRequired={t('common:required')}
              required
              helpMessage={t('date-of-birth.help-message')}
            />
            <div className="mt-8 flex flex-wrap gap-2">
              <ActionButton
                id="btn-submit"
                disabled={isEmailEsrfPending}
                type="submit"
                text={t('email-esrf')}
                style="primary"
              />
              <ActionButton
                id="btn-cancel"
                disabled={isEmailEsrfPending}
                text={t('common:modal-go-back.back-button')}
                onClick={handleOnCancelClick}
              />
            </div>
          </form>
        </div>
      )}
      <Modal
        open={modalOpen}
        onClose={handleOnModalClose}
        actionButtons={[
          {
            text: t('common:modal-go-back.yes-button'),
            onClick: handleOnModalYesButtonClick,
            style: 'primary',
          },
          {
            text: t('common:modal-go-back.no-button'),
            onClick: handleOnModalClose,
          },
        ]}
        header={t('common:modal-go-back.header')}
      >
        <p>{t('common:modal-go-back.description')}</p>
      </Modal>
    </Layout>
  )
}
 
export const getServerSideProps: GetServerSideProps = async ({ locale }) => ({
  props: {
    ...(await pageWithServerSideTranslations(locale, 'email')),
  },
})
 
export default Email