| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import strutils, strformat, algorithm, times
- import karax/[karaxdsl, vdom, vstyles]
- import ../types, ../search
- import tweet, renderutils
- proc getQuery(timeline: Timeline): string =
- if timeline.query.isNone: "?"
- else: genQueryUrl(get(timeline.query))
- proc getTabClass(timeline: Timeline; tab: string): string =
- var classes = @["tab-item"]
- if timeline.query.isNone:
- if tab == "posts":
- classes.add "active"
- elif $timeline.query.get().kind == tab:
- classes.add "active"
- return classes.join(" ")
- proc renderSearchTabs(timeline: Timeline; profile: Profile): VNode =
- let link = "/" & profile.username
- buildHtml(ul(class="tab")):
- li(class=timeline.getTabClass("posts")):
- a(href=link): text "Tweets"
- li(class=timeline.getTabClass("replies")):
- a(href=(link & "/replies")): text "Tweets & Replies"
- li(class=timeline.getTabClass("media")):
- a(href=(link & "/media")): text "Media"
- proc renderNewer(timeline: Timeline; profile: Profile): VNode =
- buildHtml(tdiv(class="status-el show-more")):
- a(href=("/" & profile.username & getQuery(timeline).strip(chars={'?'}))):
- text "Load newest tweets"
- proc renderOlder(timeline: Timeline; profile: Profile): VNode =
- buildHtml(tdiv(class="show-more")):
- a(href=(&"/{profile.username}{getQuery(timeline)}after={timeline.minId}")):
- text "Load older tweets"
- proc renderNoMore(): VNode =
- buildHtml(tdiv(class="timeline-footer")):
- h2(class="timeline-end", style={textAlign: "center"}):
- text "No more tweets."
- proc renderNoneFound(): VNode =
- buildHtml(tdiv(class="timeline-header")):
- h2(class="timeline-none", style={textAlign: "center"}):
- text "No tweets found."
- proc renderProtected(username: string): VNode =
- buildHtml(tdiv(class="timeline-header timeline-protected")):
- h2: text "This account's tweets are protected."
- p: text &"Only confirmed followers have access to @{username}'s tweets."
- proc renderThread(thread: seq[Tweet]): VNode =
- buildHtml(tdiv(class="timeline-tweet thread-line")):
- for i, threadTweet in thread.sortedByIt(it.time):
- renderTweet(threadTweet, "thread", index=i, total=thread.high)
- proc threadFilter(it: Tweet; tweetThread: string): bool =
- it.retweet.isNone and it.reply.len == 0 and it.threadId == tweetThread
- proc renderTweets(timeline: Timeline): VNode =
- buildHtml(tdiv(id="posts")):
- var threads: seq[string]
- for tweet in timeline.tweets:
- if tweet.threadId in threads: continue
- let thread = timeline.tweets.filterIt(threadFilter(it, tweet.threadId))
- if thread.len < 2:
- renderTweet(tweet, "timeline-tweet")
- else:
- renderThread(thread)
- threads &= tweet.threadId
- proc renderTimeline*(timeline: Timeline; profile: Profile): VNode =
- buildHtml(tdiv):
- renderSearchTabs(timeline, profile)
- if not profile.protected and not timeline.beginning:
- renderNewer(timeline, profile)
- if profile.protected:
- renderProtected(profile.username)
- elif timeline.tweets.len == 0:
- renderNoneFound()
- else:
- renderTweets(timeline)
- if timeline.hasMore or timeline.query.isSome:
- renderOlder(timeline, profile)
- else:
- renderNoMore()
|