2017-11-20 00:40:02 +01:00
|
|
|
//
|
|
|
|
// TodayFeedDelegate.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
|
2019-09-18 03:26:49 +02:00
|
|
|
import RSCore
|
2018-07-24 03:29:08 +02:00
|
|
|
import Articles
|
2019-12-17 07:45:59 +01:00
|
|
|
import ArticlesDatabase
|
2017-11-20 00:40:02 +01:00
|
|
|
import Account
|
|
|
|
|
|
|
|
struct TodayFeedDelegate: SmartFeedDelegate {
|
|
|
|
|
2019-11-15 13:19:14 +01:00
|
|
|
var feedID: FeedIdentifier? {
|
|
|
|
return FeedIdentifier.smartFeed(String(describing: TodayFeedDelegate.self))
|
2019-11-14 22:06:32 +01:00
|
|
|
}
|
|
|
|
|
2017-11-20 00:40:02 +01:00
|
|
|
let nameForDisplay = NSLocalizedString("Today", comment: "Today pseudo-feed title")
|
2019-07-06 05:06:31 +02:00
|
|
|
let fetchType = FetchType.today
|
2020-12-06 23:01:43 +01:00
|
|
|
var smallIcon: IconImage? {
|
|
|
|
return AppAssets.todayFeedImage
|
|
|
|
}
|
2019-09-18 03:26:49 +02:00
|
|
|
|
2019-12-17 07:45:59 +01:00
|
|
|
func fetchUnreadCount(for account: Account, completion: @escaping SingleUnreadCountCompletionBlock) {
|
2019-12-15 02:01:34 +01:00
|
|
|
account.fetchUnreadCountForToday(completion)
|
2017-11-20 00:40:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|