aboutsummaryrefslogtreecommitdiff
path: root/profile/public
diff options
context:
space:
mode:
authorMarvin Borner2020-10-19 21:06:10 +0200
committerMarvin Borner2020-10-19 21:06:10 +0200
commit41306ad06681b27061f41d97dd7c8484ef015827 (patch)
tree6b275c612db4519b9ec8d453e95d25c09e40c7a0 /profile/public
parent8cac8a68132b82964c4ca3fda8e21fbb06bfbc8c (diff)
Some frontend things
Diffstat (limited to 'profile/public')
-rw-r--r--profile/public/style.css35
-rw-r--r--profile/public/user.js23
2 files changed, 44 insertions, 14 deletions
diff --git a/profile/public/style.css b/profile/public/style.css
index 600c2b5..b1bd964 100644
--- a/profile/public/style.css
+++ b/profile/public/style.css
@@ -63,7 +63,6 @@ img {
#comments div {
display: flex;
- flex-flow: row wrap;
justify-content: space-between;
}
@@ -75,10 +74,17 @@ img {
opacity: 0.8;
}
+#comments span {
+ align-self: center;
+}
+
#comments .edit-btn,
#comments .delete-btn,
#comments .add-btn {
cursor: pointer;
+ width: 50px;
+ height: 50px;
+ transition: opacity 0.5s;
}
#comments .edit-btn:hover,
@@ -87,15 +93,36 @@ img {
opacity: 0.8;
}
-#comments #add-div {
+#comments .edit-btn {
+ background: url(/feather/icons/edit.svg) no-repeat center;
+}
+
+#comments .delete-btn {
+ background: url(/feather/icons/trash.svg) no-repeat center;
+}
+
+#comments .add-btn {
+ background: url(/feather/icons/plus.svg) no-repeat center;
+}
+
+#comments #add-div,
+#comments #edit-div {
justify-content: center;
+ flex-flow: row wrap;
+ margin-top: 24px;
+ margin-bottom: 24px;
}
-#comments #add-div div {
+#comments #add-div div,
+#comments #edit-div div {
width: 100%;
+ height: 100%;
+ flex-flow: row wrap;
}
-#comments #add-div div textarea {
+#comments #add-div div textarea,
+#comments #edit-div div textarea {
width: 100%;
height: 80%;
+ margin-bottom: 12px;
}
diff --git a/profile/public/user.js b/profile/public/user.js
index 96215e7..1f93891 100644
--- a/profile/public/user.js
+++ b/profile/public/user.js
@@ -12,7 +12,7 @@ function addUser(userData) {
if (!questions.hasOwnProperty(questionID)) continue;
const question = questions[questionID];
const div = document.createElement("div");
- div.innerHTML = `<b>${question.question}</b>: <span>${question.answer || ""}</span>`;
+ div.innerHTML = `<b>${question.question}</b> <span>${question.answer || ""}</span>`;
divs.push(div);
}
const h1 = document.createElement("h1");
@@ -27,9 +27,9 @@ function addUser(userData) {
}
async function addComments(comments) {
- const h1 = document.createElement("h1");
- h1.textContent = "Kommentare";
- h1.addEventListener("click", (evt) => {
+ const h2 = document.createElement("h2");
+ h2.textContent = "Kommentare";
+ h2.addEventListener("click", (evt) => {
const qDivs = evt.target.parentElement.querySelectorAll("div");
qDivs.forEach(
(div) => (div.style.display = !div.style.display || div.style.display === "flex" ? "none" : "flex"),
@@ -49,8 +49,8 @@ async function addComments(comments) {
const del = document.createElement("span");
del.classList.add("delete-btn");
- del.textContent = "[Löschen]";
del.addEventListener("click", async (evt) => {
+ if (!confirm("Bist du sicher, dass du den Kommentar löschen willst?")) return;
const body = JSON.stringify({
pid: uid,
cid: evt.target.parentElement.parentElement.dataset.id,
@@ -66,11 +66,13 @@ async function addComments(comments) {
const edit = document.createElement("span");
edit.classList.add("edit-btn");
- edit.textContent = "[Bearbeiten]";
edit.addEventListener("click", (evt) => {
const updateDiv = document.createElement("div");
+ updateDiv.id = "edit-div";
- const input = document.createElement("input");
+ const inputDiv = document.createElement("div");
+ const input = document.createElement("textarea");
+ input.placeholder = "Dein Kommentar...";
input.value = comment.comment;
const submit = document.createElement("input");
submit.type = "submit";
@@ -92,7 +94,8 @@ async function addComments(comments) {
if (res.success) window.location.reload();
});
- updateDiv.append(input, submit);
+ inputDiv.append(input, submit);
+ updateDiv.append(inputDiv);
div.insertAdjacentElement("beforebegin", updateDiv);
commentsDiv.removeChild(div);
});
@@ -103,16 +106,16 @@ async function addComments(comments) {
divs.push(div);
}
- commentsDiv.append(h1, ...divs);
+ commentsDiv.append(h2, ...divs);
const addDiv = document.createElement("div");
addDiv.id = "add-div";
const add = document.createElement("span");
add.classList.add("add-btn");
- add.textContent = "[Neuen Kommentar hinzufügen]";
add.addEventListener("click", (evt) => {
const div = document.createElement("div");
const input = document.createElement("textarea");
+ input.placeholder = "Dein Kommentar...";
const submit = document.createElement("input");
submit.type = "submit";
submit.value = "Hinzufügen";