mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 08:09:41 +01:00
32 lines
763 B
Swift
32 lines
763 B
Swift
//
|
|
// StarredFeedDelegate.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 11/19/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Articles
|
|
import ArticlesDatabase
|
|
import Account
|
|
import Images
|
|
|
|
@MainActor struct StarredFeedDelegate: SmartFeedDelegate {
|
|
|
|
var sidebarItemID: SidebarItemIdentifier? {
|
|
return SidebarItemIdentifier.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 unreadCount(account: Account) async -> Int {
|
|
|
|
(try? await account.unreadCountForStarredArticles()) ?? 0
|
|
}
|
|
}
|