aboutsummaryrefslogtreecommitdiff
path: root/profile/public/users.js
diff options
context:
space:
mode:
authorLarsVomMars2020-10-19 19:40:35 +0200
committerLarsVomMars2020-10-19 19:40:46 +0200
commite2c8fea877c156863dbf84f5593acf02894f56b5 (patch)
tree7e7b2da5ecd3abf984e41b5e44dc2c6a3197bf48 /profile/public/users.js
parent8d540e4d9aaa951b9031b38eb55bf181e04a8ab1 (diff)
User comments frontend
Diffstat (limited to 'profile/public/users.js')
-rw-r--r--profile/public/users.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/profile/public/users.js b/profile/public/users.js
index 0f3700a..77bc85c 100644
--- a/profile/public/users.js
+++ b/profile/public/users.js
@@ -1,9 +1,10 @@
function addUser(user) {
- const div = document.createElement("div");
- // Idk what to do lel
+ const li = document.createElement("li");
+ li.textContent = `${user.name} ${user.middlename || ""} ${user.surname}`;
+ li.addEventListener("click", () => window.location.assign(`./user.html?uid=${user.id}`));
+ document.getElementById("class_" + user.class_id).appendChild(li);
}
-fetch("api/users")
+fetch("/auth/api/list?class=all")
.then((response) => response.json())
- .then((response) => response.forEach(addUser))
- .catch(console.error);
+ .then((response) => response.forEach(addUser));