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 | import Link from 'next/link' import Heading from '../../components/Heading' import { getAuthModalsContent } from '../../graphql/mappers/auth-modals' import { GetContactUsContentReturnType, getContactUsContent, } from '../../graphql/mappers/contact-us' import { AuthIsDisabled, ValidateSession } from '../../lib/auth' import { GetServerSideProps } from 'next' import { BreadcrumbItem } from '../../components/Breadcrumb' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { icon } from '../../lib/loadIcons' import { deleteAllCookiesWithPrefix, extendExpiryTime, } from '../../lib/cookie-utils' interface Data { title: string desc: string author: string keywords: string service: string creator: string accessRights: string } interface ContactLandingProps { locale: string /** * Intersection Types * @see https://www.typescriptlang.org/docs/handbook/unions-and-intersections.html#intersection-types */ content: GetContactUsContentReturnType['en'] & GetContactUsContentReturnType['fr'] meta: { data_en: Data data_fr: Data } } const ContactLanding = (props: ContactLandingProps) => { const newTabExceptions: string[] = [ 'https://www.canada.ca/en/employment-social-development/corporate/contact/sin.html', 'https://www.canada.ca/fr/emploi-developpement-social/ministere/coordonnees/nas.html', 'https://www.canada.ca/en/services/benefits/dental/dental-care-plan/contact.html', 'https://www.canada.ca/fr/services/prestations/dentaire/regime-soins-dentaires/contactez.html', ] return ( <div id="contactContent" data-testid="contactContent-test"> <Heading id="contact-us-heading" title={props.content.heading ?? ''} /> <p className="mb-8 mt-3 text-xl text-gray-darker"> {props.content.subHeading} </p> <ul className="list-disc" data-cy="contact-task-list"> {props.content.links.map((link) => { return ( <li className="mb-6 ml-5" key={link.linkId}> <Link className="rounded-sm font-body text-20px text-blue-primary underline visited:text-purple-50a hover:text-blue-hover focus:text-blue-hover focus:outline-1 focus:outline-blue-hover" id={link.linkId} data-testid={link.linkId} aria-label={link.linkTitle} href={ link.linkDestination?.includes('http') ? link.linkDestination : `/${props.locale}/${props.content.pageName}/${( link.linkDestination ?? '' ) .split('/') .pop()}` } data-gc-analytics-customclick={`ESDC-EDSC_MSCA-MSDC-SCH:Contact Us:${link.linkTitle}`} target={ newTabExceptions.includes(link.linkDestination ?? '') ? '_blank' : '_self' } rel={ newTabExceptions.includes(link.linkDestination ?? '') ? 'noopener noreferrer' : undefined } > {link.linkTitle} <span> {newTabExceptions.includes(link.linkDestination ?? '') ? ( <FontAwesomeIcon className="absolute ml-1.5 pt-0.5" width="14" icon={icon['arrow-up-right-from-square']} ></FontAwesomeIcon> ) : null} </span> <span> {newTabExceptions.includes(link.linkDestination ?? '') ? ( <span className="sr-only"> {props.locale === 'fr' ? "S'ouvre dans un nouvel onglet" : 'Opens in a new tab'} </span> ) : null} </span> </Link> <p className="text-xl text-gray-darker">{link.linkDescription}</p> </li> ) })} </ul> </div> ) } export const getServerSideProps = (async ({ locale, req, res }) => { const authDisabled = AuthIsDisabled() ? true : false Iif (!authDisabled) { const sessionValid = await ValidateSession( req.cookies, process.env.CLIENT_ID as string, ) if (!sessionValid) { deleteAllCookiesWithPrefix( req, res, process.env.AUTH_COOKIE_PREFIX as string, ) return { redirect: { destination: `/${locale}/auth/login`, permanent: false, }, } } else { extendExpiryTime( req, res, process.env.AUTH_COOKIE_PREFIX + 'sessionId', Number(process.env.SESSION_MAX_AGE as string), ) } } const content = await getContactUsContent() const authModals = await getAuthModalsContent() /* istanbul ignore next */ if (locale === 'und') { locale = 'en' } const langToggleLink = locale === 'en' ? '/fr/contactez-nous' : '/en/contact-us' const breadCrumbItems: BreadcrumbItem[] = (locale === 'en' ? content.en.breadcrumb?.map(({ link, text }) => { return { text, link: '/' + locale + '/' + link } }) : content.fr.breadcrumb?.map(({ link, text }) => { return { text, link: '/' + locale + '/' + link } })) ?? [] /* Place-holder Meta Data Props */ const meta = { data_en: { title: 'Contact us - My Service Canada Account - Contact', desc: 'English', author: 'Service Canada', keywords: '', service: 'ESDC-EDSC_MSCA-MSDC-SCH', creator: 'Employment and Social Development Canada', accessRights: '1', }, data_fr: { title: 'Contactez-nous - Mon dossier Service Canada', desc: 'Français', author: 'Service Canada', keywords: '', service: 'ESDC-EDSC_MSCA-MSDC-SCH', creator: 'Emploi et Développement social Canada', accessRights: '1', }, } return { props: { locale: locale === 'en' ? 'en' : 'fr', langToggleLink, content: { ...(locale === 'en' ? content.en : content.fr), breadCrumbItems, }, meta, breadCrumbItems, aaPrefix: `ESDC-EDSC_MSCA-MSDC-SCH:${content.en.heading}`, aaMenuPrefix: `ESDC-EDSC_MSCA-MSDC-SCH:Nav Menu`, popupStaySignedIn: locale === 'en' ? authModals.mappedPopupStaySignedIn?.en : authModals.mappedPopupStaySignedIn?.fr, popupYouHaveBeenSignedout: locale === 'en' ? authModals.mappedPopupSignedOut?.en : authModals.mappedPopupSignedOut?.fr, }, } }) satisfies GetServerSideProps<ContactLandingProps> // https://nextjs.org/docs/pages/building-your-application/configuring/typescript#static-generation-and-server-side-rendering export default ContactLanding |