Prettier.

This commit is contained in:
Cory McWilliams 2024-04-24 19:23:13 -04:00
parent d528bc808e
commit a947396bad
5 changed files with 64 additions and 39 deletions

View File

@ -236,7 +236,13 @@ class TfElement extends LitElement {
console.log(by_count.sort((x, y) => y.count - x.count).slice(0, 20)); console.log(by_count.sort((x, y) => y.count - x.count).slice(0, 20));
let start_time = new Date(); let start_time = new Date();
users = await this.fetch_about(Object.keys(following).sort(), users); users = await this.fetch_about(Object.keys(following).sort(), users);
console.log('about took', (new Date() - start_time) / 1000.0, 'seconds for', Object.keys(users).length, 'users'); console.log(
'about took',
(new Date() - start_time) / 1000.0,
'seconds for',
Object.keys(users).length,
'users'
);
this.following = Object.keys(following); this.following = Object.keys(following);
this.users = users; this.users = users;
await tags; await tags;

View File

@ -550,7 +550,8 @@ class TfComposeElement extends LitElement {
@input=${this.input} @input=${this.input}
@paste=${this.paste} @paste=${this.paste}
contenteditable contenteditable
>${draft.text}</span> >${draft.text}</span
>
</div> </div>
<div class="w3-half w3-padding"> <div class="w3-half w3-padding">
${content_warning} ${content_warning}

View File

@ -72,10 +72,7 @@ class TfMessageElement extends LitElement {
return expression; return expression;
} }
} }
return html`<div return html`<div class="w3-button" @click=${this.show_reactions}>
class="w3-button"
@click=${this.show_reactions}
>
${(this.message.votes || []).map( ${(this.message.votes || []).map(
(vote) => html` (vote) => html`
<span <span

View File

@ -23,29 +23,45 @@ class TfReactionsModalElement extends LitElement {
render() { render() {
let self = this; let self = this;
return this.votes?.length ? html` return this.votes?.length
<div class="w3-modal w3-animate-opacity" style="display: block; box-sizing: border-box"> ? html` <div
class="w3-modal w3-animate-opacity"
style="display: block; box-sizing: border-box"
>
<div class="w3-modal-content w3-card-4 w3-theme-d1"> <div class="w3-modal-content w3-card-4 w3-theme-d1">
<div class="w3-container w3-padding"> <div class="w3-container w3-padding">
<header class="w3-container"> <header class="w3-container">
<h2>Reactions</h2> <h2>Reactions</h2>
<span class="w3-button w3-display-topright" @click=${this.clear}>&times;</span> <span class="w3-button w3-display-topright" @click=${this.clear}
>&times;</span
>
</header> </header>
<ul class="w3-theme-dark w3-container w3-ul"> <ul class="w3-theme-dark w3-container w3-ul">
${this.votes.map(x => html` ${this.votes.map(
(x) => html`
<li class="w3-bar"> <li class="w3-bar">
<span class="w3-bar-item">${x?.content?.vote?.expression}</span> <span class="w3-bar-item"
<tf-user class="w3-bar-item" id=${x.author} .users=${this.users}></tf-user> >${x?.content?.vote?.expression}</span
<span class="w3-bar-item w3-right">${new Date(x?.timestamp).toLocaleString()}</span> >
<tf-user
class="w3-bar-item"
id=${x.author}
.users=${this.users}
></tf-user>
<span class="w3-bar-item w3-right"
>${new Date(x?.timestamp).toLocaleString()}</span
>
</li> </li>
`)} `
)}
</ul> </ul>
<footer class="w3-container w3-padding"> <footer class="w3-container w3-padding">
<button class="w3-button" @click=${this.clear}>Close</button> <button class="w3-button" @click=${this.clear}>Close</button>
</footer> </footer>
</div> </div>
</div> </div>
</div>` : undefined; </div>`
: undefined;
} }
} }

View File

@ -347,7 +347,12 @@ class TfNavigationElement extends LitElement {
${this.status?.message && !this.status.is_error ${this.status?.message && !this.status.is_error
? html` ? html`
<link type="text/css" rel="stylesheet" href="/static/w3.css" /> <link type="text/css" rel="stylesheet" href="/static/w3.css" />
<div class="w3-bar-item" style="color: ${this.status.color ?? kStatusColor}">${this.status.message}</div> <div
class="w3-bar-item"
style="color: ${this.status.color ?? kStatusColor}"
>
${this.status.message}
</div>
` `
: undefined} : undefined}
${Object.keys(this.spark_lines) ${Object.keys(this.spark_lines)