2021-10-24 19:31:36 +05:30
|
|
|
import AVFAudio
|
2021-09-25 13:48:22 +05:30
|
|
|
import Defaults
|
2022-02-17 02:40:57 +05:30
|
|
|
import MediaPlayer
|
2021-10-22 04:59:10 +05:30
|
|
|
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 {
|
2022-11-25 02:06:05 +05:30
|
|
|
@ObservedObject private var accounts = AccountsModel.shared
|
|
|
|
@ObservedObject private var navigation = NavigationModel.shared
|
|
|
|
@ObservedObject private var player = PlayerModel.shared
|
|
|
|
private var playlists = PlaylistsModel.shared
|
2022-12-11 20:45:42 +05:30
|
|
|
private var subscriptions = SubscribedChannelsModel.shared
|
2021-11-09 04:44:28 +05:30
|
|
|
|
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
|
|
|
|
2022-08-29 19:01:36 +05:30
|
|
|
@State private var playerInitialized = false
|
|
|
|
|
2022-09-01 23:31:01 +05:30
|
|
|
var playerControls: PlayerControlsModel { .shared }
|
2022-09-01 22:30:56 +05:30
|
|
|
|
2022-05-29 23:56:56 +05:30
|
|
|
let persistenceController = PersistenceController.shared
|
|
|
|
|
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
|
|
|
}
|
2022-08-26 05:06:46 +05:30
|
|
|
.onChange(of: accounts.current) { _ in
|
|
|
|
subscriptions.load(force: true)
|
|
|
|
playlists.load(force: true)
|
|
|
|
}
|
2022-12-11 01:38:03 +05:30
|
|
|
.onChange(of: accounts.signedIn) { newValue in
|
|
|
|
guard newValue else { return }
|
2021-12-20 03:57:20 +05:30
|
|
|
subscriptions.load(force: true)
|
|
|
|
playlists.load(force: true)
|
|
|
|
}
|
2021-10-25 03:56:25 +05:30
|
|
|
|
2022-05-29 17:59:43 +05:30
|
|
|
#if os(iOS)
|
2022-11-25 02:06:05 +05:30
|
|
|
.overlay(videoPlayer)
|
|
|
|
.sheet(isPresented: $navigation.presentingShareSheet) {
|
|
|
|
if let shareURL = navigation.shareURL {
|
|
|
|
ShareSheet(activityItems: [shareURL])
|
2022-06-26 17:27:02 +05:30
|
|
|
}
|
2022-11-25 02:06:05 +05:30
|
|
|
}
|
2021-08-02 04:31:24 +05:30
|
|
|
#endif
|
2022-05-29 03:11:23 +05:30
|
|
|
|
2022-11-25 02:06:05 +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()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.background(
|
|
|
|
EmptyView().sheet(isPresented: $navigation.presentingSettings) {
|
|
|
|
SettingsView()
|
|
|
|
}
|
|
|
|
)
|
2022-12-12 03:45:56 +05:30
|
|
|
.background(
|
|
|
|
EmptyView().sheet(isPresented: $navigation.presentingAccounts) {
|
|
|
|
AccountsView()
|
|
|
|
}
|
|
|
|
)
|
2022-05-29 03:11:23 +05:30
|
|
|
#if !os(tvOS)
|
2022-11-25 02:06:05 +05:30
|
|
|
.fileImporter(
|
|
|
|
isPresented: $navigation.presentingFileImporter,
|
|
|
|
allowedContentTypes: [.audiovisualContent],
|
|
|
|
allowsMultipleSelection: true
|
|
|
|
) { result in
|
|
|
|
do {
|
|
|
|
let selectedFiles = try result.get()
|
|
|
|
let urlsToOpen = selectedFiles.map { url in
|
|
|
|
if let bookmarkURL = URLBookmarkModel.shared.loadBookmark(url) {
|
|
|
|
return bookmarkURL
|
|
|
|
}
|
|
|
|
|
|
|
|
if url.startAccessingSecurityScopedResource() {
|
|
|
|
URLBookmarkModel.shared.saveBookmark(url)
|
2022-11-11 23:20:13 +05:30
|
|
|
}
|
|
|
|
|
2022-11-25 02:06:05 +05:30
|
|
|
return url
|
2022-11-11 23:20:13 +05:30
|
|
|
}
|
|
|
|
|
2022-11-25 02:06:05 +05:30
|
|
|
OpenVideosModel.shared.openURLs(urlsToOpen)
|
|
|
|
} catch {
|
|
|
|
NavigationModel.shared.presentAlert(title: "Could not open Files")
|
2022-11-11 23:20:13 +05:30
|
|
|
}
|
2022-11-25 02:06:05 +05:30
|
|
|
|
|
|
|
NavigationModel.shared.presentingOpenVideos = false
|
|
|
|
}
|
2022-12-04 17:51:50 +05:30
|
|
|
.onOpenURL { url in
|
|
|
|
URLBookmarkModel.shared.saveBookmark(url)
|
|
|
|
OpenURLHandler.shared.handle(url)
|
|
|
|
}
|
2022-11-25 02:06:05 +05:30
|
|
|
.background(
|
|
|
|
EmptyView().sheet(isPresented: $navigation.presentingAddToPlaylist) {
|
|
|
|
AddToPlaylistView(video: navigation.videoToAddToPlaylist)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.background(
|
|
|
|
EmptyView().sheet(isPresented: $navigation.presentingPlaylistForm) {
|
|
|
|
PlaylistFormView(playlist: $navigation.editedPlaylist)
|
|
|
|
}
|
|
|
|
)
|
2022-05-29 03:11:23 +05:30
|
|
|
#endif
|
2022-11-25 02:06:05 +05:30
|
|
|
.background(
|
|
|
|
EmptyView().sheet(isPresented: $navigation.presentingOpenVideos) {
|
|
|
|
OpenVideosView()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.background(playerViewInitialize)
|
|
|
|
.alert(isPresented: $navigation.presentingAlert) { navigation.alert }
|
2022-02-17 02:40:57 +05:30
|
|
|
}
|
|
|
|
|
2022-06-30 13:35:32 +05:30
|
|
|
var navigationStyle: NavigationStyle {
|
|
|
|
#if os(iOS)
|
|
|
|
return horizontalSizeClass == .compact ? .tab : .sidebar
|
|
|
|
#elseif os(tvOS)
|
|
|
|
return .tab
|
|
|
|
#else
|
|
|
|
return .sidebar
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-07-09 05:51:04 +05:30
|
|
|
@ViewBuilder var videoPlayer: some View {
|
2022-08-08 23:32:46 +05:30
|
|
|
if player.presentingPlayer {
|
2022-08-19 04:10:46 +05:30
|
|
|
playerView
|
2022-12-18 17:41:06 +05:30
|
|
|
.transition(.asymmetric(insertion: .identity, removal: .opacity))
|
2022-08-25 22:39:55 +05:30
|
|
|
.zIndex(3)
|
2022-08-19 04:10:46 +05:30
|
|
|
} else if player.activeBackend == .appleAVPlayer {
|
|
|
|
#if os(iOS)
|
|
|
|
playerView.offset(y: UIScreen.main.bounds.height)
|
|
|
|
#endif
|
2022-08-08 23:32:46 +05:30
|
|
|
}
|
2022-05-29 03:11:23 +05:30
|
|
|
}
|
2022-08-19 04:10:46 +05:30
|
|
|
|
|
|
|
var playerView: some View {
|
|
|
|
VideoPlayerView()
|
|
|
|
.environment(\.navigationStyle, navigationStyle)
|
|
|
|
}
|
2022-08-29 19:01:36 +05:30
|
|
|
|
|
|
|
@ViewBuilder var playerViewInitialize: some View {
|
|
|
|
if !playerInitialized {
|
|
|
|
VideoPlayerView()
|
|
|
|
.scaleEffect(0.00001)
|
|
|
|
.onAppear {
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
|
|
|
|
playerInitialized = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|