All files / src/components/check-status-responses CheckStatusFileBeingProcessed.tsx

100% Statements 6/6
66.66% Branches 8/12
100% Functions 1/1
100% Lines 6/6

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                    2x       2x               2x   2x   2x   2x                                                                                                                                                                                                                  
import { Trans, useTranslation } from 'next-i18next'
 
import { DeliveryMethodCode, ServiceLevelCode } from '../../lib/types'
import { formatDate } from '../../lib/utils/dates'
import { StatusResultProps } from '../../pages/status'
import ActionButton from '../ActionButton'
import AlertBlock from '../AlertBlock'
import ExternalLink from '../ExternalLink'
import Timeline from '../Timeline'
 
export const CheckStatusFileBeingProcessed = ({
  displayData,
  checkAnotherHandler,
}: StatusResultProps) => {
  const { t, i18n } = useTranslation(['status', 'common'])
 
  const {
    deliveryMethod,
    receivedDate,
    serviceLevel,
    timelineExists,
    timelineData,
  } = displayData
 
  const serviceDays = serviceLevel === ServiceLevelCode.TEN_DAYS ? '10' : '20'
 
  const formattedDate = formatDate(receivedDate, i18n.language)
 
  return (
    <div id="response-result">
      <AlertBlock page="status-processing" />
      <h1
        id="main-header"
        data-testid="being-processed"
        className="h1"
        tabIndex={-1}
      >
        {t('being-processed.reviewing-application')}
      </h1>
      <div className="flex flex-col sm:flex-row">
        <div className="max-w-prose">
          <p>
            <Trans
              i18nKey={'being-processed.processing-details'}
              ns="status"
              values={{
                reviewDays:
                  serviceLevel === ServiceLevelCode.TEN_DAYS ? '7' : '15',
                printDays:
                  serviceLevel === ServiceLevelCode.TEN_DAYS ? '3' : '5',
              }}
            />
          </p>
          <p>
            <Trans
              i18nKey={'being-processed.completion-status'}
              ns="status"
              values={{
                serviceLevel: serviceDays,
              }}
            />
          </p>
          {deliveryMethod === DeliveryMethodCode.IN_PERSON && (
            <p>{t('status:being-processed.urgent-service-note')}</p>
          )}
          {timelineExists && (
            <div className="flex w-full justify-center sm:hidden">
              <Timeline entries={timelineData} />
            </div>
          )}
          <h2 className="h2 mb-2 mt-8">
            {t('being-processed.service-standards.heading')}
          </h2>
          <p>
            <Trans
              i18nKey={'being-processed.service-standards.received-date'}
              ns="status"
              values={{
                receivedDate: formattedDate,
                serviceLevel: serviceDays,
              }}
            />
          </p>
          <p>
            {t('status:being-processed.service-standards.refund-eligibility')}
          </p>
          <h2 className="h2 mb-2 mt-8">
            {t('being-processed.expedited-service.heading')}
          </h2>
          <p>
            <Trans
              i18nKey={'being-processed.expedited-service.details'}
              ns="status"
              components={{
                Link: (
                  <ExternalLink
                    href={t('status-check-urgent.express-services-href')}
                  />
                ),
              }}
              values={{ serviceLevel: serviceDays }}
            />
          </p>
          <h2 className="h2 mb-2 mt-8">
            {t('status:being-processed.incomplete-applications.heading')}
          </h2>
          <p>
            {t('status:being-processed.incomplete-applications.description')}
          </p>
          <p>
            {t('status:being-processed.incomplete-applications.return-notice')}
          </p>
          <div className="mt-8">
            <ActionButton
              onClick={checkAnotherHandler}
              text={t('status:check-another')}
              style="primary"
            />
          </div>
        </div>
        {timelineExists && (
          <div className="hidden w-full justify-center sm:flex">
            <div className="-mt-6">
              <Timeline entries={timelineData} />
            </div>
          </div>
        )}
      </div>
    </div>
  )
}
 
export default CheckStatusFileBeingProcessed