yattee/Shared/Navigation/ContentView.swift

165 lines
5.5 KiB
Swift
Raw Normal View History

import AVFAudio
2021-09-25 08:18:22 +00:00
import Defaults
import SDWebImage
import SDWebImagePINPlugin
import SDWebImageWebPCoder
2021-10-16 22:48:58 +00:00
import Siesta
2021-06-09 20:51:23 +00:00
import SwiftUI
struct ContentView: View {
2021-10-16 22:48:58 +00:00
@StateObject private var accounts = AccountsModel()
@StateObject private var instances = InstancesModel()
2021-09-25 08:18:22 +00:00
@StateObject private var navigation = NavigationModel()
@StateObject private var player = PlayerModel()
@StateObject private var playlists = PlaylistsModel()
2021-09-25 12:17:58 +00:00
@StateObject private var recents = RecentsModel()
@StateObject private var search = SearchModel()
@StateObject private var subscriptions = SubscriptionsModel()
2021-10-24 22:26:25 +00:00
@StateObject private var thumbnailsModel = ThumbnailsModel()
2021-09-25 08:18:22 +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-10-16 22:48:58 +00:00
.onAppear(perform: configure)
2021-10-24 09:16:04 +00:00
2021-10-16 22:48:58 +00:00
.environmentObject(accounts)
.environmentObject(instances)
2021-09-25 08:18:22 +00:00
.environmentObject(navigation)
.environmentObject(player)
.environmentObject(playlists)
2021-09-25 08:18:22 +00:00
.environmentObject(recents)
.environmentObject(search)
.environmentObject(subscriptions)
2021-10-24 22:26:25 +00:00
.environmentObject(thumbnailsModel)
2021-10-17 23:06:00 +00:00
.sheet(isPresented: $navigation.presentingWelcomeScreen) {
WelcomeScreen()
.environmentObject(accounts)
.environmentObject(navigation)
}
#if os(iOS)
.fullScreenCover(isPresented: $player.presentingPlayer) {
VideoPlayerView()
2021-10-16 22:48:58 +00:00
.environmentObject(accounts)
2021-10-13 22:10:29 +00:00
.environmentObject(instances)
.environmentObject(navigation)
.environmentObject(player)
.environmentObject(playlists)
.environmentObject(subscriptions)
2021-10-24 22:26:25 +00:00
.environmentObject(thumbnailsModel)
2021-08-01 23:01:24 +00:00
}
#elseif os(macOS)
.sheet(isPresented: $player.presentingPlayer) {
VideoPlayerView()
.frame(minWidth: 900, minHeight: 800)
2021-10-16 22:48:58 +00:00
.environmentObject(accounts)
2021-10-13 22:10:29 +00:00
.environmentObject(instances)
.environmentObject(navigation)
.environmentObject(player)
.environmentObject(playlists)
.environmentObject(subscriptions)
2021-10-24 22:26:25 +00:00
.environmentObject(thumbnailsModel)
}
#endif
#if !os(tvOS)
2021-10-24 12:31:10 +00:00
.handlesExternalEvents(preferring: Set(["*"]), allowing: Set(["*"]))
.onOpenURL(perform: handleOpenedURL)
.sheet(isPresented: $navigation.presentingAddToPlaylist) {
AddToPlaylistView(video: navigation.videoToAddToPlaylist)
.environmentObject(playlists)
}
2021-09-25 08:18:22 +00:00
.sheet(isPresented: $navigation.presentingPlaylistForm) {
PlaylistFormView(playlist: $navigation.editedPlaylist)
2021-11-07 20:51:22 +00:00
.environmentObject(accounts)
.environmentObject(playlists)
2021-09-25 08:18:22 +00:00
}
2021-10-17 23:06:00 +00:00
.sheet(isPresented: $navigation.presentingSettings, onDismiss: openWelcomeScreenIfAccountEmpty) {
2021-09-25 08:18:22 +00:00
SettingsView()
2021-10-17 23:06:00 +00:00
.environmentObject(accounts)
.environmentObject(instances)
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-10-16 22:48:58 +00:00
func configure() {
SiestaLog.Category.enabled = .common
SDImageCodersManager.shared.addCoder(SDImageWebPCoder.shared)
SDWebImageManager.defaultImageCache = PINCache(name: "net.yattee.app")
#if !os(macOS)
try? AVAudioSession.sharedInstance().setCategory(.playback, mode: .moviePlayback)
#endif
2021-10-16 22:48:58 +00:00
if let account = accounts.lastUsed ??
instances.lastUsed?.anonymousAccount ??
instances.all.first?.anonymousAccount
2021-10-17 21:49:56 +00:00
{
accounts.setCurrent(account)
}
2021-10-17 23:06:00 +00:00
if accounts.current.isNil {
2021-10-17 23:06:00 +00:00
navigation.presentingWelcomeScreen = true
}
2021-10-16 22:48:58 +00:00
player.accounts = accounts
playlists.accounts = accounts
search.accounts = accounts
subscriptions.accounts = accounts
if !accounts.current.isNil {
player.loadHistoryDetails()
}
}
2021-10-17 23:06:00 +00:00
func openWelcomeScreenIfAccountEmpty() {
guard Defaults[.instances].isEmpty else {
2021-10-17 23:06:00 +00:00
return
}
navigation.presentingWelcomeScreen = true
}
2021-10-24 09:16:04 +00:00
2021-10-24 12:31:10 +00:00
#if !os(tvOS)
func handleOpenedURL(_ url: URL) {
guard !accounts.current.isNil else {
return
}
2021-10-24 09:16:04 +00:00
2021-10-24 12:31:10 +00:00
let parser = VideoURLParser(url: url)
2021-10-24 09:16:04 +00:00
2021-10-24 12:31:10 +00:00
guard let id = parser.id else {
return
}
2021-10-24 09:16:04 +00:00
2021-10-24 12:31:10 +00:00
accounts.api.video(id).load().onSuccess { response in
if let video: Video = response.typedContent() {
2021-10-25 08:25:41 +00:00
player.addCurrentItemToHistory()
2021-10-24 12:31:10 +00:00
self.player.playNow(video, at: parser.time)
self.player.presentPlayer()
}
2021-10-24 09:16:04 +00:00
}
}
2021-10-24 12:31:10 +00:00
#endif
2021-06-09 20:51:23 +00:00
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
2021-09-29 11:45:00 +00:00
.injectFixtureEnvironmentObjects()
2021-06-09 20:51:23 +00:00
}
}