yattee/Shared/Navigation/ContentView.swift

178 lines
5.4 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()
2021-12-04 19:35:41 +00:00
@StateObject private var comments = CommentsModel()
@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-11-08 23:14:28 +00:00
@EnvironmentObject<MenuModel> private var menu
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-11-30 22:58:11 +00:00
Group {
2021-07-11 20:52:49 +00:00
#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)
2021-12-04 19:35:41 +00:00
.environmentObject(comments)
.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-11-30 22:58:11 +00:00
// iOS 14 has problem with multiple sheets in one view
// but it's ok when it's in background
.background(
EmptyView().sheet(isPresented: $navigation.presentingWelcomeScreen) {
WelcomeScreen()
.environmentObject(accounts)
.environmentObject(navigation)
}
)
#if !os(tvOS)
2021-11-08 16:29:35 +00:00
.handlesExternalEvents(preferring: Set(["*"]), allowing: Set(["*"]))
.onOpenURL(perform: handleOpenedURL)
2021-11-30 22:58:11 +00:00
.background(
EmptyView().sheet(isPresented: $navigation.presentingAddToPlaylist) {
AddToPlaylistView(video: navigation.videoToAddToPlaylist)
.environmentObject(playlists)
}
)
.background(
EmptyView().sheet(isPresented: $navigation.presentingPlaylistForm) {
PlaylistFormView(playlist: $navigation.editedPlaylist)
.environmentObject(accounts)
.environmentObject(playlists)
}
)
.background(
EmptyView().sheet(isPresented: $navigation.presentingSettings, onDismiss: openWelcomeScreenIfAccountEmpty) {
SettingsView()
.environmentObject(accounts)
.environmentObject(instances)
}
)
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)
2021-12-01 22:54:58 +00:00
SDWebImageManager.defaultImageCache = PINCache(name: "stream.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 ??
2021-11-08 23:14:28 +00:00
InstancesModel.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
playlists.accounts = accounts
search.accounts = accounts
subscriptions.accounts = accounts
2021-12-04 19:35:41 +00:00
comments.accounts = accounts
comments.player = player
2021-11-08 23:14:28 +00:00
menu.accounts = accounts
menu.navigation = navigation
menu.player = player
2021-12-04 19:35:41 +00:00
player.accounts = accounts
player.comments = comments
if !accounts.current.isNil {
player.loadHistoryDetails()
}
if !Defaults[.saveRecents] {
recents.clear()
}
var section = Defaults[.visibleSections].min()?.tabSelection
#if os(macOS)
if section == .playlists {
section = .search
}
#endif
navigation.tabSelection = section ?? .search
}
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
}
}