All files / pages my-dashboard.tsx

54.34% Statements 25/46
21.87% Branches 7/32
42.85% Functions 3/7
54.34% Lines 25/46

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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 3081x 1x 1x 1x 1x 1x 1x       1x       1x 1x 1x 1x 1x 1x 1x           1x                                                                                     4x         4x         4x                                                                       4x 4x                               4x 4x 4x                                                                                                                                                                                                                                                                                                                                   1x                      
import PropTypes from 'prop-types'
import en from '../locales/en'
import fr from '../locales/fr'
import Card from '../components/Card'
import Heading from '../components/Heading'
import ContextualAlert from '../components/ContextualAlert'
import InfoMessage from '../components/InfoMessage'
import {
  getMyDashboardContent,
  MyDashboardContent,
} from '../graphql/mappers/my-dashboard'
import {
  AuthModalsContent,
  getAuthModalsContent,
} from '../graphql/mappers/auth-modals'
import { getLogger } from '../logging/log-util'
import { AuthIsDisabled, ValidateSession } from '../lib/auth'
import BenefitTasks, { TaskListProps } from '../components/BenefitTasks'
import MostReqTasks from '../components/MostReqTasks'
import { acronym } from '../lib/acronym'
import ErrorPage from '../components/ErrorPage'
import { GetServerSidePropsContext } from 'next'
import { Key } from 'react'
import {
  deleteAllCookiesWithPrefix,
  extendExpiryTime,
} from '../lib/cookie-utils'
 
interface MyDashboardProps {
  locale: string
  content: {
    err?: '500' | '404' | '503'
    heading: string
    pageAlerts: {
      id: string
      alertHeading: string | undefined
      alertBody: string
      type: string[]
    }[]
    cards: {
      id: string
      title: string
      dropdownText: string
      cardAlerts: {
        id: string
        alertHeading: string
        alertBody: string
        type: string
      }[]
      lists: {
        title: string
        aaTitle: string
        tasks: {
          id: string
          title: string
          areaLabel: string
          link: string
          icon: string
          betaPopUp: boolean
        }[]
      }[]
    }[]
  }
  bannerContent?: { err?: '500' | '404' | '503' }
  popupContent?: { err?: '500' | '404' | '503' }
  popupContentNA?: { err?: '500' | '404' | '503' }
  authModals?: { err?: '500' | '404' | '503' }
  aaPrefix: string
}
export default function MyDashboard(props: MyDashboardProps) {
  /* 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}
        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
      className="pb-2"
      id="myDashboardContent"
      data-testid="myDashboardContent-test"
    >
      <Heading id="my-dashboard-heading" title={props.content.heading} />
 
      <InfoMessage
        label={t.dashboardInfo.label}
        messageText={t.dashboardInfo.messageText}
        messageLinkText={t.dashboardInfo.messageLinkText}
        messageLinkHref={t.dashboardInfo.messageLinkHref}
        icon="arrow-up-right-from-square"
        refPageAA={`${props.aaPrefix}`}
        locale={props.locale}
      />
 
      {props.content.pageAlerts.map((alert, index) => {
        const alertType = alert.type[0].split('/').pop()
        return (
          <ul className="mt-6 w-full sm:px-8 md:px-15" key={index}>
            <ContextualAlert
              id={alert.id}
              type={alertType}
              alertHeading={alert.alertHeading}
              alertBody={alert.alertBody}
              alert_icon_id={` alert-icon ${alert.id}`}
              alert_icon_alt_text={`${alertType} ${
                props.locale === 'fr' ? 'Icône' : 'icon'
              }`}
            />
          </ul>
        )
      })}
      {props.content.cards.map((card) => {
        const mostReq = card.lists[0]
        const tasks = card.lists.slice(1, card.lists.length)
        return (
          <Card
            key={card.id}
            programUniqueId={card.id}
            locale={props.locale}
            cardTitle={card.title}
            viewMoreLessCaption={card.dropdownText}
            acronym={acronym(card.title)}
            refPageAA={props.aaPrefix}
            cardAlert={card.cardAlerts}
          >
            <div className="bg-deep-blue-60d" data-cy="most-requested-section">
              <MostReqTasks
                locale={props.locale}
                taskListMR={mostReq}
                dataCy="most-requested"
                acronym={acronym(card.title)}
                refPageAA={props.aaPrefix}
              />
            </div>
            <div
              className="gap-x-[60px] pl-3 pt-8 sm:pl-8 md:columns-2 md:px-15"
              data-cy="task-list"
            >
              {tasks.map((taskList: TaskListProps, index: Key) => {
                return (
                  <div key={index} data-cy="Task">
                    <BenefitTasks
                      locale={props.locale}
                      acronym={acronym(card.title)}
                      taskList={taskList}
                      dataCy="task-group-list"
                      refPageAA={props.aaPrefix}
                    />
                  </div>
                )
              })}
            </div>
          </Card>
        )
      })}
    </div>
  )
}
 
export async function getServerSideProps({
  locale,
  req,
  res,
}: {
  locale: GetServerSidePropsContext['locale']
  req: GetServerSidePropsContext['req']
  res: GetServerSidePropsContext['res']
}) {
  const authDisabled = AuthIsDisabled()
 
  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('my-dashboard')
  logger.level = 'error'
 
  const content = await getMyDashboardContent().catch(
    (error): MyDashboardContent => {
      logger.error(error)
      return { err: '500' }
    },
  )
 
  const authModals = await getAuthModalsContent().catch(
    (error): AuthModalsContent => {
      logger.error(error)
      return { err: '500' }
    },
  )
 
  Iif (locale === 'und') {
    locale = 'en'
  }
  /* istanbul ignore next */
  const langToggleLink =
    locale === 'en' ? '/fr/mon-tableau-de-bord' : '/en/my-dashboard'
 
  /* Place-holder Meta Data Props */
  const meta = {
    data_en: {
      title: 'My dashboard - My Service USA Account',
      desc: 'English',
      author: 'Service Canada',
      keywords: '',
      service: 'ESDC-EDSC_MSCA-MSDC-SCH',
      creator: 'Employment and Social Development Canada',
      accessRights: '1',
    },
    data_fr: {
      title: 'Mon tableau de bord - 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,
      aaPrefix:
        content.err !== undefined
          ? ''
          : `ESDC-EDSC_MSCA-MSDC-SCH:${content.en?.heading}`,
      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,
    },
  }
}
MyDashboard.propTypes = {
  /**
   * current locale in the address
   */
  locale: PropTypes.string,
 
  /*
   * Meta Tags
   */
  meta: PropTypes.object,
}