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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
const dropdown = document.getElementById("author");
const classes = ["TGM13.1", "TGM13.2", "TGTM13.1", "TGI13.1", "TGI13.2", "teacher"];
dropdown.insertAdjacentHTML(
"beforeend",
'<option disabled value="" selected="true" disabled>Author auswählen...</option>',
);
dropdown.insertAdjacentHTML("beforeend", `<option disabled value="">--${classes[0]}--</option>`);
function appendOption(response) {
response.forEach((elem, i) => {
dropdown.insertAdjacentHTML(
"beforeend",
(response[i - 1 < 0 ? 0 : i - 1]["class_id"] !== elem["class_id"]
? `<option disabled value="">--${classes[elem["class_id"] - 1]}--</option>`
: "") +
`<option value="${elem["id"]}">${elem["name"]} ${elem["middlename"] ? elem["middlename"] + " " : ""}${
elem["surname"]
}</option>`,
);
});
}
function appendQuote(response) {
response.forEach((elem) => {
document
.getElementById(elem["class"])
.insertAdjacentHTML(
"beforeend",
`<li>${elem["name"]} ${elem["middlename"] ? elem["middlename"] + " " : ""}${elem["surname"]}: ${
elem["quote"]
}${elem["owner"] ? ' <span data-id="' + elem["id"] + '">[x]</span></li>' : ""}`,
);
const span = document.querySelector(`li span[data-id="${elem["id"]}"]`);
if (span)
span.addEventListener("click", (event) => {
fetch("api/delete/" + event.target.getAttribute("data-id"), { method: "DELETE" })
.then((response) => response.text())
.then((response) => {
if (response == "ok") event.target.parentNode.remove();
});
});
});
}
fetch("/auth/api/list?class=all")
.then((response) => response.json())
.then((response) => appendOption(response));
fetch("api/list")
.then((response) => response.json())
.then((response) => appendQuote(response));
classes.forEach((clazz) => {
document.getElementById("open_" + clazz).addEventListener("click", () => {
const ul = document.getElementById(clazz);
if (ul.style.display === "none") ul.style.display = "block";
else ul.style.display = "none";
});
});
|