blob: 74f74df9e5267474c2e0c29a219f17a81089c6ee (
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
|
const dropdown = document.getElementById("author");
const quotes = document.getElementById("quotes");
dropdown.insertAdjacentHTML("beforeend", '<option selected="true" disabled>Author auswählen...</option>');
function appendOption(response) {
response.forEach((elem) => {
dropdown.insertAdjacentHTML(
"beforeend",
`<option value="${elem["id"]}">${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${
elem["surname"]
}</option>`
);
});
}
function appendQuote(response) {
response.forEach((elem) => {
quotes.insertAdjacentHTML(
"beforeend",
`<li>${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${elem["surname"]}: ${
elem["quote"]
}</li>`
);
});
}
fetch("/auth/api/list")
.then((response) => response.json())
.then((response) => appendOption(response));
fetch("/quotes/api/list")
.then((response) => response.json())
.then((response) => appendQuote(response));
|