2021-12-01 11:22:19 +00:00
|
|
|
import Defaults
|
2021-09-28 23:01:49 +00:00
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct Sidebar: View {
|
2022-11-24 20:36:05 +00:00
|
|
|
@ObservedObject private var accounts = AccountsModel.shared
|
|
|
|
@ObservedObject private var navigation = NavigationModel.shared
|
2022-12-12 23:39:50 +00:00
|
|
|
@ObservedObject private var feed = FeedModel.shared
|
2022-12-16 21:26:14 +00:00
|
|
|
@ObservedObject private var feedCount = UnwatchedFeedCountModel.shared
|
2021-09-28 23:01:49 +00:00
|
|
|
|
2022-11-11 20:28:40 +00:00
|
|
|
@Default(.showHome) private var showHome
|
2021-12-01 11:22:19 +00:00
|
|
|
@Default(.visibleSections) private var visibleSections
|
2022-11-18 23:38:32 +00:00
|
|
|
#if os(iOS)
|
|
|
|
@Default(.showDocuments) private var showDocuments
|
|
|
|
#endif
|
2023-02-28 20:17:12 +00:00
|
|
|
@Default(.showUnwatchedFeedBadges) private var showUnwatchedFeedBadges
|
2021-12-01 11:22:19 +00:00
|
|
|
|
2021-09-28 23:01:49 +00:00
|
|
|
var body: some View {
|
|
|
|
ScrollViewReader { scrollView in
|
|
|
|
List {
|
2022-11-10 22:55:39 +00:00
|
|
|
mainNavigationLinks
|
2021-09-28 23:01:49 +00:00
|
|
|
|
2022-11-10 22:55:39 +00:00
|
|
|
if !accounts.isEmpty {
|
2021-10-17 23:06:00 +00:00
|
|
|
AppSidebarRecents()
|
|
|
|
.id("recentlyOpened")
|
2021-09-28 23:01:49 +00:00
|
|
|
|
2021-11-14 23:06:01 +00:00
|
|
|
if accounts.api.signedIn {
|
2021-12-01 11:22:19 +00:00
|
|
|
if visibleSections.contains(.subscriptions), accounts.app.supportsSubscriptions {
|
2021-11-14 23:06:01 +00:00
|
|
|
AppSidebarSubscriptions()
|
|
|
|
}
|
|
|
|
|
2021-12-01 11:22:19 +00:00
|
|
|
if visibleSections.contains(.playlists), accounts.app.supportsUserPlaylists {
|
2021-11-14 23:06:01 +00:00
|
|
|
AppSidebarPlaylists()
|
|
|
|
}
|
2021-10-17 23:06:00 +00:00
|
|
|
}
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.onChange(of: navigation.sidebarSectionChanged) { _ in
|
|
|
|
scrollScrollViewToItem(scrollView: scrollView, for: navigation.tabSelection)
|
|
|
|
}
|
|
|
|
.listStyle(.sidebar)
|
|
|
|
}
|
2022-12-12 23:39:50 +00:00
|
|
|
.onAppear {
|
|
|
|
feed.calculateUnwatchedFeed()
|
|
|
|
}
|
|
|
|
.onChange(of: accounts.current) { _ in
|
|
|
|
feed.calculateUnwatchedFeed()
|
|
|
|
}
|
2021-11-07 13:32:01 +00:00
|
|
|
.navigationTitle("Yattee")
|
|
|
|
#if os(iOS)
|
2021-11-07 16:52:42 +00:00
|
|
|
.navigationBarTitleDisplayMode(.inline)
|
2021-11-07 13:32:01 +00:00
|
|
|
#endif
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var mainNavigationLinks: some View {
|
2021-11-28 14:37:55 +00:00
|
|
|
Section(header: Text("Videos")) {
|
2022-11-11 20:28:40 +00:00
|
|
|
if showHome {
|
2022-12-17 18:35:07 +00:00
|
|
|
NavigationLink(destination: LazyView(HomeView()), tag: TabSelection.home, selection: $navigation.tabSelection) {
|
2022-11-09 13:34:04 +00:00
|
|
|
Label("Home", systemImage: "house")
|
|
|
|
.accessibility(label: Text("Home"))
|
2021-12-01 11:22:19 +00:00
|
|
|
}
|
2022-11-12 23:07:23 +00:00
|
|
|
.id("home")
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
2022-11-12 23:01:04 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
if showDocuments {
|
2022-12-17 18:35:07 +00:00
|
|
|
NavigationLink(destination: LazyView(DocumentsView()), tag: TabSelection.documents, selection: $navigation.tabSelection) {
|
2022-11-12 23:01:04 +00:00
|
|
|
Label("Documents", systemImage: "folder")
|
|
|
|
.accessibility(label: Text("Documents"))
|
|
|
|
}
|
|
|
|
.id("documents")
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-11-11 20:28:40 +00:00
|
|
|
if !accounts.isEmpty {
|
|
|
|
if visibleSections.contains(.subscriptions),
|
|
|
|
accounts.app.supportsSubscriptions && accounts.signedIn
|
|
|
|
{
|
2022-12-17 18:35:07 +00:00
|
|
|
NavigationLink(destination: LazyView(SubscriptionsView()), tag: TabSelection.subscriptions, selection: $navigation.tabSelection) {
|
2022-11-11 20:28:40 +00:00
|
|
|
Label("Subscriptions", systemImage: "star.circle")
|
|
|
|
.accessibility(label: Text("Subscriptions"))
|
|
|
|
}
|
2022-12-12 23:39:50 +00:00
|
|
|
.backport
|
2023-02-28 20:17:12 +00:00
|
|
|
.badge(showUnwatchedFeedBadges ? feedCount.unwatchedText : nil)
|
2022-12-14 17:10:01 +00:00
|
|
|
.contextMenu {
|
|
|
|
playUnwatchedButton
|
|
|
|
toggleWatchedButton
|
|
|
|
}
|
2022-11-11 20:28:40 +00:00
|
|
|
.id("subscriptions")
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
|
|
|
|
2022-11-11 20:28:40 +00:00
|
|
|
if visibleSections.contains(.popular), accounts.app.supportsPopular {
|
2022-12-17 18:35:07 +00:00
|
|
|
NavigationLink(destination: LazyView(PopularView()), tag: TabSelection.popular, selection: $navigation.tabSelection) {
|
2022-11-11 20:28:40 +00:00
|
|
|
Label("Popular", systemImage: "arrow.up.right.circle")
|
|
|
|
.accessibility(label: Text("Popular"))
|
|
|
|
}
|
|
|
|
.id("popular")
|
2021-10-20 22:21:50 +00:00
|
|
|
}
|
2021-09-28 23:01:49 +00:00
|
|
|
|
2022-11-11 20:28:40 +00:00
|
|
|
if visibleSections.contains(.trending) {
|
2022-12-17 18:35:07 +00:00
|
|
|
NavigationLink(destination: LazyView(TrendingView()), tag: TabSelection.trending, selection: $navigation.tabSelection) {
|
2022-11-11 20:28:40 +00:00
|
|
|
Label("Trending", systemImage: "chart.bar")
|
|
|
|
.accessibility(label: Text("Trending"))
|
|
|
|
}
|
|
|
|
.id("trending")
|
2021-12-01 11:22:19 +00:00
|
|
|
}
|
2021-09-28 23:01:49 +00:00
|
|
|
|
2022-12-17 18:35:07 +00:00
|
|
|
NavigationLink(destination: LazyView(SearchView()), tag: TabSelection.search, selection: $navigation.tabSelection) {
|
2022-11-11 19:34:20 +00:00
|
|
|
Label("Search", systemImage: "magnifyingglass")
|
|
|
|
.accessibility(label: Text("Search"))
|
|
|
|
}
|
|
|
|
.id("search")
|
|
|
|
.keyboardShortcut("f")
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-14 17:10:01 +00:00
|
|
|
var playUnwatchedButton: some View {
|
|
|
|
Button {
|
|
|
|
feed.playUnwatchedFeed()
|
|
|
|
} label: {
|
|
|
|
Label("Play all unwatched", systemImage: "play")
|
|
|
|
}
|
|
|
|
.disabled(!feed.canPlayUnwatchedFeed)
|
|
|
|
}
|
|
|
|
|
|
|
|
@ViewBuilder var toggleWatchedButton: some View {
|
|
|
|
if feed.canMarkAllFeedAsWatched {
|
|
|
|
markAllFeedAsWatchedButton
|
|
|
|
} else {
|
|
|
|
markAllFeedAsUnwatchedButton
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var markAllFeedAsWatchedButton: some View {
|
|
|
|
Button {
|
|
|
|
feed.markAllFeedAsWatched()
|
|
|
|
} label: {
|
|
|
|
Label("Mark all as watched", systemImage: "checkmark.circle.fill")
|
|
|
|
}
|
|
|
|
.disabled(!feed.canMarkAllFeedAsWatched)
|
|
|
|
}
|
|
|
|
|
|
|
|
var markAllFeedAsUnwatchedButton: some View {
|
|
|
|
Button {
|
|
|
|
feed.markAllFeedAsUnwatched()
|
|
|
|
} label: {
|
|
|
|
Label("Mark all as unwatched", systemImage: "checkmark.circle")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-01 11:22:19 +00:00
|
|
|
private func scrollScrollViewToItem(scrollView: ScrollViewProxy, for selection: TabSelection) {
|
2021-09-28 23:01:49 +00:00
|
|
|
if case .recentlyOpened = selection {
|
|
|
|
scrollView.scrollTo("recentlyOpened")
|
2022-03-27 18:38:59 +00:00
|
|
|
return
|
2021-09-28 23:01:49 +00:00
|
|
|
} else if case let .playlist(id) = selection {
|
|
|
|
scrollView.scrollTo(id)
|
2022-03-27 18:38:59 +00:00
|
|
|
return
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
2022-03-27 18:38:59 +00:00
|
|
|
|
|
|
|
scrollView.scrollTo(selection.stringValue)
|
2021-09-28 23:01:49 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-17 18:35:07 +00:00
|
|
|
|
|
|
|
struct Sidebar_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
Sidebar()
|
|
|
|
}
|
|
|
|
}
|