yattee/Shared/Navigation/ContentView.swift

61 lines
1.8 KiB
Swift
Raw Normal View History

2021-09-25 08:18:22 +00:00
import Defaults
2021-06-09 20:51:23 +00:00
import SwiftUI
struct ContentView: View {
2021-09-25 08:18:22 +00:00
@StateObject private var navigation = NavigationModel()
@StateObject private var playback = PlaybackModel()
2021-09-19 11:06:54 +00:00
@StateObject private var recents = Recents()
2021-09-25 08:18:22 +00:00
@EnvironmentObject<InvidiousAPI> private var api
@EnvironmentObject<InstancesModel> private var instances
2021-07-07 22:39:18 +00:00
2021-07-11 20:52:49 +00:00
#if os(iOS)
@Environment(\.horizontalSizeClass) private var horizontalSizeClass
#endif
2021-06-11 21:11:59 +00:00
2021-06-09 20:51:23 +00:00
var body: some View {
2021-07-11 20:52:49 +00:00
Section {
#if os(iOS)
if horizontalSizeClass == .compact {
AppTabNavigation()
} else {
AppSidebarNavigation()
2021-06-11 21:11:59 +00:00
}
2021-07-11 20:52:49 +00:00
#elseif os(macOS)
AppSidebarNavigation()
#elseif os(tvOS)
TVNavigationView()
#endif
2021-07-29 22:34:13 +00:00
}
2021-09-25 08:18:22 +00:00
.environmentObject(navigation)
.environmentObject(playback)
.environmentObject(recents)
2021-08-01 23:01:24 +00:00
#if !os(tvOS)
2021-09-25 08:18:22 +00:00
.sheet(isPresented: $navigation.showingVideo) {
if let video = navigation.video {
2021-08-01 23:01:24 +00:00
VideoPlayerView(video)
2021-08-22 19:13:33 +00:00
2021-08-01 23:01:24 +00:00
#if !os(iOS)
2021-08-22 19:13:33 +00:00
.frame(minWidth: 550, minHeight: 720)
2021-08-01 23:01:24 +00:00
.onExitCommand {
2021-09-25 08:18:22 +00:00
navigation.showingVideo = false
2021-08-01 23:01:24 +00:00
}
#endif
}
}
2021-09-25 08:18:22 +00:00
.sheet(isPresented: $navigation.presentingPlaylistForm) {
PlaylistFormView(playlist: $navigation.editedPlaylist)
}
.sheet(isPresented: $navigation.presentingSettings) {
SettingsView()
2021-08-29 21:36:18 +00:00
}
2021-08-01 23:01:24 +00:00
#endif
2021-07-07 22:39:18 +00:00
}
2021-06-09 20:51:23 +00:00
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}