aboutsummaryrefslogtreecommitdiff
path: root/quotes/public/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'quotes/public/script.js')
-rw-r--r--quotes/public/script.js21
1 files changed, 18 insertions, 3 deletions
diff --git a/quotes/public/script.js b/quotes/public/script.js
index 7a87486..74f74df 100644
--- a/quotes/public/script.js
+++ b/quotes/public/script.js
@@ -1,8 +1,9 @@
const dropdown = document.getElementById("author");
+const quotes = document.getElementById("quotes");
dropdown.insertAdjacentHTML("beforeend", '<option selected="true" disabled>Author auswählen...</option>');
-function append(response) {
+function appendOption(response) {
response.forEach((elem) => {
dropdown.insertAdjacentHTML(
"beforeend",
@@ -13,7 +14,21 @@ function append(response) {
});
}
-// TODO: Add api list endpoint
+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) => append(response));
+ .then((response) => appendOption(response));
+
+fetch("/quotes/api/list")
+ .then((response) => response.json())
+ .then((response) => appendQuote(response));