mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
37 lines
947 B
Swift
37 lines
947 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
final class UnwatchedFeedCountModel: ObservableObject {
|
|
static let shared = UnwatchedFeedCountModel()
|
|
|
|
@Published var unwatched = [Account: Int]()
|
|
@Published var unwatchedByChannel = [Account: [Channel.ID: Int]]()
|
|
|
|
private var accounts = AccountsModel.shared
|
|
|
|
// swiftlint:disable empty_count
|
|
var unwatchedText: Text? {
|
|
if let account = accounts.current,
|
|
!account.anonymous,
|
|
let count = unwatched[account],
|
|
count > 0
|
|
{
|
|
return Text(String(count))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func unwatchedByChannelText(_ channel: Channel) -> Text? {
|
|
if let account = accounts.current,
|
|
!account.anonymous,
|
|
let count = unwatchedByChannel[account]?[channel.id],
|
|
count > 0
|
|
{
|
|
return Text(String(count))
|
|
}
|
|
return nil
|
|
}
|
|
// swiftlint:enable empty_count
|
|
}
|