From 7285ce6a534baed7c94c28d6ccaadc959156e94d Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Sat, 3 Oct 2020 12:31:15 +0200
Subject: Added quote deletion
---
quotes/public/script.js | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
(limited to 'quotes/public/script.js')
diff --git a/quotes/public/script.js b/quotes/public/script.js
index da1c38f..20587fe 100644
--- a/quotes/public/script.js
+++ b/quotes/public/script.js
@@ -21,8 +21,16 @@ function appendQuote(response) {
"beforeend",
`
${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${elem["surname"]}: ${
elem["quote"]
- }`,
+ } [Löschen]`,
);
+
+ document.querySelector(`li span[data-id="${elem["id"]}"]`).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();
+ });
+ });
});
}
@@ -30,7 +38,7 @@ fetch("/auth/api/list?class=all")
.then((response) => response.json())
.then((response) => appendOption(response));
-fetch("/quotes/api/list")
+fetch("api/list")
.then((response) => response.json())
.then((response) => appendQuote(response));
--
cgit v1.2.3