All files / pages engagement.js

100% Statements 4/4
50% Branches 1/2
100% Functions 2/2
100% Lines 4/4

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          2x 2x                                                                                                                                                                                                                                                                                                                                                                                           1x                             1x        
import DottedLine from '../components/DottedLine'
import en from '../locales/engagement/en'
import fr from '../locales/engagement/fr'
 
export default function Engagement({ locale }) {
  const t = locale === 'en' ? en : fr
  return (
    <div className="max-w-2xl mx-auto">
      <h1 className="text-center">{t.h1}</h1>
      <DottedLine />
      <p className="text-periwinkle mb-2">{t.p1}</p>
      <p className="text-[.98rem] mb-2">
        {t.p2}
        <a
          href="mailto:ESDC.DGIIT.Dojo-Dojo.IITD.ESDC@hrsdc-rhdcc.gc.ca"
          className="ml-1 underline text-[.95rem] text-periwinkle"
        >
          {t.a}
        </a>
      </p>
      <form
        className="flex flex-col gap-3 text-[.9rem] mt-10"
        aria-describedby="required"
        action="mailto:ESDC.DGIIT.Dojo-Dojo.IITD.ESDC@hrsdc-rhdcc.gc.ca?Subject=Start Team Engagement"
        method="post"
        encType="text/plain"
      >
        <p id="required" className="text-[.85rem] text-periwinkle">
          {t.imp}
        </p>
        <div className="flex flex-col sm:flex-row gap-2">
          <div className="flex flex-col w-full">
            <label htmlFor="first_name" className="font-bold text-periwinkle">
              {t.fn}
            </label>
            <input
              required
              id="first_name"
              name="first_name"
              className="border-2 rounded"
            ></input>
          </div>
          <div className="flex flex-col w-full">
            <label htmlFor="last_name" className="font-bold text-periwinkle">
              {t.ln}
            </label>
            <input
              required
              id="last_name"
              name="last_name"
              className="border-2 rounded"
            ></input>
          </div>
        </div>
        <label htmlFor="team_name" className="font-bold text-periwinkle">
          {t.tn}
        </label>
        <input
          required
          id="team_name"
          name="team_name"
          className="border-2 rounded"
        ></input>
        <label htmlFor="work-location" className="font-bold text-periwinkle">
          {t.where}
        </label>
        <select
          required
          id="work-location"
          name="work-location"
          className="border-2 rounded"
        >
          <option></option>
          <option value="IITB">{t.iitb}</option>
          <option value="Other - ESDC">{t.otherEsdc}</option>
          <option value="Other - Government of Canada">{t.otherGoc}</option>
          <option value="Other - Outside the Government of Canada">
            {t.otherOutsideGoc}
          </option>
        </select>
        <label htmlFor="email" className="font-bold text-periwinkle">
          {t.email}
        </label>
        <input
          type="email"
          required
          id="email"
          name="email"
          className="border-2 rounded"
        ></input>
 
        <fieldset className="flex flex-col">
          <legend className="font-bold text-periwinkle">{t.dates}</legend>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              required
              id="yes"
              name="dates"
              className="border-2 rounded"
            ></input>
            <label htmlFor="yes">{t.y}</label>
          </div>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              id="no"
              name="dates"
              className="border-2 rounded"
            ></input>
            <label htmlFor="no">{t.n}</label>
          </div>
        </fieldset>
 
        <fieldset className="flex flex-col">
          <legend className="font-bold text-periwinkle">{t.practice}</legend>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              required
              id="agile"
              name="practice"
              className="border-2 rounded"
            ></input>
            <label htmlFor="agile">{t.agile}</label>
          </div>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              id="cicd"
              name="practice"
              className="border-2 rounded"
            ></input>
            <label htmlFor="cicd">{t.cicd}</label>
          </div>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              id="automation"
              name="practice"
              className="border-2 rounded"
            ></input>
            <label htmlFor="automation">{t.testAuto}</label>
          </div>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              id="cloud"
              name="practice"
              className="border-2 rounded"
            ></input>
            <label htmlFor="cloud">{t.cloudAuto}</label>
          </div>
          <div className="flex items-center gap-2">
            <input
              type="radio"
              id="unsure"
              name="practice"
              className="border-2 rounded"
            ></input>
            <label htmlFor="unsure">{t.other}</label>
          </div>
        </fieldset>
 
        <label htmlFor="what-else" className="font-bold text-periwinkle">
          {t.whatElse}
        </label>
        <textarea
          type="textarea"
          id="what-else"
          name="what-else"
          className="border-2 rounded"
        ></textarea>
 
        <label htmlFor="how-find" className="font-bold text-periwinkle">
          {t.howFindOut}
        </label>
        <textarea
          id="how-find"
          name="how-find"
          className="border-2 rounded"
        ></textarea>
 
        <button className="py-1 bg-blue-700 text-white rounded hover:bg-blue-800">
          {t.submit}
        </button>
      </form>
    </div>
  )
}
 
export async function getStaticProps({ locale }) {
  /* istanbul ignore next */
  const langToggleLink = locale === 'en' ? '/fr/engagement' : '/engagement'
 
  /* Place-holder Meta Data Props */
  const meta = {
    data_en: {
      title: 'Digital Dojo - Team Engagement',
      desc: 'English',
      author: '',
      keywords: '',
    },
    data_fr: {
      title: "Dojo Numérique - Mobilisation d'équipe",
      desc: 'Français',
      author: '',
      keywords: '',
    },
  }
 
  return {
    props: { locale, langToggleLink, meta },
  }
}