33 lines
799 B
Swift
33 lines
799 B
Swift
//
|
|
// StarredFeedDelegate.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 11/19/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RSCore
|
|
import Articles
|
|
import ArticlesDatabase
|
|
import Account
|
|
|
|
// Main thread only.
|
|
|
|
struct StarredFeedDelegate: SmartFeedDelegate {
|
|
|
|
var feedID: FeedIdentifier? {
|
|
return FeedIdentifier.smartFeed(String(describing: StarredFeedDelegate.self))
|
|
}
|
|
|
|
let nameForDisplay = NSLocalizedString("Starred", comment: "Starred pseudo-feed title")
|
|
let fetchType: FetchType = .starred(nil)
|
|
var smallIcon: IconImage? {
|
|
return AppAssets.starredFeedImage
|
|
}
|
|
|
|
func fetchUnreadCount(for account: Account, completion: @escaping SingleUnreadCountCompletionBlock) {
|
|
account.fetchUnreadCountForStarredArticles(completion)
|
|
}
|
|
}
|