diff options
author | Marvin Borner | 2020-10-10 12:55:47 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 12:55:47 +0200 |
commit | f56c3cad0cf123dafa3cb6978f4e5ca3c2c623e6 (patch) | |
tree | 6313b34f87650a90b9488a35e0b5155e2fd1f73f /poll/public/script.js | |
parent | 2432d4f5f79638d62e663c7abebdfa3f1405acb5 (diff) |
Added working teacher polls
Diffstat (limited to 'poll/public/script.js')
-rw-r--r-- | poll/public/script.js | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/poll/public/script.js b/poll/public/script.js index a1911fa..8c56894 100644 --- a/poll/public/script.js +++ b/poll/public/script.js @@ -1,8 +1,17 @@ +const type = getParameterByName("type"); const dropdown = document.getElementById("answer"); const question_input = document.getElementById("question"); const question_label = document.getElementById("question_label"); -dropdown.insertAdjacentHTML("beforeend", '<option selected="true" disabled>Schüler/in auswählen...</option>'); +if (!["teacher", "pupil"].includes(type)) window.location.href = "/"; + +dropdown.insertAdjacentHTML( + "beforeend", + '<option selected="true" disabled>' + (type == "teacher" ? "Lehrer" : "Schüler") + "/in auswählen...</option>", +); +document.querySelector("legend").innerText = type == "teacher" ? "Lehrer-Ranking" : "Schüler-Ranking"; +document.querySelector("p").innerText = "Welche/r " + (type == "teacher" ? "Lehrer/in" : "Schüler/in") + "..."; +document.querySelector("form").setAttribute("action", "api/answer?type=" + type); function appendOption(response) { response.forEach((elem) => { @@ -15,13 +24,23 @@ function appendOption(response) { }); } -fetch("/auth/api/list") +fetch("/auth/api/list" + (type == "teacher" ? "?class=teacher" : "")) .then((response) => response.json()) .then((response) => appendOption(response)); -fetch("/poll/api/get") +fetch("/poll/api/get?type=" + type) .then((response) => response.json()) .then((response) => { question_label.innerText = response["question"]; question_input.setAttribute("value", response["id"]); }); + +function getParameterByName(name, url) { + if (!url) url = window.location.href; + name = name.replace(/[\[\]]/g, "\\$&"); + var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), + results = regex.exec(url); + if (!results) return null; + if (!results[2]) return ""; + return decodeURIComponent(results[2].replace(/\+/g, " ")); +} |