yattee/Shared/Navigation/AppSidebarNavigation.swift

189 lines
6.2 KiB
Swift
Raw Normal View History

2021-07-11 20:52:49 +00:00
import SwiftUI
#if os(iOS)
import Introspect
#endif
struct AppSidebarNavigation: View {
2021-09-13 20:41:16 +00:00
enum SidebarGroup: String, Identifiable {
case main
var id: RawValue {
rawValue
}
}
2021-09-25 08:18:22 +00:00
@EnvironmentObject<InvidiousAPI> private var api
@EnvironmentObject<InstancesModel> private var instances
@EnvironmentObject<NavigationModel> private var navigation
@EnvironmentObject<PlaylistsModel> private var playlists
2021-09-25 12:17:58 +00:00
@EnvironmentObject<RecentsModel> private var recents
2021-09-25 08:18:22 +00:00
@EnvironmentObject<SubscriptionsModel> private var subscriptions
2021-07-11 20:52:49 +00:00
@State private var didApplyPrimaryViewWorkAround = false
2021-08-29 21:36:18 +00:00
var selection: Binding<TabSelection?> {
2021-09-25 08:18:22 +00:00
navigation.tabSelectionOptionalBinding
2021-08-29 21:36:18 +00:00
}
2021-07-11 20:52:49 +00:00
var body: some View {
#if os(iOS)
content.introspectViewController { viewController in
// workaround for an empty supplementary view on launch
// the supplementary view is determined by the default selection inside the
// primary view, but the primary view is not loaded so its selection is not read
2021-09-25 08:18:22 +00:00
// We work around that by showing the primary view
2021-07-11 20:52:49 +00:00
if !didApplyPrimaryViewWorkAround, let splitVC = viewController.children.first as? UISplitViewController {
UIView.performWithoutAnimation {
splitVC.show(.primary)
}
didApplyPrimaryViewWorkAround = true
}
}
#else
content
#endif
}
2021-09-25 08:18:22 +00:00
let sidebarMinWidth: Double = 280
2021-07-11 20:52:49 +00:00
var content: some View {
NavigationView {
sidebar
2021-09-25 08:18:22 +00:00
.toolbar { toolbarContent }
.frame(minWidth: sidebarMinWidth)
2021-07-11 20:52:49 +00:00
Text("Select section")
}
2021-09-19 12:42:47 +00:00
.environment(\.navigationStyle, .sidebar)
2021-07-11 20:52:49 +00:00
}
var sidebar: some View {
ScrollViewReader { scrollView in
List {
2021-09-13 20:41:16 +00:00
ForEach(sidebarGroups) { group in
sidebarGroupContent(group)
.id(group)
}
2021-09-13 20:41:16 +00:00
2021-09-25 08:18:22 +00:00
.onChange(of: navigation.sidebarSectionChanged) { _ in
scrollScrollViewToItem(scrollView: scrollView, for: navigation.tabSelection)
}
}
.listStyle(.sidebar)
2021-08-29 21:36:18 +00:00
}
2021-09-13 20:41:16 +00:00
.toolbar {
2021-09-25 08:18:22 +00:00
toolbarContent
2021-09-13 20:41:16 +00:00
}
}
var sidebarGroups: [SidebarGroup] {
[.main]
}
func sidebarGroupContent(_ group: SidebarGroup) -> some View {
switch group {
case .main:
return Group {
mainNavigationLinks
2021-09-19 11:06:54 +00:00
AppSidebarRecents(selection: selection)
2021-09-13 20:41:16 +00:00
.id("recentlyOpened")
2021-09-25 08:18:22 +00:00
if api.signedIn {
AppSidebarSubscriptions(selection: selection)
AppSidebarPlaylists(selection: selection)
}
2021-08-29 21:36:18 +00:00
}
2021-09-13 20:41:16 +00:00
}
2021-08-29 21:36:18 +00:00
}
var mainNavigationLinks: some View {
2021-09-13 20:41:16 +00:00
Section("Videos") {
2021-09-25 08:18:22 +00:00
NavigationLink(destination: LazyView(WatchNowView()), tag: TabSelection.watchNow, selection: selection) {
2021-09-18 20:36:42 +00:00
Label("Watch Now", systemImage: "play.circle")
.accessibility(label: Text("Watch Now"))
}
2021-09-25 08:18:22 +00:00
if api.signedIn {
NavigationLink(destination: LazyView(SubscriptionsView()), tag: TabSelection.subscriptions, selection: selection) {
Label("Subscriptions", systemImage: "star.circle")
.accessibility(label: Text("Subscriptions"))
}
2021-07-11 20:52:49 +00:00
}
2021-09-13 20:41:16 +00:00
NavigationLink(destination: LazyView(PopularView()), tag: TabSelection.popular, selection: selection) {
2021-07-11 20:52:49 +00:00
Label("Popular", systemImage: "chart.bar")
2021-07-27 22:40:04 +00:00
.accessibility(label: Text("Popular"))
}
2021-09-13 20:41:16 +00:00
NavigationLink(destination: LazyView(TrendingView()), tag: TabSelection.trending, selection: selection) {
2021-07-27 22:40:04 +00:00
Label("Trending", systemImage: "chart.line.uptrend.xyaxis")
.accessibility(label: Text("Trending"))
}
2021-09-25 12:17:58 +00:00
NavigationLink(destination: LazyView(SearchView()), tag: TabSelection.search, selection: selection) {
Label("Search", systemImage: "magnifyingglass")
.accessibility(label: Text("Search"))
}
.keyboardShortcut("f")
2021-07-11 20:52:49 +00:00
}
2021-08-29 21:36:18 +00:00
}
func scrollScrollViewToItem(scrollView: ScrollViewProxy, for selection: TabSelection) {
if case let .channel(id) = selection {
if subscriptions.isSubscribing(id) {
scrollView.scrollTo(id)
} else {
scrollView.scrollTo("recentlyOpened")
}
} else if case let .playlist(id) = selection {
scrollView.scrollTo(id)
}
}
2021-09-25 08:18:22 +00:00
var toolbarContent: some ToolbarContent {
Group {
#if os(iOS)
ToolbarItemGroup(placement: .navigationBarTrailing) {
Button(action: { navigation.presentingSettings = true }) {
Image(systemName: "gearshape.2")
}
}
#endif
ToolbarItem(placement: accountsMenuToolbarItemPlacement) {
AccountsMenuView()
.help(
"Switch Instances and Accounts\n" +
"Current Instance: \n" +
"\(api.account?.url ?? "Not Set")\n" +
"Current User: \(api.account?.description ?? "Not set")"
)
}
}
}
var accountsMenuToolbarItemPlacement: ToolbarItemPlacement {
#if os(iOS)
return .bottomBar
#else
return .automatic
#endif
}
#if os(macOS)
private func toggleSidebar() {
NSApp.keyWindow?.contentViewController?.tryToPerform(#selector(NSSplitViewController.toggleSidebar(_:)), with: nil)
}
#endif
2021-08-29 21:36:18 +00:00
static func symbolSystemImage(_ name: String) -> String {
let firstLetter = name.first?.lowercased()
let regex = #"^[a-z0-9]$"#
let symbolName = firstLetter?.range(of: regex, options: .regularExpression) != nil ? firstLetter! : "questionmark"
2021-09-25 08:18:22 +00:00
return "\(symbolName).circle"
2021-07-11 20:52:49 +00:00
}
}