aboutsummaryrefslogtreecommitdiff
path: root/prediction/public/script.js
blob: 029c4f8ce9217c3354704e59d56a33846c5ce8fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const dropdown = document.getElementById("prediction");
const submit = document.querySelector('button[type="submit"]');
let method = "POST";

dropdown.insertAdjacentHTML(
    "beforeend",
    '<option disabled value="" selected="true" disabled>Lehrer auswählen...</option>',
);

function appendOption(response) {
    response.forEach((elem, i) => {
        dropdown.insertAdjacentHTML(
            "beforeend",
            `<option value="${elem["id"]}">${elem["name"]} ${elem["middlename"] ? elem["middlename"] + " " : ""}${
                elem["surname"]
            }</option>`,
        );
    });
}

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 });
    const resp = await fetch("api/set", { method, body, headers: { "Content-Type": "application/json" } });
    const res = await resp.json();
    if (res.success) {
        method = "PUT";
        alert("Okidoki!");
    } else {
        alert("Sorry, Fehler!");
    }
});