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 | 3x 3x 3x 1x 3x 1x 1x | import DottedLine from '../components/DottedLine' import en from '../locales/engagement/en' import fr from '../locales/engagement/fr' import { useState } from 'react' export default function Engagement({ locale }) { const t = locale === 'en' ? en : fr const [state, setState] = useState({}) const [status, setStatus] = useState() function handleChange(e) { setState((prev) => ({ ...prev, [e.target.name]: e.target.value, })) } async function handleSubmit(e) { e.preventDefault() try { setStatus() let res = await fetch('/api/startEngagement', { method: 'POST', body: JSON.stringify(state), headers: { 'Content-Type': 'application/json', }, }) setStatus(res.status) } catch (e) { setStatus(500) } } return ( <div className="max-w-2xl mx-auto px-2"> <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" onSubmit={handleSubmit} > <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 py-2 px-3" onChange={handleChange} ></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 py-2 px-3" onChange={handleChange} ></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 py-2 px-3" onChange={handleChange} ></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" onChange={handleChange} > <option disabled selected> -- {t.selectOption} -- </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" onChange={handleChange} ></input> <label htmlFor="dates" className="font-bold text-periwinkle"> {t.dates} </label> <select required id="dates" name="dates" className="border-2 rounded" onChange={handleChange} > <option disabled selected> -- {t.selectOption} -- </option> <option value="Yes">{t.y}</option> <option value="No">{t.n}</option> </select> <label htmlFor="practice" className="font-bold text-periwinkle"> {t.practice} </label> <select required id="practice" name="practice" className="border-2 rounded" onChange={handleChange} > <option disabled selected> -- {t.selectOption} -- </option> <option value="Agile">{t.agile}</option> <option value="CI/CD">{t.cicd}</option> <option value="Test Automation">{t.testAuto}</option> <option value="Cloud Automation">{t.cloudAuto}</option> <option value="Unsure">{t.other}</option> </select> <label htmlFor="what_else" className="font-bold text-periwinkle"> {t.whatElse} </label> <textarea id="what_else" name="what_else" className="border-2 rounded" onChange={handleChange} ></textarea> <label htmlFor="how_find" className="font-bold text-periwinkle"> {t.howFindOut} </label> <textarea id="how_find" name="how_find" className="border-2 rounded" onChange={handleChange} ></textarea> <button className="mt-5 py-2 bg-blue-700 text-white rounded hover:bg-blue-800"> {t.submit} </button> </form> {status && ( <div role="status" className={`${ status === 200 ? 'bg-green-700' : 'bg-red-700' } mt-5 rounded text-white text-center font-semi-bold px-3 py-2`} > {t[status === 200 ? 'emailSent' : 'emailNotSent']} </div> )} </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 }, } } |