All files / components MostReqTasks.tsx

66.66% Statements 6/9
0% Branches 0/24
0% Functions 0/3
62.5% Lines 5/8

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 1661x 1x 1x                                             1x                                                                                                                                                                                                                                                                                     4x  
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import Link from 'next/link'
import { icon } from '../lib/loadIcons'
 
interface Task {
  title: string
  link: string
  betaPopUp?: boolean
  id: string
}
 
interface TaskList {
  title: string
  aaTitle: string
  tasks: Task[]
}
 
interface MostReqTasksProps {
  locale: string
  dataCy?: string
  taskListMR: TaskList
  refPageAA: string
  acronym: string
}
 
const MostReqTasks = ({
  locale = 'en',
  dataCy,
  taskListMR = {
    tasks: [
      {
        title: 'mscaPlaceholder',
        link: 'mscaPlaceholderHref',
        id: Math.random().toString(),
      },
    ],
    title: 'mscaPlaceholder',
    aaTitle: 'mscaPlaceholder',
  },
  refPageAA = 'mscaPlaceholder',
  acronym,
}: MostReqTasksProps) => {
  const newTabTaskExceptions: string[] = []
 
  return (
    <div className="h-full">
      <h3
        className="pl-3 pt-6 text-xl font-bold text-white sm:pl-8 md:pl-15"
        data-cy={dataCy}
      >
        {taskListMR.title}
      </h3>
 
      {taskListMR.tasks.length > 3 ? (
        <ul
          className="grid list-outside list-disc grid-cols-1 px-9 pb-5 pt-2 text-white xs:gap-x-5 sm:auto-cols-fr sm:grid-flow-col sm:grid-cols-2 sm:grid-rows-3 sm:px-14 md:px-[100px] md:pt-4"
          data-cy="most-req-links"
        >
          {taskListMR.tasks.map((task, index) => {
            return (
              <li
                key={index}
                className="justify-center py-2 font-bold"
                data-cy="most-req-tasklink"
              >
                <Link
                  aria-label={`${taskListMR.title} - ${task.title} -
                             ${
                               newTabTaskExceptions.includes(task.link)
                                 ? locale === 'fr'
                                   ? "S'ouvre dans un nouvel onglet"
                                   : 'Opens in a new tab'
                                 : ''
                             }`}
                  href={task.link}
                  passHref
                  target={
                    newTabTaskExceptions.includes(task.link)
                      ? '_blank'
                      : '_self'
                  }
                  rel={
                    newTabTaskExceptions.includes(task.link)
                      ? 'noopener noreferrer'
                      : undefined
                  }
                  data-gc-analytics-customclick={`${refPageAA} ${acronym} ${taskListMR.aaTitle}:${task.id}`}
                  className="rounded-sm text-white underline hover:text-gray-50a focus:outline-1 focus:outline-white"
                >
                  <span className="static text-xl font-normal">
                    {task.title}
                    <span>
                      {newTabTaskExceptions.includes(task.link) ? (
                        <FontAwesomeIcon
                          className="absolute ml-1.5 pt-0.5"
                          width="14"
                          icon={icon['arrow-up-right-from-square']}
                        ></FontAwesomeIcon>
                      ) : null}
                    </span>
                  </span>
                </Link>
              </li>
            )
          })}
        </ul>
      ) : (
        <ul
          className="grid list-outside list-disc grid-cols-1 px-9 pb-5 pt-2 text-white sm:px-14 md:px-[100px] md:pt-4"
          data-cy="most-req-links"
        >
          {taskListMR.tasks.map((task, index) => {
            return (
              <li
                key={index}
                className="justify-center py-2 font-bold"
                data-cy="most-req-tasklink"
              >
                <Link
                  aria-label={`${taskListMR.title} - ${task.title} -
                            ${
                              newTabTaskExceptions.includes(task.link)
                                ? locale === 'fr'
                                  ? "S'ouvre dans un nouvel onglet"
                                  : 'Opens in a new tab'
                                : ''
                            }`}
                  href={task.link}
                  passHref
                  target={
                    newTabTaskExceptions.includes(task.link)
                      ? '_blank'
                      : '_self'
                  }
                  rel={
                    newTabTaskExceptions.includes(task.link)
                      ? 'noopener noreferrer'
                      : undefined
                  }
                  data-gc-analytics-customclick={`${refPageAA} ${acronym} ${taskListMR.aaTitle}:${task.id}`}
                  className="rounded-sm text-white underline hover:text-gray-50a focus:outline-1 focus:outline-white"
                >
                  <span className="static text-xl font-normal">
                    {task.title}
                    <span>
                      {newTabTaskExceptions.includes(task.link) ? (
                        <FontAwesomeIcon
                          className="absolute ml-1.5 pt-0.5"
                          width="14"
                          icon={icon['arrow-up-right-from-square']}
                        ></FontAwesomeIcon>
                      ) : null}
                    </span>
                  </span>
                </Link>
              </li>
            )
          })}
        </ul>
      )}
    </div>
  )
}
 
export default MostReqTasks