Update user.ejs

This commit is contained in:
tokmak0 2022-08-28 18:10:41 +03:00 committed by GitHub
parent 14bf6d45a4
commit 8b91d8d182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 96 additions and 82 deletions

View File

@ -3,95 +3,109 @@
<%- include("extra/meta", {title: member.name }) %>
<link rel="stylesheet" href="/css/user.css" />
<body style="text-align: center;">
<%- include("extra/navbar") %>
<body >
<%- include("extra/navbar") %>
<ul>
<li>
<h1 style="color: #4d18e6;">Avatar:</h1>
<img style="width:256px;height:256px;" src="<%=member.avatar %>">
</li>
<div class="content">
<div class="box" style="justify-content:center;">
<img style="width:100px;height:100px;border-radius:50%;" src="<%=member.avatar %>">
</div>
<div class="box">
<h2 class="box-title">Name: <%= member.name %>
</h2>
<h2 class="box-title">
<%= member.name %>
</h2>
<li>
<h2 style="color: #606060;">Name: <%= member.name %>
</h2>
</li>
<li>
<h2 style="color: #606060;">Created at:
<%= new Date(member.time).toLocaleString() %>
</h2>
</div>
<div class="box">
<h2 class="box-title">Created at:
</h2>
<h2 class="box-title">
<%= new Date(member.time).toLocaleString() %>
</h2>
</div>
<div class="box">
<h2 class="box-title">Is admin?
</h2>
<h2 class="box-title">
<%= member.admin ? "Yes" : "No" %>
</h2>
</div>
<div class="box">
<h2 class="box-title"> Message:
</h2>
<h2 class="box-title">
<%= counts.message %>
</h2>
</div>
<div class="box">
<h2 class="box-title"> Thread:
</h2>
<h2 class="box-title">
<%= counts.thread %>
</h2>
</div>
</div>
<% if (user?.admin && !member.deleted) {%>
<a class="big" id="admin">Give admin permissions!</a>
<a class="big" id="delete">Delete user!</a>
<script type="module">
import request from "../../js/request.js";
document.addEventListener("click", async e => {
e.preventDefault();
if (e.target.id == "admin") {
const response = await request("/api/users/<%= member.id %>/admin");
if (response.admin)
return alert("Making admin of " + response.name + " is success!");
}
const response = await request("/api/users/<%= member.id %>/delete");
if (!response.deleted) return
alert("User is deleted!");
location.reload()
});
</li>
<li>
<h2 style="color: #606060;">Is admin? <%= member.admin ? "Yes" : "No" %>
</h2>
</li>
<li>
<h2 style="color: #606060;"> Message: <%= counts.message %>
</h2>
</li>
<li>
<h2 style="color: #606060;"> Thread: <%= counts.thread %>
</h2>
</li>
</ul>
<% if (user?.admin && !member.deleted) {%>
<a class="big" id="admin">Give admin permissions!</a>
<a class="big" id="delete">Delete user!</a>
</script>
<% }; %>
<% if (member.deleted) {%>
<h1>This user has been deleted!</h1>
<a onclick="undelete();" type="">Undelete user! </a>
<script type="module">
import request from "../../js/request.js";
document.addEventListener("click", async e => {
e.preventDefault();
if (e.target.id == "admin") {
const response = await request("/api/users/<%= member.id %>/admin");
if (response.admin)
return alert("Making admin of " + response.name + " is success!");
} else if (e.target.id == "delete") {
const response = await request("/api/users/<%= member.id %>/delete");
if (!response.deleted) return;
alert("User is deleted!");
async function undelete(params) {
const response = await request("/api/users/<%= member.id %>/undelete");
if (response.deleted) return;
alert("User is undeleted successfully!");
location.reload()
}
});
}
</script>
<% }; %>
<% if (member.deleted) {%>
<h1>This user has been deleted!</h1>
<a onclick="undelete();" type="">Undelete user! </a>
<% }; %>
</body>
<script type="module">
import request from "../../js/request.js";
async function undelete(params) {
const response = await request("/api/users/<%= member.id %>/undelete");
if (response.deleted) return;
alert("User is undeleted successfully!");
location.reload()
}
</script>
<% }; %>
</body>
</html>
</html>