diff options
author | Marvin Borner | 2020-10-10 17:49:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 17:49:51 +0200 |
commit | 897b4173c5cc190805a96aafe5f9258610332e39 (patch) | |
tree | ffd3e52712e2a8decfa2ec882c0110b0c10e61fd /admin/public/ranking.js | |
parent | b2d9cf884f2aff3445d6619939186e48a683e5a9 (diff) |
Added vote stats
Diffstat (limited to 'admin/public/ranking.js')
-rw-r--r-- | admin/public/ranking.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/admin/public/ranking.js b/admin/public/ranking.js new file mode 100644 index 0000000..4281e23 --- /dev/null +++ b/admin/public/ranking.js @@ -0,0 +1,26 @@ +fetch("api/questions") + .then((questions) => questions.json()) + .then((questions) => { + fetch("api/answers") + .then((answers) => answers.json()) + .then((answers) => { + questions.forEach((question) => (question.answers = [])); + answers.forEach((answer) => questions[answer.question_id - 1].answers.push(answer)); + render(questions); + }); + }); + +function render(questions) { + const teacher = document.querySelector("ul#teacher"); + const pupil = document.querySelector("ul#pupil"); + questions.forEach((question) => { + const list = question.type === "teacher" ? teacher : pupil; + let answers = ""; + question.answers.forEach((answer) => { + answers += `<li>${answer.name} ${answer.middlename ? answer.middlename + " " : ""}${answer.surname}: ${ + answer.count + }</li>`; + }); + list.insertAdjacentHTML("beforeend", `<li>${question.question}<br><ol>${answers}</ol></li>`); + }); +} |