From 2eff2deb98280aa61241e06163c87155911bbfae Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Thu, 28 Jan 2021 12:53:19 +0100 Subject: TEACHER PREDICTION HAHAHA --- prediction/public/script.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 prediction/public/script.js (limited to 'prediction/public/script.js') diff --git a/prediction/public/script.js b/prediction/public/script.js new file mode 100644 index 0000000..a4d0527 --- /dev/null +++ b/prediction/public/script.js @@ -0,0 +1,37 @@ +const dropdown = document.getElementById("prediction"); +const submit = document.querySelector('button[type="submit"]'); +let method = "POST"; + +dropdown.insertAdjacentHTML( + "beforeend", + '', +); + +function appendOption(response) { + response.forEach((elem, i) => { + dropdown.insertAdjacentHTML( + "beforeend", + ``, + ); + }); +} + +function selectOption(response) { + if (Object.keys(response).length > 0) { + dropdown.value = response.teacher_id; + method = "PUT"; + } +} + +fetch("/auth/api/list?class=teacher") + .then((response) => response.json()) + .then((response) => appendOption(response)) + .then(() => fetch("api/get")) + .then((response) => response.json()) + .then(selectOption); + +submit.addEventListener("click", async (e) => { + const teacher = dropdown.value; + const body = JSON.stringify({ teacher }); + await fetch("api/set", { method, body, headers: { "Content-Type": "application/json" } }); +}); \ No newline at end of file -- cgit v1.2.3