blob: a4d05273253a4624aa71bf3a3b1d1477c800862c (
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
|
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 });
await fetch("api/set", { method, body, headers: { "Content-Type": "application/json" } });
});
|