@if (loading) {
Loading conversation...
} @if (!loading && target) {
@for (ancestor of ancestors; track ancestor.id; let i = $index) {
{{ ancestor.account.display_name || ancestor.account.acct }} @{{ ancestor.account.acct }} 👤 @if (i === 0) { ROOT }
{{ ancestor.created_at | date: 'short' }} @if (getOriginalPostUrl(ancestor); as ancestorUrl) { 🔗 Original }
@for (url of getPostUrls(ancestor); track url) {
} @if (getMediaImages(ancestor).length > 0) {
@for (m of getMediaImages(ancestor); track m.id) { }
} @if (getMediaVideos(ancestor).length > 0) {
@for (m of getMediaVideos(ancestor); track m.id) { }
}
}

{{ target.account.display_name || target.account.acct }}

@{{ target.account.acct }} 👤
@if (ancestors.length === 0) { ROOT }
{{ target.created_at | date: 'medium' }}
@if (getOriginalPostUrl(target); as targetUrl) { 🔗 View on Mastodon }
@for (url of getPostUrls(target); track url; let ti = $index) {
} @if (getMediaImages(target).length > 0) {
@for (m of getMediaImages(target); track m.id; let mi = $index) { }
} @if (getMediaVideos(target).length > 0) {
@for (m of getMediaVideos(target); track m.id) { }
}
💬 {{ target.replies_count }} Replies 🔁 {{ target.reblogs_count }} Boosts {{ target.favourites_count }} Likes
@if (descendantTree.length > 0) {

Discussion

@for (node of descendantTree; track node.post.id) {
}
} @if (descendantTree.length === 0 && target.replies_count > 0) {
Replies may be missing from this server's cache.
}
}
{{ node.post.account.display_name || node.post.account.acct }} 👤 @if (isActiveUser(node.post)) { AUTHOR } {{ node.post.created_at | date: 'short' }} @if (getOriginalPostUrl(node.post); as nodeUrl) { 🔗 }
@for (url of getPostUrls(node.post); track url) {
} @if (getMediaImages(node.post).length > 0) {
@for (m of getMediaImages(node.post); track m.id) { }
} @if (getMediaVideos(node.post).length > 0) {
@for (m of getMediaVideos(node.post); track m.id) { }
}
@if (node.post.favourites_count > 0) { ⭐ {{ node.post.favourites_count }} }
@if (node.children.length > 0) {
@for (child of node.children; track child.post.id) {
}
}