mirror of
https://github.com/yattee/yattee.git
synced 2024-12-22 21:43:41 +00:00
Fix navigatable in favorite item view
This commit is contained in:
parent
50eb0be1d7
commit
713570dfd6
@ -23,6 +23,7 @@ struct FavoriteItemView: View {
|
|||||||
@Default(.hideShorts) private var hideShorts
|
@Default(.hideShorts) private var hideShorts
|
||||||
@Default(.hideWatched) private var hideWatched
|
@Default(.hideWatched) private var hideWatched
|
||||||
@Default(.widgetsSettings) private var widgetsSettings
|
@Default(.widgetsSettings) private var widgetsSettings
|
||||||
|
@Default(.visibleSections) private var visibleSections
|
||||||
|
|
||||||
init(item: FavoriteItem) {
|
init(item: FavoriteItem) {
|
||||||
self.item = item
|
self.item = item
|
||||||
@ -285,7 +286,18 @@ struct FavoriteItemView: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var navigatableItem: Bool {
|
var navigatableItem: Bool {
|
||||||
item.section != .history
|
switch item.section {
|
||||||
|
case .history:
|
||||||
|
return false
|
||||||
|
case .trending:
|
||||||
|
return visibleSections.contains(.trending)
|
||||||
|
case .subscriptions:
|
||||||
|
return visibleSections.contains(.subscriptions) && accounts.signedIn
|
||||||
|
case .popular:
|
||||||
|
return visibleSections.contains(.popular) && accounts.app.supportsPopular
|
||||||
|
default:
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var inChannelView: Bool {
|
var inChannelView: Bool {
|
||||||
|
Loading…
Reference in New Issue
Block a user