mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-27 10:02:37 +01:00
33 lines
738 B
Swift
33 lines
738 B
Swift
//
|
|
// TodayFeedDelegate.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 TodayFeedDelegate: SmartFeedDelegate {
|
|
|
|
var sidebarItemID: SidebarItemIdentifier? {
|
|
return SidebarItemIdentifier.smartFeed(String(describing: TodayFeedDelegate.self))
|
|
}
|
|
|
|
let nameForDisplay = NSLocalizedString("Today", comment: "Today pseudo-feed title")
|
|
let fetchType = FetchType.today(nil)
|
|
var smallIcon: IconImage? {
|
|
return AppAssets.todayFeedImage
|
|
}
|
|
|
|
func unreadCount(account: Account) async -> Int {
|
|
|
|
(try? await account.unreadCountForToday()) ?? 0
|
|
}
|
|
}
|
|
|