const query = new URL(window.location.href).searchParams; const qid = +query.get("qid") || 0; let method = "POST"; const question_input = document.getElementById("question"); const question_label = document.getElementById("question_label"); const prev = document.getElementById("prev-btn"); const skip = document.getElementById("skip-btn"); const progress = document.getElementById("progress"); const buttons = document.querySelectorAll(".answer-btn"); skip.addEventListener("click", () => getNext(qid + 1)); prev.addEventListener("click", () => getNext(qid - 1)); if (qid === 0) { prev.style.display = "none"; skip.style.width = "100%"; } fetch(`api/question/${qid}`) .then((response) => response.json()) .then((response) => { if (!response.empty()) { question_label.innerText = response["question"]; question_input.setAttribute("value", response["id"]); if (response.answer !== undefined) { method = "PUT"; } document.querySelector(`.answer-btn[data-value="${response.answer}"]`).style.opacity = "0.5"; } else getNext(); // Resets }); fetch("api/questions") .then((response) => response.json()) .then((response) => { for (const elem of response) { progress.insertAdjacentHTML( "beforeend", `