2017-05-27 19:43:27 +02:00
|
|
|
//
|
|
|
|
// TimelineCellData.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 2/6/16.
|
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Cocoa
|
2017-09-17 21:22:15 +02:00
|
|
|
import Data
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
var attributedTitleCache = [String: NSAttributedString]()
|
|
|
|
var attributedDateCache = [String: NSAttributedString]()
|
|
|
|
var attributedFeedNameCache = [String: NSAttributedString]()
|
|
|
|
|
|
|
|
struct TimelineCellData {
|
|
|
|
|
|
|
|
let title: String
|
|
|
|
let text: String
|
|
|
|
let attributedTitle: NSAttributedString //title + text
|
|
|
|
let dateString: String
|
|
|
|
let attributedDateString: NSAttributedString
|
|
|
|
let feedName: String
|
|
|
|
let attributedFeedName: NSAttributedString
|
|
|
|
let showFeedName: Bool
|
|
|
|
let favicon: NSImage?
|
2017-11-26 06:27:35 +01:00
|
|
|
let avatar: NSImage? // feed or user avatar
|
|
|
|
let featuredImage: NSImage? // image from within the article
|
2017-05-27 19:43:27 +02:00
|
|
|
let read: Bool
|
|
|
|
|
2017-12-30 21:45:10 +01:00
|
|
|
init(article: Article, appearance: TimelineCellAppearance, showFeedName: Bool, feedName: String?, favicon: NSImage?, avatar: NSImage?, featuredImage: NSImage?) {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
self.title = timelineTruncatedTitle(article)
|
|
|
|
self.text = timelineTruncatedSummary(article)
|
|
|
|
|
|
|
|
let attributedTitleCacheKey = "_title: " + self.title + "_text: " + self.text
|
|
|
|
if let s = attributedTitleCache[attributedTitleCacheKey] {
|
|
|
|
self.attributedTitle = s
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.attributedTitle = attributedTitleString(title, text, appearance)
|
|
|
|
attributedTitleCache[attributedTitleCacheKey] = self.attributedTitle
|
|
|
|
}
|
|
|
|
|
|
|
|
self.dateString = timelineDateString(article.logicalDatePublished)
|
|
|
|
if let s = attributedDateCache[self.dateString] {
|
|
|
|
self.attributedDateString = s
|
|
|
|
}
|
|
|
|
else {
|
2017-09-18 02:03:58 +02:00
|
|
|
self.attributedDateString = NSAttributedString(string: self.dateString, attributes: [NSAttributedStringKey.foregroundColor: appearance.dateColor, NSAttributedStringKey.font: appearance.dateFont])
|
2017-05-27 19:43:27 +02:00
|
|
|
attributedDateCache[self.dateString] = self.attributedDateString
|
|
|
|
}
|
|
|
|
|
2017-12-30 21:45:10 +01:00
|
|
|
if let feedName = feedName {
|
|
|
|
self.feedName = timelineTruncatedFeedName(feedName)
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.feedName = ""
|
|
|
|
}
|
2017-12-30 21:45:10 +01:00
|
|
|
if let s = attributedFeedNameCache[self.feedName] {
|
2017-05-27 19:43:27 +02:00
|
|
|
self.attributedFeedName = s
|
|
|
|
}
|
|
|
|
else {
|
2017-09-18 02:03:58 +02:00
|
|
|
self.attributedFeedName = NSAttributedString(string: self.feedName, attributes: [NSAttributedStringKey.foregroundColor: appearance.feedNameColor, NSAttributedStringKey.font: appearance.feedNameFont])
|
2017-05-27 19:43:27 +02:00
|
|
|
attributedFeedNameCache[self.feedName] = self.attributedFeedName
|
|
|
|
}
|
|
|
|
|
|
|
|
self.showFeedName = showFeedName
|
|
|
|
|
2017-11-26 06:27:35 +01:00
|
|
|
self.favicon = favicon
|
|
|
|
self.avatar = avatar
|
|
|
|
self.featuredImage = featuredImage
|
|
|
|
|
2017-09-24 21:24:44 +02:00
|
|
|
self.read = article.status.read
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
init() { //Empty
|
|
|
|
|
|
|
|
self.title = ""
|
|
|
|
self.attributedTitle = NSAttributedString(string: "")
|
|
|
|
self.text = ""
|
|
|
|
self.dateString = ""
|
|
|
|
self.attributedDateString = NSAttributedString(string: "")
|
|
|
|
self.feedName = ""
|
|
|
|
self.attributedFeedName = NSAttributedString(string: "")
|
|
|
|
self.showFeedName = false
|
|
|
|
self.favicon = nil
|
2017-11-26 06:27:35 +01:00
|
|
|
self.avatar = nil
|
|
|
|
self.featuredImage = nil
|
2017-05-27 19:43:27 +02:00
|
|
|
self.read = true
|
|
|
|
}
|
|
|
|
|
|
|
|
static func emptyCache() {
|
|
|
|
|
|
|
|
attributedTitleCache = [String: NSAttributedString]()
|
|
|
|
attributedDateCache = [String: NSAttributedString]()
|
|
|
|
attributedFeedNameCache = [String: NSAttributedString]()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let emptyCellData = TimelineCellData()
|
|
|
|
|
|
|
|
private func attributedTitleString(_ title: String, _ text: String, _ appearance: TimelineCellAppearance) -> NSAttributedString {
|
|
|
|
|
|
|
|
if !title.isEmpty && !text.isEmpty {
|
|
|
|
|
2017-09-18 01:30:45 +02:00
|
|
|
let titleMutable = NSMutableAttributedString(string: title, attributes: [NSAttributedStringKey.foregroundColor: appearance.titleColor, NSAttributedStringKey.font: appearance.titleFont])
|
|
|
|
let attributedText = NSAttributedString(string: "\n" + text, attributes: [NSAttributedStringKey.foregroundColor: appearance.textColor, NSAttributedStringKey.font: appearance.textFont])
|
2017-05-27 19:43:27 +02:00
|
|
|
titleMutable.append(attributedText)
|
|
|
|
return titleMutable
|
|
|
|
}
|
|
|
|
|
|
|
|
if !title.isEmpty && text.isEmpty {
|
2017-09-18 01:30:45 +02:00
|
|
|
return NSAttributedString(string: title, attributes: [NSAttributedStringKey.foregroundColor: appearance.titleColor, NSAttributedStringKey.font: appearance.titleFont])
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
|
2017-09-18 01:30:45 +02:00
|
|
|
return NSAttributedString(string: text, attributes: [NSAttributedStringKey.foregroundColor: appearance.textColor, NSAttributedStringKey.font: appearance.textFont])
|
2017-05-27 19:43:27 +02:00
|
|
|
}
|
|
|
|
|