aboutsummaryrefslogtreecommitdiff
path: root/poll/public
diff options
context:
space:
mode:
authorMarvin Borner2020-10-10 12:55:47 +0200
committerMarvin Borner2020-10-10 12:55:47 +0200
commitf56c3cad0cf123dafa3cb6978f4e5ca3c2c623e6 (patch)
tree6313b34f87650a90b9488a35e0b5155e2fd1f73f /poll/public
parent2432d4f5f79638d62e663c7abebdfa3f1405acb5 (diff)
Added working teacher polls
Diffstat (limited to 'poll/public')
-rw-r--r--poll/public/index.html4
-rw-r--r--poll/public/script.js25
2 files changed, 24 insertions, 5 deletions
diff --git a/poll/public/index.html b/poll/public/index.html
index dd66c96..59e5939 100644
--- a/poll/public/index.html
+++ b/poll/public/index.html
@@ -26,8 +26,8 @@
<legend>Schüler-Ranking</legend>
<p>Welche/r Schüler/in...</p>
<label id="question_label" for="question"></label>
- <input name="question" id="question" hidden></input>
- <br/>
+ <input name="question" id="question" hidden />
+ <br />
<label for="answer">Antwort</label>
<select name="answer" id="answer" required></select>
<button type="submit" class="pure-button pure-button-primary">Antworten</button>
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, " "));
+}