diff options
Diffstat (limited to 'questions')
-rw-r--r-- | questions/index.js | 17 | ||||
-rw-r--r-- | questions/public/script.js | 10 |
2 files changed, 8 insertions, 19 deletions
diff --git a/questions/index.js b/questions/index.js index daf419d..1f0f4ce 100644 --- a/questions/index.js +++ b/questions/index.js @@ -7,18 +7,12 @@ app.use("/", checkUser, express.static(__dirname + "/public")); app.get("/api/question/:id", checkUser, async (req, res) => { try { - const questions = await db.query( - `SELECT id, question - FROM question_questions` - ); + const questions = await db.query("SELECT id, question FROM question_questions"); const id = +req.params.id; if (id >= 0 && id < questions.length) { const question = questions[id]; const answers = await db.query( - `SELECT answer - FROM question_answers - WHERE question_id = ? - AND user_id = ?`, + "SELECT answer FROM question_answers WHERE question_id = ? AND user_id = ?", [question.id, req.session.uid], ); question.answer = answers.length > 0 ? answers[0].answer : undefined; @@ -36,12 +30,7 @@ app.get("/api/questions", checkUser, async (req, res) => { const fail = { success: false }; try { const questions = await db.query("SELECT id FROM question_questions"); - const answers = await db.query( - `SELECT question_id - FROM question_answers - WHERE user_id = ?`, - [req.session.uid], - ); + const answers = await db.query("SELECT question_id FROM question_answers WHERE user_id = ?", [req.session.uid]); const resp = []; let i = 0; for (const question of questions) { diff --git a/questions/public/script.js b/questions/public/script.js index e5a03d0..aaeac00 100644 --- a/questions/public/script.js +++ b/questions/public/script.js @@ -30,7 +30,7 @@ fetch(`api/question/${qid}`) } else getNext(); // Resets }); -fetch(`api/questions`) +fetch("api/questions") .then((response) => response.json()) .then((response) => { for (const elem of response) { @@ -61,14 +61,14 @@ NodeList.prototype.on = function (listener, event) { for (const node of this) { node.addEventListener(listener, event); } -} +}; buttons.on("click", async (e) => { const body = JSON.stringify({ question: question_input.value, answer: e.target.dataset.value === "1", }); - const resp = await fetch(`api/answer`, { + const resp = await fetch("api/answer", { method, headers: { "Content-Type": "application/json" }, body, @@ -76,8 +76,8 @@ buttons.on("click", async (e) => { const res = await resp.json(); if (res.success) { method = "PUT"; - getNext(qid); + getNext(qid + 1); // document.querySelector(`.answer-btn[data-value="${e.target.dataset.value}"]`).style.opacity = "0.5"; // document.querySelector(`.answer-btn[data-value="${+!+e.target.dataset.value}"]`).style.opacity = "1"; // Let's not talk about it } -});
\ No newline at end of file +}); |