All files / pages profile.tsx

47.5% Statements 19/40
12.82% Branches 5/39
28.57% Functions 2/7
47.5% Lines 19/40

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 2651x 1x 1x 1x 1x 1x       1x 1x 1x 1x 1x 1x 1x         1x                                                                                   2x         2x         2x                                               2x                                                                                                                                                                                                                                                                                                                         1x                      
import PropTypes from 'prop-types'
import Heading from '../components/Heading'
import PageLink from '../components/PageLink'
import en from '../locales/en'
import fr from '../locales/fr'
import { getProfileContent, ProfileContent } from '../graphql/mappers/profile'
import {
  AuthModalsContent,
  getAuthModalsContent,
} from '../graphql/mappers/auth-modals'
import { getLogger } from '../logging/log-util'
import { AuthIsDisabled, ValidateSession } from '../lib/auth'
import ProfileTasks, { Task } from '../components/ProfileTasks'
import React, { ReactNode } from 'react'
import { acronym } from '../lib/acronym'
import ErrorPage from '../components/ErrorPage'
import { GetServerSidePropsContext } from 'next'
import {
  deleteAllCookiesWithPrefix,
  extendExpiryTime,
} from '../lib/cookie-utils'
interface ProfilePageProps {
  locale: string | undefined
  content: {
    err?: '500' | '404' | '503'
    pageName: string
    heading: string
    list: {
      // TODO: Figure out what this return value is
      map: (
        arg0: (
          program: {
            title: string
            tasks: Task[]
          },
          index: string,
        ) => React.JSX.Element,
      ) => ReactNode
    }
    lookingFor: {
      title: string
      subText: string[]
      link: string
    }
    backToDashboard: { btnLink: string; btnText: string }
  }
  bannerContent?: {
    err?: '500' | '404' | '503'
  }
  popupContent?: {
    err?: '500' | '404' | '503'
  }
  popupContentNA?: {
    err?: '500' | '404' | '503'
  }
  // TODO: Is this actually being used?
  authModals?: {
    err?: '500' | '404' | '503'
  }
  aaPrefix: string
}
 
export default function Profile(props: ProfilePageProps) {
  /* istanbul ignore next */
  const t = props.locale === 'en' ? en : fr
 
  const errorCode =
    props.content.err ||
    props.bannerContent?.err ||
    props.popupContent?.err ||
    props.popupContentNA?.err ||
    props.authModals?.err
  Iif (errorCode !== undefined) {
    return (
      <ErrorPage
        lang={props.locale !== undefined ? props.locale : 'en'}
        errType={errorCode}
        isAuth={false}
        homePageLink={
          props.locale === 'en' ? 'en/my-dashboard' : 'fr/mon-tableau-de-bord'
        }
        accountPageLink={
          props.locale === 'en'
            ? 'https://srv136.services.gc.ca/sc/msca-mdsc/portal-portail/pro/home-accueil?Lang=eng'
            : 'https://srv136.services.gc.ca/sc/msca-mdsc/portal-portail/pro/home-accueil?Lang=fra'
        }
      />
    )
  }
 
  return (
    <div id="homeContent" data-testid="profileContent-test">
      <Heading id="profile-heading" title={props.content.pageName} />
      <p className="mt-2 text-lg text-gray-darker">{props.content.heading}</p>
      <div data-cy="profile-lists">
        {props.content.list.map((program, index) => {
          return (
            <ProfileTasks
              key={index}
              acronym={acronym(program.title)}
              programTitle={program.title}
              tasks={program.tasks}
              data-testid="profile-task-group-list"
              data-cy="task"
              refPageAA={props.aaPrefix}
            />
          )
        })}
      </div>
 
      <PageLink
        lookingForText={props.content.lookingFor.title}
        accessText={props.content.lookingFor.subText[0]}
        linkText={props.content.lookingFor.subText[1]}
        href={props.content.lookingFor.link}
        dataCy="access-security-page-link"
        buttonHref={props.content.backToDashboard.btnLink}
        buttonId="back-to-dashboard-button"
        buttonLinkText={props.content.backToDashboard.btnText}
        refPageAA={props.aaPrefix}
        dashId={t.id_dashboard}
      ></PageLink>
    </div>
  )
}
 
export async function getServerSideProps({
  locale,
  req,
  res,
}: {
  locale: GetServerSidePropsContext['locale']
  req: GetServerSidePropsContext['req']
  res: GetServerSidePropsContext['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),
      )
    }
  }
 
  //The below sets the minimum logging level to error and surpresses everything below that
  const logger = getLogger('profile')
  logger.level = 'error'
 
  const content = await getProfileContent().catch((error): ProfileContent => {
    logger.error(error)
    return { err: '500' }
  })
 
  const authModals = await getAuthModalsContent().catch(
    (error): AuthModalsContent => {
      logger.error(error)
      return { err: '500' }
    },
  )
 
  /* istanbul ignore next */
  const langToggleLink = locale === 'en' ? '/fr/profil' : '/en/profile'
  const breadCrumbItems =
    content.err !== undefined
      ? []
      : locale === 'en'
        ? content.en?.breadcrumb?.map(
            ({ link, text }: { link: string; text: string }) => {
              return { text, link: '/' + locale + '/' + link }
            },
          )
        : content.fr?.breadcrumb?.map(
            ({ link, text }: { link: string; text: string }) => {
              return { text, link: '/' + locale + '/' + link }
            },
          )
 
  /* Place-holder Meta Data Props */
  const meta = {
    data_en: {
      title: 'Profile - My Service Canada Account',
      desc: 'English',
      author: 'Service Canada',
      keywords: '',
      service: 'ESDC-EDSC_MSCA-MSDC-SCH',
      creator: 'Employment and Social Development Canada',
      accessRights: '1',
    },
    data_fr: {
      title: 'Profil - 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,
      langToggleLink,
      content:
        content.err !== undefined
          ? content
          : locale === 'en'
            ? content.en
            : content.fr,
      meta,
      breadCrumbItems,
      aaPrefix:
        content.err !== undefined
          ? ''
          : `ESDC-EDSC_MSCA-MSDC-SCH:${content.en?.pageName || content.en?.title}`,
      aaMenuPrefix:
        content.err !== undefined ? '' : `ESDC-EDSC_MSCA-MSDC-SCH:Nav Menu`,
      popupStaySignedIn:
        authModals.err !== undefined
          ? authModals
          : locale === 'en'
            ? authModals.mappedPopupStaySignedIn?.en
            : authModals.mappedPopupStaySignedIn?.fr,
      popupYouHaveBeenSignedout:
        authModals.err !== undefined
          ? authModals
          : locale === 'en'
            ? authModals.mappedPopupSignedOut?.en
            : authModals.mappedPopupSignedOut?.fr,
    },
  }
}
 
Profile.propTypes = {
  /**
   * current locale in the address
   */
  locale: PropTypes.string,
 
  /*
   * Meta Tags
   */
  meta: PropTypes.object,
}