2017-11-20 00:40:02 +01:00
|
|
|
//
|
|
|
|
// StarredFeedDelegate.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
// NetNewsWire
|
2017-11-20 00:40:02 +01:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/19/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2018-07-24 03:29:08 +02:00
|
|
|
import Articles
|
2017-11-20 00:40:02 +01: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 22:22:02 +01:00
|
|
|
|
|
|
|
// MARK: ArticleFetcher
|
|
|
|
|
|
|
|
func fetchArticles() -> Set<Article> {
|
|
|
|
|
2018-02-11 21:07:55 +01:00
|
|
|
var articles = Set<Article>()
|
2019-05-02 13:01:30 +02:00
|
|
|
for account in AccountManager.shared.activeAccounts {
|
2018-02-11 21:07:55 +01:00
|
|
|
articles.formUnion(account.fetchStarredArticles())
|
|
|
|
}
|
|
|
|
return articles
|
2018-02-10 22:22:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func fetchUnreadArticles() -> Set<Article> {
|
|
|
|
|
|
|
|
return fetchArticles().unreadArticles()
|
|
|
|
}
|
|
|
|
|
2017-11-20 00:40:02 +01:00
|
|
|
}
|