Hide "Replying to" in threads when appropriate

This commit is contained in:
Zed
2019-07-02 01:01:27 +02:00
parent a67d27e0c4
commit f378eedcc8
2 changed files with 7 additions and 6 deletions

View File

@@ -106,8 +106,8 @@
<div class="main-thread">
#if conversation.before.tweets.len > 0:
<div class="before-tweet thread-line">
#for tweet in conversation.before.tweets:
${renderTweet(tweet)}
#for i, tweet in conversation.before.tweets:
${renderTweet(tweet, first=(i == 0))}
#end for
</div>
#end if
@@ -118,7 +118,7 @@
#if conversation.after.tweets.len > 0:
<div class="after-tweet thread-line">
#for i, tweet in conversation.after.tweets:
${renderTweet(tweet, last=(i == conversation.after.tweets.high))}
${renderTweet(tweet, first=(i == 0), last=(i == conversation.after.tweets.high))}
#end for
</div>
#end if
@@ -128,7 +128,8 @@
#for thread in conversation.replies:
<div class="reply thread thread-line">
#for i, tweet in thread.tweets:
${renderTweet(tweet, last=(i == thread.tweets.high and thread.more == 0))}
#let last = (i == thread.tweets.high and thread.more == 0)
${renderTweet(tweet, first=(i == 0), last=last)}
#end for
#if thread.more != 0:
#let num = if thread.more != -1: $thread.more & " " else: ""