From e52bcb760f36b68495692ac5c5a5b68e8dafc33b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 2 Oct 2020 21:12:23 +0200 Subject: Added polls --- poll/public/script.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 poll/public/script.js (limited to 'poll/public/script.js') diff --git a/poll/public/script.js b/poll/public/script.js new file mode 100644 index 0000000..a42777f --- /dev/null +++ b/poll/public/script.js @@ -0,0 +1,40 @@ +const dropdown = document.getElementById("answer"); +const question_input = document.getElementById("question"); +const question_label = document.getElementById("question_label"); + +dropdown.insertAdjacentHTML("beforeend", ''); + +function appendOption(response) { + response.forEach((elem) => { + dropdown.insertAdjacentHTML( + "beforeend", + `` + ); + }); +} + +function appendQuote(response) { + response.forEach((elem) => { + document + .getElementById(elem["class"]) + .insertAdjacentHTML( + "beforeend", + `
  • ${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${elem["surname"]}: ${ + elem["quote"] + }
  • ` + ); + }); +} + +fetch("/auth/api/list") + .then((response) => response.json()) + .then((response) => appendOption(response)); + +fetch("/poll/api/get") + .then((response) => response.json()) + .then((response) => { + question_label.innerText = response["question"]; + question_input.setAttribute("value", response["id"]); + }); -- cgit v1.2.3