Skip to content

Commit 40dca1d

Browse files
committed
Convert code for profile status to DOM
1 parent 3c58c79 commit 40dca1d

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

src/profile.ts

+13-4
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,28 @@ async function addUserInfo (uok: UsernameOrKaid): Promise<void> {
8686
if (!data.hasOwnProperty("discussion_banned")) {
8787
throw new Error("Error loading ban information.");
8888
}else {
89-
let bannedHTML = `<tr><td class="user-statistics-label">Banned</td>`;
89+
const bannedTag = document.createElement("tr");
90+
const bannedLabel = document.createElement("td");
91+
bannedLabel.className = "user-statistics-label";
92+
bannedLabel.textContent = "Banned";
93+
bannedTag.appendChild(bannedLabel);
94+
95+
const bannedOutput = document.createElement("td");
9096

9197
if (data.discussion_banned === false) {
92-
bannedHTML += `<td>No</td>`;
98+
bannedOutput.textContent = "No";
99+
bannedTag.appendChild(bannedTag);
93100
}else if (data.discussion_banned === true) {
94-
bannedHTML += `<td style="color: red">Discussion banned</td>`;
101+
bannedOutput.style.color = "red";
102+
bannedOutput.textContent = "Discussion banned";
103+
bannedTag.appendChild(bannedTag);
95104
}else {
96105
throw new Error("Error loading ban information.");
97106
}
98107

99108
const lastTR = table.querySelector("tr:last-of-type");
100109
if (!lastTR) { throw new Error("Table has no tr"); }
101-
lastTR.outerHTML = bannedHTML + `</tr>` + lastTR.outerHTML;
110+
table.insertBefore(bannedTag, lastTR);
102111
}
103112
});
104113
}

src/project.ts

+4-7
Original file line numberDiff line numberDiff line change
@@ -105,23 +105,20 @@ function checkHiddenOrDeleted () {
105105
if (response.status === 200) {
106106
const PROGRAM_VIEW = `https://khan.github.io/live-editor/demos/simple/?scratchpad=${id}`;
107107

108-
msg.innerHTML = "This ";
109-
110108
const programTag = document.createElement("a");
111109
programTag.className = "kae-white";
112110
programTag.style.textDecoration = "none";
113111
programTag.href = PROGRAM_VIEW;
114112
programTag.innerText = "program";
115-
msg.appendChild(programTag);
116-
117-
msg.innerHTML = msg.innerHTML + " is completely hidden. (";
118-
119113
const apiTag = document.createElement("a");
120114
apiTag.className = "kae-white";
121115
apiTag.href = API_URL + "?format=pretty";
122116
apiTag.innerText = "API";
123-
msg.appendChild(apiTag);
124117

118+
msg.innerHTML = "This ";
119+
msg.appendChild(programTag);
120+
msg.innerHTML = msg.innerHTML + " is completely hidden. (";
121+
msg.appendChild(apiTag);
125122
msg.innerHTML = msg.innerHTML + ")";
126123
} else if (response.status === 404) {
127124
msg.innerHTML = "This program is actually deleted.";

0 commit comments

Comments
 (0)