cli images

This commit is contained in:
ThatOneCalculator 2023-03-19 02:33:44 -07:00
parent 0fa22b8598
commit 749117a2ce
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 11 additions and 2 deletions

View file

@ -18,7 +18,6 @@ main {
}
img {
height: 45px;
border-radius: 10px;
margin-right: 10px;
}

View file

@ -50,12 +50,22 @@ window.onload = async () => {
const avatar = document.createElement("img")
name.textContent = `${note.user.name} @${note.user.username}`;
avatar.src = note.user.avatarUrl;
avatar.style = 'height: 40px'
const text = document.createElement("div");
text.textContent = `${note.text}`;
el.appendChild(header);
header.appendChild(avatar);
header.appendChild(name);
el.appendChild(text);
if (note.text) {
el.appendChild(text);
}
if (note.files) {
for (const file of note.files) {
const img = document.createElement("img");
img.src = file.properties.thumbnailUrl;
el.appendChild(img)
}
}
tl.appendChild(el);
}
});