yattee/Shared/Player/VideoPlayerView.swift

521 lines
19 KiB
Swift
Raw Normal View History

2021-07-18 22:32:46 +00:00
import AVKit
#if os(iOS)
import CoreMotion
#endif
import Defaults
2021-07-18 22:32:46 +00:00
import Siesta
import SwiftUI
struct VideoPlayerView: View {
2022-05-29 12:29:43 +00:00
#if os(iOS)
static let hiddenOffset = YatteeApp.isForPreviews ? 0 : max(UIScreen.main.bounds.height, UIScreen.main.bounds.width) + 100
2022-05-29 12:29:43 +00:00
#endif
2021-11-08 16:29:35 +00:00
static let defaultAspectRatio = 16 / 9.0
2021-09-18 20:36:42 +00:00
static var defaultMinimumHeightLeft: Double {
2021-08-22 19:13:33 +00:00
#if os(macOS)
300
#else
200
#endif
}
@State private var playerSize: CGSize = .zero { didSet {
2022-07-09 00:21:04 +00:00
withAnimation {
if playerSize.width > 900 && Defaults[.playerSidebar] == .whenFits {
sidebarQueue = true
} else {
sidebarQueue = false
}
}
}}
2022-02-27 20:31:17 +00:00
@State private var hoveringPlayer = false
@State private var fullScreenDetails = false
@State private var sidebarQueue = false
2021-07-18 22:32:46 +00:00
2021-11-28 14:37:55 +00:00
@Environment(\.colorScheme) private var colorScheme
2021-08-22 19:13:33 +00:00
#if os(iOS)
@Environment(\.verticalSizeClass) private var verticalSizeClass
@State private var orientation = UIInterfaceOrientation.portrait
@State private var lastOrientation: UIInterfaceOrientation?
2022-02-27 20:31:17 +00:00
#elseif os(macOS)
var mouseLocation: CGPoint { NSEvent.mouseLocation }
2021-08-22 19:13:33 +00:00
#endif
2021-08-16 22:46:18 +00:00
2022-05-29 20:30:00 +00:00
#if os(iOS)
2022-05-29 20:13:21 +00:00
@State private var viewVerticalOffset = Self.hiddenOffset
2022-07-10 11:14:07 +00:00
@State private var orientationObserver: Any?
#endif
2021-12-24 19:20:05 +00:00
@EnvironmentObject<AccountsModel> private var accounts
2022-06-24 22:48:57 +00:00
@EnvironmentObject<NavigationModel> private var navigation
@EnvironmentObject<PlayerModel> private var player
2022-06-25 16:33:35 +00:00
@EnvironmentObject<PlayerControlsModel> private var playerControls
2022-06-24 22:48:57 +00:00
@EnvironmentObject<RecentsModel> private var recents
@EnvironmentObject<SearchModel> private var search
2022-06-07 21:27:48 +00:00
@EnvironmentObject<ThumbnailsModel> private var thumbnails
2021-09-25 08:18:22 +00:00
init() {
if Defaults[.playerSidebar] == .always {
sidebarQueue = true
}
}
var body: some View {
2022-06-24 23:39:29 +00:00
#if DEBUG
// TODO: remove
if #available(iOS 15.0, macOS 12.0, *) {
_ = Self._printChanges()
}
#endif
2021-11-04 22:01:27 +00:00
#if os(macOS)
return HSplitView {
2021-11-04 22:01:27 +00:00
content
}
2022-06-24 22:48:57 +00:00
.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)
2021-11-04 22:01:27 +00:00
#else
return GeometryReader { geometry in
2022-04-03 22:33:09 +00:00
HStack(spacing: 0) {
content
.onAppear {
playerSize = geometry.size
}
}
2022-07-09 22:29:13 +00:00
.ignoresSafeArea(.all, edges: playerEdgesIgnoringSafeArea)
2022-04-03 22:33:09 +00:00
.onChange(of: geometry.size) { size in
self.playerSize = size
}
2022-04-03 22:33:09 +00:00
.onChange(of: fullScreenDetails) { value in
player.backend.setNeedsDrawing(!value)
}
#if os(iOS)
2022-05-29 12:29:43 +00:00
.onChange(of: player.presentingPlayer) { newValue in
if newValue {
2022-05-29 20:13:21 +00:00
viewVerticalOffset = 0
2022-05-29 20:30:00 +00:00
configureOrientationUpdatesBasedOnAccelerometer()
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [weak player] in
player?.onPresentPlayer?()
player?.onPresentPlayer = nil
}
2022-05-29 12:29:43 +00:00
} else {
2022-05-29 20:30:00 +00:00
if Defaults[.lockPortraitWhenBrowsing] {
Orientation.lockOrientation(.portrait, andRotateTo: .portrait)
} else {
Orientation.lockOrientation(.allButUpsideDown)
}
viewVerticalOffset = Self.hiddenOffset
2022-07-10 11:14:07 +00:00
stopOrientationUpdates()
2022-07-10 17:51:46 +00:00
player.controls.hideOverlays()
2022-05-29 12:29:43 +00:00
}
}
2022-05-29 20:30:00 +00:00
#endif
2021-11-04 22:01:27 +00:00
}
2022-05-29 20:30:00 +00:00
#if os(iOS)
2022-05-29 20:13:21 +00:00
.offset(y: viewVerticalOffset)
.animation(.easeOut(duration: 0.3), value: viewVerticalOffset)
2022-06-21 22:18:16 +00:00
.backport
.persistentSystemOverlays(!fullScreenLayout)
2022-05-29 20:30:00 +00:00
#endif
2021-11-04 22:01:27 +00:00
#endif
2021-07-18 22:32:46 +00:00
}
2022-07-09 00:21:04 +00:00
var playerEdgesIgnoringSafeArea: Edge.Set {
#if os(iOS)
if fullScreenLayout, UIDevice.current.orientation.isLandscape {
return [.vertical]
}
#endif
return []
}
var content: some View {
Group {
ZStack(alignment: .bottomLeading) {
#if os(tvOS)
ZStack {
playerView
2022-06-26 12:55:23 +00:00
tvControls
}
.ignoresSafeArea(.all, edges: .all)
.onMoveCommand { direction in
if direction == .up || direction == .down {
playerControls.show()
}
2022-06-26 12:55:23 +00:00
playerControls.resetTimer()
2022-06-26 12:55:23 +00:00
guard !playerControls.presentingControls else { return }
if direction == .left {
player.backend.seek(relative: .secondsInDefaultTimescale(-10))
2022-03-27 19:22:13 +00:00
}
if direction == .right {
player.backend.seek(relative: .secondsInDefaultTimescale(10))
}
}
.onPlayPauseCommand {
player.togglePlay()
}
.onExitCommand {
if playerControls.presentingControls {
playerControls.hide()
} else {
player.hide()
2022-06-28 11:13:19 +00:00
}
}
#else
GeometryReader { geometry in
2022-07-09 00:21:04 +00:00
Group {
2022-06-07 21:27:48 +00:00
if player.playingInPictureInPicture {
2022-06-24 23:39:29 +00:00
pictureInPicturePlaceholder
} else {
2022-03-27 19:22:13 +00:00
playerView
2022-07-09 00:21:04 +00:00
2022-03-27 19:22:13 +00:00
#if !os(tvOS)
2022-02-16 20:23:11 +00:00
.modifier(
VideoPlayerSizeModifier(
geometry: geometry,
2022-07-10 01:15:15 +00:00
aspectRatio: player.aspectRatio,
2022-07-09 00:21:04 +00:00
fullScreen: fullScreenLayout
)
2022-02-16 20:23:11 +00:00
)
2022-06-24 23:39:29 +00:00
.overlay(playerPlaceholder)
2022-03-27 19:22:13 +00:00
#endif
2021-08-22 19:13:33 +00:00
}
}
2022-02-16 20:23:11 +00:00
.frame(maxWidth: fullScreenLayout ? .infinity : nil, maxHeight: fullScreenLayout ? .infinity : nil)
2022-02-27 20:31:17 +00:00
.onHover { hovering in
hoveringPlayer = hovering
2022-06-25 16:33:35 +00:00
hovering ? playerControls.show() : playerControls.hide()
2022-02-27 20:31:17 +00:00
}
2022-07-10 17:51:46 +00:00
#if os(iOS)
.gesture(isPlayerDragGestureEnabled ? playerDragGesture : nil)
#elseif os(macOS)
2022-07-10 13:37:07 +00:00
.onAppear(perform: {
NSEvent.addLocalMonitorForEvents(matching: [.mouseMoved]) {
if !player.currentItem.isNil, hoveringPlayer {
playerControls.resetTimer()
}
return $0
}
})
#endif
2022-07-10 13:37:07 +00:00
.background(Color.black)
2022-03-27 19:22:13 +00:00
#if !os(tvOS)
2022-07-09 22:29:13 +00:00
if !fullScreenLayout {
VStack(spacing: 0) {
2022-03-27 19:22:13 +00:00
#if os(iOS)
2022-07-09 00:21:04 +00:00
VideoDetails(sidebarQueue: sidebarQueue, fullScreen: $fullScreenDetails)
.edgesIgnoringSafeArea(.bottom)
2022-03-27 19:22:13 +00:00
#else
2022-06-25 16:33:35 +00:00
VideoDetails(sidebarQueue: sidebarQueue, fullScreen: $fullScreenDetails)
2022-03-27 19:22:13 +00:00
#endif
}
2022-07-09 00:21:04 +00:00
#if !os(macOS)
.transition(.move(edge: .bottom))
#endif
2022-03-27 19:22:13 +00:00
.background(colorScheme == .dark ? Color.black : Color.white)
.modifier(VideoDetailsPaddingModifier(
2022-06-26 22:15:01 +00:00
playerSize: player.playerSize,
2022-03-27 19:22:13 +00:00
fullScreen: fullScreenDetails
))
2022-02-16 20:23:11 +00:00
}
2022-03-27 19:22:13 +00:00
#endif
2021-08-22 19:13:33 +00:00
}
#endif
}
2022-07-09 00:21:04 +00:00
2022-02-16 20:23:11 +00:00
.background(((colorScheme == .dark || fullScreenLayout) ? Color.black : Color.white).edgesIgnoringSafeArea(.all))
#if os(macOS)
2021-12-02 20:35:42 +00:00
.frame(minWidth: 650)
#endif
2022-07-09 22:29:13 +00:00
if !fullScreenLayout {
2022-02-16 20:23:11 +00:00
#if os(iOS)
if sidebarQueue {
2022-06-25 16:33:35 +00:00
PlayerQueueView(sidebarQueue: true, fullScreen: $fullScreenDetails)
2022-02-16 20:23:11 +00:00
.frame(maxWidth: 350)
2022-07-09 00:21:04 +00:00
.transition(.move(edge: .trailing))
2022-02-16 20:23:11 +00:00
}
#elseif os(macOS)
if Defaults[.playerSidebar] != .never {
2022-06-25 16:33:35 +00:00
PlayerQueueView(sidebarQueue: true, fullScreen: $fullScreenDetails)
2022-02-16 20:23:11 +00:00
.frame(minWidth: 300)
}
#endif
}
2021-07-18 22:32:46 +00:00
}
2022-03-27 19:22:13 +00:00
#if os(iOS)
2022-07-09 22:29:13 +00:00
.statusBar(hidden: fullScreenLayout)
2022-02-27 20:31:17 +00:00
#endif
2022-02-16 20:23:11 +00:00
}
2022-03-27 19:22:13 +00:00
var playerView: some View {
ZStack(alignment: .top) {
2022-07-09 00:21:04 +00:00
Group {
switch player.activeBackend {
case .mpv:
player.mpvPlayerView
case .appleAVPlayer:
player.avPlayerView
#if os(iOS)
.onAppear {
player.pipController = .init(playerLayer: player.playerLayerView.playerLayer)
let pipDelegate = PiPDelegate()
pipDelegate.player = player
player.pipDelegate = pipDelegate
player.pipController?.delegate = pipDelegate
player.playerLayerView.playerLayer.player = player.avPlayerBackend.avPlayer
}
#endif
}
2022-03-27 19:22:13 +00:00
}
2022-07-10 01:15:15 +00:00
.overlay(GeometryReader { proxy in
Color.clear
.onAppear {
player.playerSize = proxy.size
}
.onChange(of: proxy.size) { _ in
player.playerSize = proxy.size
}
2022-07-10 17:51:46 +00:00
.onChange(of: player.controls.presentingOverlays) { _ in
player.playerSize = proxy.size
}
2022-07-10 01:15:15 +00:00
})
2022-07-09 00:21:04 +00:00
#if os(iOS)
.padding(.top, player.playingFullScreen && verticalSizeClass == .regular ? 20 : 0)
#endif
2022-03-27 19:22:13 +00:00
#if !os(tvOS)
PlayerGestures()
PlayerControls(player: player, thumbnails: thumbnails)
2022-07-09 00:21:04 +00:00
#if os(iOS)
2022-07-09 22:29:13 +00:00
.padding(.top, controlsTopPadding)
2022-07-09 00:21:04 +00:00
.padding(.bottom, fullScreenLayout ? safeAreaInsets.bottom : 0)
#endif
2022-03-27 19:22:13 +00:00
#endif
}
2022-07-09 00:21:04 +00:00
#if os(iOS)
2022-07-09 22:29:13 +00:00
.statusBarHidden(fullScreenLayout)
2022-07-09 00:21:04 +00:00
#endif
2022-03-27 19:22:13 +00:00
}
2022-07-09 00:21:04 +00:00
#if os(iOS)
2022-07-10 13:37:07 +00:00
var playerDragGesture: some Gesture {
DragGesture(minimumDistance: 0, coordinateSpace: .global)
.onChanged { value in
guard player.presentingPlayer,
!playerControls.presentingControlsOverlay else { return }
let drag = value.translation.height
guard drag > 0 else { return }
if drag > 60, player.playingFullScreen {
player.exitFullScreen()
}
viewVerticalOffset = drag
}
.onEnded { _ in
guard player.presentingPlayer,
!playerControls.presentingControlsOverlay else { return }
if viewVerticalOffset > 100 {
if player.playingFullScreen {
viewVerticalOffset = 0
player.exitFullScreen()
} else {
player.backend.setNeedsDrawing(false)
player.hide()
}
} else {
viewVerticalOffset = 0
player.backend.setNeedsDrawing(true)
player.show()
}
}
}
2022-07-10 17:51:46 +00:00
var isPlayerDragGestureEnabled: Bool {
!player.controls.presentingDetailsOverlay && !player.controls.presentingDetailsOverlay
}
2022-07-09 22:29:13 +00:00
var controlsTopPadding: Double {
guard fullScreenLayout else { return 0 }
let idiom = UIDevice.current.userInterfaceIdiom
2022-07-10 01:15:15 +00:00
guard idiom == .pad else { return 0 }
2022-07-09 22:29:13 +00:00
return safeAreaInsets.top.isZero ? safeAreaInsets.bottom : safeAreaInsets.top
}
2022-07-09 00:21:04 +00:00
var safeAreaInsets: UIEdgeInsets {
UIApplication.shared.windows.first?.safeAreaInsets ?? .init()
}
#endif
2022-02-16 20:23:11 +00:00
var fullScreenLayout: Bool {
2022-03-27 19:22:13 +00:00
#if os(iOS)
player.playingFullScreen || verticalSizeClass == .compact
2022-02-27 20:31:17 +00:00
#else
player.playingFullScreen
2022-02-27 20:31:17 +00:00
#endif
}
2022-06-24 23:39:29 +00:00
@ViewBuilder var playerPlaceholder: some View {
2022-06-07 21:27:48 +00:00
if player.currentItem.isNil {
ZStack(alignment: .topLeading) {
HStack {
Spacer()
2022-06-07 21:27:48 +00:00
VStack {
Spacer()
VStack(spacing: 10) {
#if !os(tvOS)
Image(systemName: "ticket")
.font(.system(size: 120))
#endif
}
Spacer()
}
2022-06-07 21:27:48 +00:00
.foregroundColor(.gray)
Spacer()
}
2022-06-07 21:27:48 +00:00
#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())
2022-06-24 23:39:29 +00:00
.frame(width: player.playerSize.width, height: player.playerSize.height)
2021-07-18 22:32:46 +00:00
}
}
2021-08-22 19:13:33 +00:00
2022-06-24 23:39:29 +00:00
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())
2022-06-24 23:39:29 +00:00
.frame(width: player.playerSize.width, height: player.playerSize.height)
}
#if os(iOS)
private func configureOrientationUpdatesBasedOnAccelerometer() {
2022-07-09 22:29:13 +00:00
if OrientationTracker.shared.currentInterfaceOrientation.isLandscape,
Defaults[.enterFullscreenInLandscape],
!player.playingFullScreen,
!player.playingInPictureInPicture
{
DispatchQueue.main.async {
player.enterFullScreen()
}
}
2022-07-10 11:14:07 +00:00
orientationObserver = NotificationCenter.default.addObserver(
2022-07-09 22:29:13 +00:00
forName: OrientationTracker.deviceOrientationChangedNotification,
object: nil,
queue: .main
) { _ in
guard !Defaults[.honorSystemOrientationLock], player.presentingPlayer, !player.playingInPictureInPicture else {
return
}
2022-07-09 22:29:13 +00:00
let orientation = OrientationTracker.shared.currentInterfaceOrientation
guard lastOrientation != orientation else {
return
}
lastOrientation = orientation
2022-07-09 22:29:13 +00:00
DispatchQueue.main.async {
guard Defaults[.enterFullscreenInLandscape] else {
return
}
2022-07-09 22:29:13 +00:00
if orientation.isLandscape {
player.enterFullScreen()
2022-07-09 22:29:13 +00:00
Orientation.lockOrientation(OrientationTracker.shared.currentInterfaceOrientationMask, andRotateTo: orientation)
} else {
if !player.playingFullScreen {
player.exitFullScreen()
} else {
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait)
}
}
}
}
}
2022-07-10 11:14:07 +00:00
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
2021-08-22 19:13:33 +00:00
}
struct VideoPlayerView_Previews: PreviewProvider {
static var previews: some View {
VideoPlayerView()
.injectFixtureEnvironmentObjects()
2021-08-22 19:13:33 +00:00
}
2021-07-18 22:32:46 +00:00
}