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 | 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 AlertSection from '../AlertSection' import ExternalLink from '../ExternalLink' import Timeline from '../Timeline' export const CheckStatusProcessingOverdue = ({ 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-overdue" /> <h1 id="main-header" data-testid="processing-overdue" className="h1" tabIndex={-1} > {t('status:being-processed-overdue.processing-delays-warning.header')} </h1> <AlertSection type="warning"> <h2 className="h2"> {t('status:being-processed-overdue.processing-delays-warning.header')} </h2> <p> {t( 'status:being-processed-overdue.processing-delays-warning.description', )} </p> </AlertSection> <div className="flex flex-col sm:flex-row"> <div className="max-w-prose"> <p>{t('status:being-processed-overdue.reviewing-application')}</p> <p>{t('status:being-processed-overdue.employee-reviewing')}</p> <p>{t('status:being-processed-overdue.processing-delayed')}</p> {timelineExists && ( <div className="flex w-full justify-center sm:hidden"> <Timeline entries={timelineData} /> </div> )} <h2 className="h2 mb-2 mt-8"> {t('status:being-processed-overdue.service-standards.heading')} </h2> <p> <Trans i18nKey={ 'being-processed-overdue.service-standards.received-date' } ns="status" values={{ receivedDate: formattedDate, serviceLevel: serviceDays, }} /> </p> {deliveryMethod === DeliveryMethodCode.IN_PERSON && ( <p> {t( 'status:being-processed-overdue.service-standards.urgent-service-note', )} </p> )} <p> {t( 'status:being-processed-overdue.service-standards.refund-eligibility', )} </p> <h2 className="h2 mb-2 mt-8"> {t('status:being-processed-overdue.travelling-soon.heading')} </h2> <p> <Trans i18nKey={'being-processed-overdue.travelling-soon.if-travelling'} ns="status" components={{ Link: ( <ExternalLink href={t('status:status-check-urgent.express-services-href')} /> ), }} values={{ serviceLevel: serviceLevel === ServiceLevelCode.TEN_DAYS ? '10' : '20', }} /> </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 CheckStatusProcessingOverdue |