Make progress on showing avatars in the detail view.

This commit is contained in:
Brent Simmons 2017-12-29 12:21:19 -08:00
parent bdaab17f37
commit 708e46ed18
3 changed files with 41 additions and 9 deletions

View File

@ -167,6 +167,16 @@ class ArticleRenderer {
if let feedURL = article.feed?.homePageURL {
feedLink = linkWithTextAndClass(feedTitle, feedURL, "feedLink")
}
if let feedIcon = article.feed?.iconURL {
let feedIconImage = "<img src=\"\(feedIcon)\" height=\"48\" width=\"48\" class=\"feedIcon\" />"
if let feedURL = article.feed?.homePageURL {
let feedIconImageLink = linkWithText(feedIconImage, feedURL)
feedLink = feedIconImageLink + " " + feedLink
}
else {
feedLink = feedIconImage + " " + feedLink
}
}
}
d["feedlink"] = feedLink
d["feedlink_withfavicon"] = feedLink
@ -181,10 +191,27 @@ class ArticleRenderer {
d["date_short"] = shortDate
d["byline"] = byline()
d["author_avatar"] = authorAvatar()
return d
}
private func authorAvatar() -> String {
guard let authors = article.authors, authors.count == 1, let author = authors.first else {
return ""
}
guard let avatarURL = author.avatarURL else {
return ""
}
var imageTag = "<img src=\"\(avatarURL)\" height=64 width=64 />"
if let authorURL = author.url {
imageTag = linkWithText(imageTag, authorURL)
}
return "<div id=authorAvatar>\(imageTag)</div>"
}
private func byline() -> String {
guard let authors = article.authors ?? article.feed?.authors, !authors.isEmpty else {
@ -221,15 +248,8 @@ class ArticleRenderer {
}
}
byline = "By " + byline
if authors.count == 1, let author = authors.first {
if let avatarURL = author.avatarURL {
byline = "<img src=\"\(avatarURL)\" height=\"64\" width=\"64\" /> " + byline
}
}
return byline
return "" + byline
}
private func renderedHTML() -> String {

View File

@ -31,6 +31,16 @@ a:hover {
#articleDescription {
line-height: 1.5em;
}
#authorAvatar {
margin-top: 2em;
text-align: left;
}
#authorAvatar img {
border-radius: 5px;
}
.feedIcon {
border-radius: 5px;
}
h1 {
line-height: 1.15em;
font-weight: medium;

View File

@ -1,3 +1,5 @@
<div id="articleDateline">[[feedlink_withfavicon]] • <span class="articleDate">[[date_medium]]</span></div>
<div id="articleDateline">[[feedlink_withfavicon]] [[byline]]<br />
<span class="articleDate">[[date_medium]]</span></div>
<div id="articleTitle"><h1>[[newsitem_title]]</h1></div>
<div id="articleDescription">[[newsitem_description]]</div>