blob: 881df3ad3de14459afcc8e5d018a2626319c9064 (
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
|
const list = document.getElementById("list");
function appendsecret(response) {
response.forEach((elem) => {
list.insertAdjacentHTML(
"beforeend",
`<li><span class="text">${elem["secret"]}</span>${
elem["owner"] ? ' <span class="delete-btn" data-id="' + elem["id"] + '"></span></li><hr>' : ""
}`,
);
const span = document.querySelector(`li span[data-id="${elem["id"]}"]`);
if (span)
span.addEventListener("click", (event) => {
if (!confirm("Bist du dir sicher, dass du das Zitat löschen willst?")) return;
fetch("api/delete/" + event.target.getAttribute("data-id"), { method: "DELETE" })
.then((response) => response.text())
.then((response) => {
if (response == "ok") event.target.parentNode.remove();
});
});
});
}
fetch("api/list")
.then((response) => response.json())
.then((response) => appendsecret(response));
|