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

192 lines
5.9 KiB
Swift
Raw Normal View History

import AVFAudio
2021-09-25 13:48:22 +05:30
import Defaults
import SDWebImage
import SDWebImagePINPlugin
import SDWebImageWebPCoder
2021-10-17 04:18:58 +05:30
import Siesta
2021-06-10 02:21:23 +05:30
import SwiftUI
struct ContentView: View {
2021-10-17 04:18:58 +05:30
@StateObject private var accounts = AccountsModel()
@StateObject private var instances = InstancesModel()
2021-09-25 13:48:22 +05:30
@StateObject private var navigation = NavigationModel()
@StateObject private var player = PlayerModel()
@StateObject private var playlists = PlaylistsModel()
2021-09-25 17:47:58 +05:30
@StateObject private var recents = RecentsModel()
@StateObject private var search = SearchModel()
@StateObject private var subscriptions = SubscriptionsModel()
2021-10-25 03:56:25 +05:30
@StateObject private var thumbnailsModel = ThumbnailsModel()
2021-09-25 13:48:22 +05:30
2021-11-09 04:44:28 +05:30
@EnvironmentObject<MenuModel> private var menu
2021-07-12 02:22:49 +05:30
#if os(iOS)
@Environment(\.horizontalSizeClass) private var horizontalSizeClass
#endif
2021-06-12 02:41:59 +05:30
2021-06-10 02:21:23 +05:30
var body: some View {
2021-12-01 04:28:11 +05:30
Group {
2021-07-12 02:22:49 +05:30
#if os(iOS)
if horizontalSizeClass == .compact {
AppTabNavigation()
} else {
AppSidebarNavigation()
2021-06-12 02:41:59 +05:30
}
2021-07-12 02:22:49 +05:30
#elseif os(macOS)
AppSidebarNavigation()
#elseif os(tvOS)
TVNavigationView()
#endif
2021-07-30 04:04:13 +05:30
}
2021-10-17 04:18:58 +05:30
.onAppear(perform: configure)
2021-10-24 14:46:04 +05:30
2021-10-17 04:18:58 +05:30
.environmentObject(accounts)
.environmentObject(instances)
2021-09-25 13:48:22 +05:30
.environmentObject(navigation)
.environmentObject(player)
.environmentObject(playlists)
2021-09-25 13:48:22 +05:30
.environmentObject(recents)
.environmentObject(search)
.environmentObject(subscriptions)
2021-10-25 03:56:25 +05:30
.environmentObject(thumbnailsModel)
2021-12-01 04:28:11 +05:30
// 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(iOS)
2021-12-01 04:28:11 +05:30
.background(
EmptyView().fullScreenCover(isPresented: $player.presentingPlayer) {
videoPlayer
}
)
#elseif os(macOS)
2021-12-01 04:28:11 +05:30
.background(
EmptyView().sheet(isPresented: $player.presentingPlayer) {
videoPlayer
.frame(minWidth: 900, minHeight: 800)
}
)
#endif
#if !os(tvOS)
2021-11-08 21:59:35 +05:30
.handlesExternalEvents(preferring: Set(["*"]), allowing: Set(["*"]))
.onOpenURL(perform: handleOpenedURL)
2021-12-01 04:28:11 +05:30
.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-02 04:31:24 +05:30
#endif
2021-07-08 04:09:18 +05:30
}
2021-12-01 04:28:11 +05:30
private var videoPlayer: some View {
VideoPlayerView()
.environmentObject(accounts)
.environmentObject(instances)
.environmentObject(navigation)
.environmentObject(player)
.environmentObject(playlists)
.environmentObject(subscriptions)
.environmentObject(thumbnailsModel)
}
2021-10-17 04:18:58 +05:30
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-17 04:18:58 +05:30
if let account = accounts.lastUsed ??
instances.lastUsed?.anonymousAccount ??
2021-11-09 04:44:28 +05:30
InstancesModel.all.first?.anonymousAccount
2021-10-18 03:19:56 +05:30
{
accounts.setCurrent(account)
}
2021-10-18 04:36:00 +05:30
if accounts.current.isNil {
2021-10-18 04:36:00 +05:30
navigation.presentingWelcomeScreen = true
}
2021-10-17 04:18:58 +05:30
player.accounts = accounts
playlists.accounts = accounts
search.accounts = accounts
subscriptions.accounts = accounts
2021-11-09 04:44:28 +05:30
menu.accounts = accounts
menu.navigation = navigation
menu.player = player
if !accounts.current.isNil {
player.loadHistoryDetails()
}
var section = Defaults[.visibleSections].min()?.tabSelection
#if os(macOS)
if section == .playlists {
section = .search
}
#endif
navigation.tabSelection = section ?? .search
}
2021-10-18 04:36:00 +05:30
func openWelcomeScreenIfAccountEmpty() {
guard Defaults[.instances].isEmpty else {
2021-10-18 04:36:00 +05:30
return
}
navigation.presentingWelcomeScreen = true
}
2021-10-24 14:46:04 +05:30
2021-10-24 18:01:10 +05:30
#if !os(tvOS)
func handleOpenedURL(_ url: URL) {
guard !accounts.current.isNil else {
return
}
2021-10-24 14:46:04 +05:30
2021-10-24 18:01:10 +05:30
let parser = VideoURLParser(url: url)
2021-10-24 14:46:04 +05:30
2021-10-24 18:01:10 +05:30
guard let id = parser.id else {
return
}
2021-10-24 14:46:04 +05:30
2021-10-24 18:01:10 +05:30
accounts.api.video(id).load().onSuccess { response in
if let video: Video = response.typedContent() {
2021-10-25 13:55:41 +05:30
player.addCurrentItemToHistory()
2021-10-24 18:01:10 +05:30
self.player.playNow(video, at: parser.time)
self.player.presentPlayer()
}
2021-10-24 14:46:04 +05:30
}
}
2021-10-24 18:01:10 +05:30
#endif
2021-06-10 02:21:23 +05:30
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
2021-09-29 17:15:00 +05:30
.injectFixtureEnvironmentObjects()
2021-06-10 02:21:23 +05:30
}
}