${this.loading
? html`
${this.loadingText}
`
: this.error
? nothing
: this.mentions.length === 0
? html`
${this.emptyText}
`
: html`
${this.likes.length > 0 || this.reposts.length > 0
? html`
${this.likes.length > 0
? html`
♥
${this.likes.length} like${this.likes.length !== 1 ? "s" : ""}
`
: nothing}
${this.reposts.length > 0
? html`
↩
${this.reposts.length} repost${this.reposts.length !== 1 ? "s" : ""}
`
: nothing}
`
: nothing}
${this.replies.length > 0
? html`
${this.pagedReplies.map((m) => this.renderReply(m))}
${this.renderPagination()}
`
: nothing}
`}