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