2017-11-19 22:57:42 +01:00
|
|
|
//
|
|
|
|
// UnreadFeed.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/19/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2018-02-10 22:00:53 +01:00
|
|
|
import Account
|
|
|
|
import Data
|
2017-11-19 22:57:42 +01:00
|
|
|
|
|
|
|
// This just shows the global unread count, which appDelegate already has. Easy.
|
|
|
|
|
|
|
|
final class UnreadFeed: PseudoFeed {
|
|
|
|
|
|
|
|
let nameForDisplay = NSLocalizedString("All Unread", comment: "All Unread pseudo-feed title")
|
|
|
|
|
|
|
|
var unreadCount = 0 {
|
|
|
|
didSet {
|
|
|
|
if unreadCount != oldValue {
|
|
|
|
postUnreadCountDidChangeNotification()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
|
|
|
|
|
|
|
self.unreadCount = appDelegate.unreadCount
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(unreadCountDidChange(_:)), name: .UnreadCountDidChange, object: appDelegate)
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func unreadCountDidChange(_ note: Notification) {
|
|
|
|
|
|
|
|
assert(note.object is AppDelegate)
|
|
|
|
unreadCount = appDelegate.unreadCount
|
|
|
|
}
|
|
|
|
}
|
2018-02-10 22:00:53 +01:00
|
|
|
|
|
|
|
extension UnreadFeed: ArticleFetcher {
|
|
|
|
|
|
|
|
func fetchArticles() -> Set<Article> {
|
|
|
|
|
|
|
|
return fetchUnreadArticles()
|
|
|
|
}
|
|
|
|
|
|
|
|
func fetchUnreadArticles() -> Set<Article> {
|
|
|
|
|
|
|
|
var articles = Set<Article>()
|
|
|
|
for account in AccountManager.shared.accounts {
|
|
|
|
articles.formUnion(account.fetchUnreadArticles())
|
|
|
|
}
|
|
|
|
return articles
|
|
|
|
}
|
|
|
|
}
|