2017-11-20 00:40:02 +01:00
|
|
|
//
|
|
|
|
// TodayFeedDelegate.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 11/19/17.
|
|
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Data
|
|
|
|
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 22:22:02 +01:00
|
|
|
|
|
|
|
// MARK: ArticleFetcher
|
|
|
|
|
|
|
|
func fetchArticles() -> Set<Article> {
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
return Set<Article>()
|
|
|
|
}
|
|
|
|
|
|
|
|
func fetchUnreadArticles() -> Set<Article> {
|
|
|
|
|
|
|
|
return fetchArticles().unreadArticles()
|
|
|
|
}
|
2017-11-20 00:40:02 +01:00
|
|
|
}
|
|
|
|
|