2017-11-19 15:40:02 -08:00
|
|
|
//
|
|
|
|
// StarredFeedDelegate.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/19/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2018-07-23 18:29:08 -07:00
|
|
|
import Articles
|
2017-11-19 15:40:02 -08:00
|
|
|
import Account
|
|
|
|
|
|
|
|
|
|
|
|
struct StarredFeedDelegate: SmartFeedDelegate {
|
|
|
|
|
|
|
|
let nameForDisplay = NSLocalizedString("Starred", comment: "Starred pseudo-feed title")
|
|
|
|
|
|
|
|
func fetchUnreadCount(for account: Account, callback: @escaping (Int) -> Void) {
|
|
|
|
|
|
|
|
account.fetchUnreadCountForStarredArticles(callback)
|
|
|
|
}
|
2018-02-10 13:22:02 -08:00
|
|
|
|
|
|
|
// MARK: ArticleFetcher
|
|
|
|
|
|
|
|
func fetchArticles() -> Set<Article> {
|
|
|
|
|
2018-02-11 12:07:55 -08:00
|
|
|
var articles = Set<Article>()
|
|
|
|
for account in AccountManager.shared.accounts {
|
|
|
|
articles.formUnion(account.fetchStarredArticles())
|
|
|
|
}
|
|
|
|
return articles
|
2018-02-10 13:22:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func fetchUnreadArticles() -> Set<Article> {
|
|
|
|
|
|
|
|
return fetchArticles().unreadArticles()
|
|
|
|
}
|
|
|
|
|
2017-11-19 15:40:02 -08:00
|
|
|
}
|