import AVKit #if os(iOS) import CoreMotion #endif import Defaults import Siesta import SwiftUI struct VideoPlayerView: View { #if os(iOS) static let hiddenOffset = YatteeApp.isForPreviews ? 0 : max(UIScreen.main.bounds.height, UIScreen.main.bounds.width) + 100 #endif static let defaultAspectRatio = 16 / 9.0 static var defaultMinimumHeightLeft: Double { #if os(macOS) 300 #else 200 #endif } @State private var playerSize: CGSize = .zero { didSet { withAnimation { if playerSize.width > 900 && Defaults[.playerSidebar] == .whenFits { sidebarQueue = true } else { sidebarQueue = false } } }} @State private var hoveringPlayer = false @State private var fullScreenDetails = false @State private var sidebarQueue = false @Environment(\.colorScheme) private var colorScheme #if os(iOS) @Environment(\.verticalSizeClass) private var verticalSizeClass @State private var orientation = UIInterfaceOrientation.portrait @State private var lastOrientation: UIInterfaceOrientation? #elseif os(macOS) var hoverThrottle = Throttle(interval: 0.5) var mouseLocation: CGPoint { NSEvent.mouseLocation } #endif #if os(iOS) @State private var viewVerticalOffset = Self.hiddenOffset @State private var orientationObserver: Any? #endif @EnvironmentObject private var accounts @EnvironmentObject private var navigation @EnvironmentObject private var player @EnvironmentObject private var playerControls @EnvironmentObject private var recents @EnvironmentObject private var search @EnvironmentObject private var thumbnails init() { if Defaults[.playerSidebar] == .always { sidebarQueue = true } } var body: some View { #if DEBUG // TODO: remove if #available(iOS 15.0, macOS 12.0, *) { _ = Self._printChanges() } #endif #if os(macOS) return HSplitView { content } .alert(isPresented: $navigation.presentingAlertInVideoPlayer) { navigation.alert } .onOpenURL { OpenURLHandler( accounts: accounts, navigation: navigation, recents: recents, player: player, search: search ).handle($0) } .frame(minWidth: 950, minHeight: 700) #else return GeometryReader { geometry in HStack(spacing: 0) { content .onAppear { playerSize = geometry.size } } #if os(iOS) .frame(width: playerWidth.isNil ? nil : Double(playerWidth!), height: playerHeight.isNil ? nil : Double(playerHeight!)) #endif .ignoresSafeArea(.all, edges: playerEdgesIgnoringSafeArea) .onChange(of: geometry.size) { size in self.playerSize = size } .onChange(of: fullScreenDetails) { value in player.backend.setNeedsDrawing(!value) } #if os(iOS) .onChange(of: player.presentingPlayer) { newValue in if newValue { viewVerticalOffset = 0 configureOrientationUpdatesBasedOnAccelerometer() DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [weak player] in player?.onPresentPlayer?() player?.onPresentPlayer = nil } if let orientationMask = player.lockedOrientation { Orientation.lockOrientation( orientationMask, andRotateTo: orientationMask == .landscapeLeft ? .landscapeLeft : orientationMask == .landscapeRight ? .landscapeRight : .portrait ) } } else { if Defaults[.lockPortraitWhenBrowsing] { Orientation.lockOrientation(.portrait, andRotateTo: .portrait) } else { Orientation.lockOrientation(.allButUpsideDown) } viewVerticalOffset = Self.hiddenOffset stopOrientationUpdates() player.controls.hideOverlays() } } #endif } #if os(iOS) .offset(y: viewVerticalOffset) .animation(.easeOut(duration: 0.3), value: viewVerticalOffset) .backport .persistentSystemOverlays(!fullScreenLayout) #endif #endif } #if os(iOS) var playerWidth: Double? { fullScreenLayout ? (UIScreen.main.bounds.size.width - safeAreaInsets.left - safeAreaInsets.right) : nil } var playerHeight: Double? { fullScreenLayout ? UIScreen.main.bounds.size.height - (OrientationTracker.shared.currentInterfaceOrientation.isPortrait ? (safeAreaInsets.top + safeAreaInsets.bottom) : 0) : nil } var playerEdgesIgnoringSafeArea: Edge.Set { if fullScreenLayout, UIDevice.current.orientation.isLandscape { return [.vertical] } return [] } #endif var content: some View { Group { ZStack(alignment: .bottomLeading) { #if os(tvOS) ZStack { PlayerBackendView() tvControls } .onMoveCommand { direction in if direction == .up || direction == .down { playerControls.show() } playerControls.resetTimer() guard !playerControls.presentingControls else { return } if direction == .left { player.backend.seek(relative: .secondsInDefaultTimescale(-10)) } if direction == .right { player.backend.seek(relative: .secondsInDefaultTimescale(10)) } } .onPlayPauseCommand { player.togglePlay() } .onExitCommand { if playerControls.presentingControls { playerControls.hide() } else { player.hide() } } #else GeometryReader { geometry in Group { if player.playingInPictureInPicture { pictureInPicturePlaceholder } else { PlayerBackendView() #if !os(tvOS) .modifier( VideoPlayerSizeModifier( geometry: geometry, aspectRatio: player.aspectRatio, fullScreen: fullScreenLayout ) ) .overlay(playerPlaceholder) #endif } } .frame(maxWidth: fullScreenLayout ? .infinity : nil, maxHeight: fullScreenLayout ? .infinity : nil) .onHover { hovering in hoveringPlayer = hovering hovering ? playerControls.show() : playerControls.hide() } #if os(iOS) .gesture(playerControls.presentingOverlays ? nil : playerDragGesture) #elseif os(macOS) .onAppear(perform: { NSEvent.addLocalMonitorForEvents(matching: [.mouseMoved]) { hoverThrottle.execute { if !player.currentItem.isNil, hoveringPlayer { playerControls.resetTimer() } } return $0 } }) #endif .background(Color.black) #if !os(tvOS) if !fullScreenLayout { VStack(spacing: 0) { #if os(iOS) VideoDetails(sidebarQueue: sidebarQueue, fullScreen: $fullScreenDetails) #else VideoDetails(sidebarQueue: sidebarQueue, fullScreen: $fullScreenDetails) #endif } #if os(iOS) .transition(.asymmetric(insertion: .opacity, removal: .identity)) #endif .background(colorScheme == .dark ? Color.black : Color.white) .modifier(VideoDetailsPaddingModifier( playerSize: player.playerSize, fullScreen: fullScreenDetails )) } #endif } #endif } .background(((colorScheme == .dark || fullScreenLayout) ? Color.black : Color.white).edgesIgnoringSafeArea(.all)) #if os(macOS) .frame(minWidth: 650) #endif if !fullScreenLayout { #if os(iOS) if sidebarQueue { PlayerQueueView(sidebarQueue: true, fullScreen: $fullScreenDetails) .frame(maxWidth: 350) .transition(.move(edge: .trailing)) .background(colorScheme == .dark ? Color.black : Color.white) } #elseif os(macOS) if Defaults[.playerSidebar] != .never { PlayerQueueView(sidebarQueue: true, fullScreen: $fullScreenDetails) .frame(minWidth: 300) .background(colorScheme == .dark ? Color.black : Color.white) } #endif } } #if os(iOS) .statusBar(hidden: fullScreenLayout) #endif } var fullScreenLayout: Bool { #if os(iOS) player.playingFullScreen || verticalSizeClass == .compact #else player.playingFullScreen #endif } @ViewBuilder var playerPlaceholder: some View { if player.currentItem.isNil { ZStack(alignment: .topLeading) { HStack { Spacer() VStack { Spacer() VStack(spacing: 10) { #if !os(tvOS) Image(systemName: "ticket") .font(.system(size: 120)) #endif } Spacer() } .foregroundColor(.gray) Spacer() } #if os(iOS) Button { player.hide() } label: { Image(systemName: "xmark") .font(.system(size: 40)) } .buttonStyle(.plain) .padding(10) .foregroundColor(.gray) #endif } .background(Color.black) .contentShape(Rectangle()) .frame(width: player.playerSize.width, height: player.playerSize.height) } } var pictureInPicturePlaceholder: some View { HStack { Spacer() VStack { Spacer() VStack(spacing: 10) { #if !os(tvOS) Image(systemName: "pip") .font(.system(size: 120)) #endif Text("Playing in Picture in Picture") } Spacer() } .foregroundColor(.gray) Spacer() } .contextMenu { Button { player.closePiP() } label: { Label("Exit Picture in Picture", systemImage: "pip.exit") } } .contentShape(Rectangle()) .frame(width: player.playerSize.width, height: player.playerSize.height) } #if os(iOS) var playerDragGesture: some Gesture { DragGesture(minimumDistance: 0, coordinateSpace: .global) .onChanged { value in guard player.presentingPlayer, !playerControls.presentingControlsOverlay else { return } if player.controls.presentingControls { player.controls.presentingControls = false } let drag = value.translation.height guard drag > 0 else { return } if drag > 60, player.playingFullScreen, !OrientationTracker.shared.currentInterfaceOrientation.isLandscape { player.exitFullScreen() player.lockedOrientation = nil } viewVerticalOffset = drag } .onEnded { _ in guard player.presentingPlayer, !playerControls.presentingControlsOverlay else { return } if viewVerticalOffset > 100 { player.backend.setNeedsDrawing(false) player.hide() player.exitFullScreen() } else { viewVerticalOffset = 0 player.backend.setNeedsDrawing(true) player.show() } } } var safeAreaInsets: UIEdgeInsets { UIApplication.shared.windows.first?.safeAreaInsets ?? .init() } private func configureOrientationUpdatesBasedOnAccelerometer() { if OrientationTracker.shared.currentInterfaceOrientation.isLandscape, Defaults[.enterFullscreenInLandscape], !player.playingFullScreen, !player.playingInPictureInPicture { DispatchQueue.main.async { player.controls.presentingControls = false player.enterFullScreen() } } orientationObserver = NotificationCenter.default.addObserver( forName: OrientationTracker.deviceOrientationChangedNotification, object: nil, queue: .main ) { _ in guard !Defaults[.honorSystemOrientationLock], player.presentingPlayer, !player.playingInPictureInPicture, player.lockedOrientation.isNil else { return } let orientation = OrientationTracker.shared.currentInterfaceOrientation guard lastOrientation != orientation else { return } lastOrientation = orientation DispatchQueue.main.async { guard Defaults[.enterFullscreenInLandscape] else { return } if orientation.isLandscape { player.controls.presentingControls = false player.enterFullScreen() Orientation.lockOrientation(OrientationTracker.shared.currentInterfaceOrientationMask, andRotateTo: orientation) } else { player.exitFullScreen() Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait) } } } } private func stopOrientationUpdates() { guard let observer = orientationObserver else { return } NotificationCenter.default.removeObserver(observer) } #endif #if os(tvOS) var tvControls: some View { TVControls(model: playerControls, player: player, thumbnails: thumbnails) .onReceive(playerControls.reporter) { _ in playerControls.show() playerControls.resetTimer() } } #endif } struct VideoPlayerView_Previews: PreviewProvider { static var previews: some View { VideoPlayerView() .injectFixtureEnvironmentObjects() } }