teddit-reddit-frontend-alte.../views/subreddit.pug

154 lines
6.2 KiB
Plaintext
Raw Normal View History

2020-11-17 21:44:32 +01:00
doctype html
html
head
title /r/#{subreddit}
include includes/head.pug
2020-11-21 13:50:12 +01:00
body(class=""+ user_preferences.theme +"")
2020-11-17 21:44:32 +01:00
include includes/topbar.pug
if json === null
h1 Error occured
if error
if json.error_data.reason === "private"
h2 This is a private subreddit.
p Error: #{JSON.stringify(json.error_data)}
else
header
a(href="/", class="main")
h1 teddit
.bottom
if !subreddit.includes('+')
a(href="/r/" + subreddit + "", class="subreddit")
h2 #{subreddit}
2020-11-17 21:44:32 +01:00
ul.tabmenu
li(class=!sortby || sortby == 'hot' ? 'active' : '')
a(href="/r/" + subreddit) hot
li(class=sortby === 'new' ? 'active' : '')
a(href="/r/" + subreddit + "/new") new
li(class=sortby === 'rising' ? 'active' : '')
a(href="/r/" + subreddit + "/rising") rising
li(class=sortby === 'controversial' ? 'active' : '')
a(href="/r/" + subreddit + "/controversial") controversial
li(class=sortby === 'top' ? 'active' : '')
a(href="/r/" + subreddit + "/top") top
#links.sr
if sortby === 'top' || sortby === 'controversial'
details
summary
if past === 'hour'
span links from: past hour
2020-11-30 16:36:10 +01:00
if past === 'day'
span links from: past 24 hours
2020-11-17 21:44:32 +01:00
if past === 'week'
span links from: past week
if past === 'month'
span links from: past month
if past === 'year'
span links from: past year
if past === 'all'
span links from: all time
ul
li(class=past === 'hour' ? 'active' : '')
a(href="?t=hour") past hour
2020-11-30 16:36:10 +01:00
li(class=past === 'day' ? 'active' : '')
a(href="?t=day") past 24 hours
2020-11-17 21:44:32 +01:00
li(class=past === 'week' ? 'active' : '')
a(href="?t=week") past week
li(class=past === 'month' ? 'active' : '')
a(href="?t=month") past month
li(class=past === 'year' ? 'active' : '')
a(href="?t=year") past year
li(class=past === 'all' ? 'active' : '')
a(href="?t=all") all time
if json.links.length === 0
p nothing here
else
each link in json.links
.link
.upvotes
.arrow
span #{kFormatter(link.ups)}
.arrow.down
.image
if link.images
if link.is_self_link
a(href="" + link.permalink + "")
img(src="" + link.images.thumb + "", alt="")
else
a(href=""+ link.url +"")
img(src="" + link.images.thumb + "", alt="")
else
a(href="" + link.permalink + "")
.no-image
.entry
.title
if link.is_self_link
a(href="" + link.permalink + "")
2020-12-04 18:10:33 +01:00
h2(class="" + (link.stickied ? 'green' : '') + "") #{cleanTitle(link.title)}
2020-12-21 12:33:43 +01:00
!= link.link_flair
2020-11-17 21:44:32 +01:00
span (#{link.domain})
else
a(href="" + link.url + "")
2020-12-04 18:10:33 +01:00
h2(class="" + (link.stickied ? 'green' : '') + "") #{cleanTitle(link.title)}
2020-12-21 12:33:43 +01:00
!= link.link_flair
2020-11-17 21:44:32 +01:00
span (#{link.domain})
.meta
p.submitted submitted
span(title="" + toUTCString(link.created) + "") #{timeDifference(link.created)} by
if link.author === '[deleted]'
span(class="deleted") [deleted]
else
a(href="/u/" + link.author + "")
| #{link.author}
2020-12-21 12:27:31 +01:00
!= link.user_flair
2020-11-17 21:44:32 +01:00
p.to to
a(href="/r/" + link.subreddit + "")
| #{link.subreddit}
2020-12-04 18:10:33 +01:00
if link.stickied
span(class="green") stickied
2020-12-23 15:52:51 +01:00
.links
if link.over_18
span.tag.nsfw NSFW
2020-11-17 21:44:32 +01:00
a(href="" + link.permalink + "", class="comments")
2020-11-30 16:55:52 +01:00
| #{link.num_comments} comments
2020-11-29 21:52:26 +01:00
if json.info.before || json.info.after
.view-more-inks
if json.info.before && !subreddit_front
a(href="/r/" + subreddit + "/" + sortby + "?t="+ (past ? past : '') +"&before=" + json.info.before + "") prev
if json.info.after
a(href="/r/" + subreddit + "/" + sortby + "?t=" + (past ? past : '') + "&after=" + json.info.after + "") next
#sidebar
#search.sr
p search
form(action="/r/" + subreddit + "/search", method="GET")
input(type="text", name="q", id="q", placeholder="search")
div
label(for="restrict_sr") limit my search to r/#{subreddit}
input(type="checkbox", name="restrict_sr", id="restrict_sr", checked="checked")
div
label(for="nsfw") include NSFW results
input(type="checkbox", name="nsfw", id="nsfw", checked="checked")
input(type="submit", value="search")
if sidebar_data
2020-11-29 22:33:35 +01:00
if sidebar_data.subscribers
.content
p subscribers: #{sidebar_data.subscribers.toLocaleString()}
p users here right now: #{sidebar_data.active_user_count.toLocaleString()}
br
.heading
p.title #{sidebar_data.title}
.short-description
!= unescape(sidebar_data.public_description_html)
.description
!= unescape(sidebar_data.description_html)
2020-12-04 17:30:54 +01:00
else
if subreddit.includes('+')
.content
p These subreddits
-
let subreddits = subreddit.split('+')
ul(class="subreddit-listing")
each subreddit in subreddits
li
a(href="/r/" + subreddit + "") #{subreddit}