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 | 3x 2x 2x | import { Trans, useTranslation } from 'next-i18next'
import AlertBlock from '../AlertBlock'
import AlertSection from '../AlertSection'
import ExternalLink from '../ExternalLink'
export interface CheckStatusShippingFedexProps {
trackingNumber?: string
}
export const CheckStatusShippingFedex = ({
trackingNumber,
}: CheckStatusShippingFedexProps) => {
const { t } = useTranslation(['status', 'common'])
return (
<>
<h1 data-testid="shipped-fedex" className="h1" tabIndex={-1}>
{t('shipped-fedex.header')}
</h1>
<AlertBlock page="status-shipped-fedex" />
<p>{t('shipped-fedex.header')}.</p>
<AlertSection type="success">
<h2 data-testid="shipped-fedex-mailing" className="h2 mt-0">
{t('shipped-fedex.mailing')}
</h2>
{trackingNumber ? (
<>
<p>
<Trans
i18nKey="status-check-tracking.number"
ns="status"
tOptions={{ trackingNumber }}
/>
</p>
<p>
<Trans
i18nKey={'status-check-tracking.can-track'}
ns="status"
components={{
Link: (
<ExternalLink
data-gc-analytics-exempt={true}
href={t('status-check-tracking.link.fedex', {
trackingNumber: encodeURIComponent(trackingNumber),
})}
/>
),
}}
/>
</p>
</>
) : (
<p>{t('shipped-fedex.take-up-to')}</p>
)}
</AlertSection>
<p className="h3 mt-6">{t('shipped-fedex.supporting-documents')}</p>
<p className="mt-6">
<Trans
i18nKey="shipped-fedex.contact-us"
ns="status"
components={{
Link: <ExternalLink href={t('common:contact-us-link')} />,
}}
/>
</p>
</>
)
}
export default CheckStatusShippingFedex
|