2017-11-19 15:40:02 -08:00
|
|
|
//
|
|
|
|
// TodayFeedDelegate.swift
|
2018-08-28 22:18:24 -07:00
|
|
|
// NetNewsWire
|
2017-11-19 15:40:02 -08:00
|
|
|
//
|
|
|
|
// 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 TodayFeedDelegate: SmartFeedDelegate {
|
|
|
|
|
|
|
|
let nameForDisplay = NSLocalizedString("Today", comment: "Today pseudo-feed title")
|
|
|
|
|
|
|
|
func fetchUnreadCount(for account: Account, callback: @escaping (Int) -> Void) {
|
|
|
|
|
|
|
|
account.fetchUnreadCountForToday(callback)
|
|
|
|
}
|
2018-02-10 13:22:02 -08:00
|
|
|
|
|
|
|
// MARK: ArticleFetcher
|
|
|
|
|
|
|
|
func fetchArticles() -> Set<Article> {
|
|
|
|
|
2018-02-10 17:37:47 -08:00
|
|
|
var articles = Set<Article>()
|
|
|
|
for account in AccountManager.shared.accounts {
|
|
|
|
articles.formUnion(account.fetchTodayArticles())
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|