1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Navigation/AppSidebarNavigation.swift

117 lines
3.6 KiB
Swift
Raw Normal View History

import Defaults
2021-07-12 02:22:49 +05:30
import SwiftUI
#if os(iOS)
import Introspect
#endif
struct AppSidebarNavigation: View {
@ObservedObject private var accounts = AccountsModel.shared
private var navigation: NavigationModel { .shared }
#if os(iOS)
@State private var didApplyPrimaryViewWorkAround = false
#endif
2021-07-12 02:22:49 +05:30
2022-11-13 04:37:23 +05:30
@Default(.showOpenActionsToolbarItem) private var showOpenActionsToolbarItem
2021-07-12 02:22:49 +05:30
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 13:48:22 +05:30
// We work around that by showing the primary view
2021-07-12 02:22:49 +05:30
if !didApplyPrimaryViewWorkAround, let splitVC = viewController.children.first as? UISplitViewController {
UIView.performWithoutAnimation {
splitVC.show(.primary)
}
didApplyPrimaryViewWorkAround = true
}
}
#else
content
#endif
}
2021-09-25 13:48:22 +05:30
let sidebarMinWidth: Double = 280
2021-07-12 02:22:49 +05:30
var content: some View {
NavigationView {
2021-09-29 04:31:49 +05:30
Sidebar()
2021-09-25 13:48:22 +05:30
.toolbar { toolbarContent }
.frame(minWidth: sidebarMinWidth)
2021-10-18 04:36:00 +05:30
VStack {
2022-12-11 03:07:14 +05:30
HStack {
Spacer()
Image(systemName: "4k.tv")
.renderingMode(.original)
.font(.system(size: 60))
.foregroundColor(.accentColor)
Spacer()
2021-12-05 01:05:41 +05:30
}
2021-10-18 04:36:00 +05:30
}
2021-07-12 02:22:49 +05:30
}
.environment(\.navigationStyle, .sidebar)
2021-07-12 02:22:49 +05:30
}
2021-09-25 13:48:22 +05:30
var toolbarContent: some ToolbarContent {
Group {
#if os(iOS)
ToolbarItemGroup(placement: .navigationBarTrailing) {
Button(action: { navigation.presentingSettings = true }) {
Image(systemName: "gearshape.2")
}
}
#endif
2022-11-10 22:41:28 +05:30
ToolbarItemGroup(placement: openVideosToolbarItemPlacement) {
2022-11-12 01:58:40 +05:30
if showOpenActionsToolbarItem {
Button {
navigation.presentingOpenVideos = true
} label: {
Label("Open Videos", systemImage: "play.circle.fill")
}
2022-11-10 22:41:28 +05:30
}
}
ToolbarItemGroup(placement: accountsMenuToolbarItemPlacement) {
2022-12-12 05:48:29 +05:30
AccountViewButton()
2021-09-25 13:48:22 +05:30
}
2022-01-03 01:02:42 +05:30
#if os(macOS)
ToolbarItem(placement: .navigation) {
Button {
NSApp.keyWindow?.firstResponder?.tryToPerform(#selector(NSSplitViewController.toggleSidebar(_:)), with: nil)
} label: {
Label("Toggle Sidebar", systemImage: "sidebar.left")
}
}
#endif
2021-09-25 13:48:22 +05:30
}
}
2022-11-10 22:41:28 +05:30
var openVideosToolbarItemPlacement: ToolbarItemPlacement {
#if os(iOS)
return .navigationBarLeading
#else
return .automatic
#endif
}
2021-09-25 13:48:22 +05:30
var accountsMenuToolbarItemPlacement: ToolbarItemPlacement {
#if os(iOS)
return .bottomBar
#else
return .automatic
#endif
}
2021-07-12 02:22:49 +05:30
}
2022-11-11 23:20:13 +05:30
struct AppSidebarNavigation_Preview: PreviewProvider {
static var previews: some View {
AppSidebarNavigation()
.injectFixtureEnvironmentObjects()
}
}