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

557 lines
21 KiB
Swift
Raw Normal View History

2021-07-19 04:02:46 +05:30
import AVKit
#if os(iOS)
import CoreMotion
#endif
import Defaults
2021-07-19 04:02:46 +05:30
import Siesta
import SwiftUI
struct VideoPlayerView: View {
2022-05-29 17:59:43 +05:30
#if os(iOS)
static let hiddenOffset = YatteeApp.isForPreviews ? 0 : max(UIScreen.main.bounds.height, UIScreen.main.bounds.width) + 100
2022-08-08 23:32:46 +05:30
static let defaultSidebarQueueValue = UIScreen.main.bounds.width > 900 && Defaults[.playerSidebar] == .whenFits
#else
static let defaultSidebarQueueValue = Defaults[.playerSidebar] != .never
2022-05-29 17:59:43 +05:30
#endif
2021-11-08 21:59:35 +05:30
static let defaultAspectRatio = 16 / 9.0
2021-09-19 02:06:42 +05:30
static var defaultMinimumHeightLeft: Double {
2021-08-23 00:43:33 +05:30
#if os(macOS)
300
#else
200
#endif
}
@State private var playerSize: CGSize = .zero { didSet {
2022-08-08 23:32:46 +05:30
sidebarQueue = playerSize.width > 900 && Defaults[.playerSidebar] == .whenFits
}}
2022-02-28 02:01:17 +05:30
@State private var hoveringPlayer = false
@State private var fullScreenDetails = false
2022-08-08 23:32:46 +05:30
@State private var sidebarQueue = defaultSidebarQueueValue
2021-07-19 04:02:46 +05:30
2021-11-28 20:07:55 +05:30
@Environment(\.colorScheme) private var colorScheme
2021-08-23 00:43:33 +05:30
#if os(iOS)
@Environment(\.verticalSizeClass) private var verticalSizeClass
@State private var orientation = UIInterfaceOrientation.portrait
@State private var lastOrientation: UIInterfaceOrientation?
2022-02-28 02:01:17 +05:30
#elseif os(macOS)
2022-07-11 04:12:47 +05:30
var hoverThrottle = Throttle(interval: 0.5)
2022-02-28 02:01:17 +05:30
var mouseLocation: CGPoint { NSEvent.mouseLocation }
2021-08-23 00:43:33 +05:30
#endif
2021-08-17 04:16:18 +05:30
2022-05-30 02:00:00 +05:30
#if os(iOS)
2022-08-08 23:32:46 +05:30
@GestureState private var dragGestureState = false
@GestureState private var dragGestureOffset = CGSize.zero
@State private var viewDragOffset = 0.0
2022-07-10 16:44:07 +05:30
@State private var orientationObserver: Any?
#endif
2021-12-25 00:50:05 +05:30
@EnvironmentObject<AccountsModel> private var accounts
2022-06-25 04:18:57 +05:30
@EnvironmentObject<NavigationModel> private var navigation
@EnvironmentObject<PlayerModel> private var player
2022-06-25 22:03:35 +05:30
@EnvironmentObject<PlayerControlsModel> private var playerControls
2022-06-25 04:18:57 +05:30
@EnvironmentObject<RecentsModel> private var recents
@EnvironmentObject<SearchModel> private var search
2022-06-08 02:57:48 +05:30
@EnvironmentObject<ThumbnailsModel> private var thumbnails
2021-09-25 13:48:22 +05:30
var body: some View {
2022-08-14 22:36:22 +05:30
ZStack(alignment: overlayAlignment) {
videoPlayer
#if os(iOS)
.gesture(playerControls.presentingControlsOverlay ? videoPlayerCloseControlsOverlayGesture : nil)
#endif
if playerControls.presentingControlsOverlay {
HStack {
2022-08-14 23:28:46 +05:30
HStack {
#if !os(tvOS)
Spacer()
#endif
ControlsOverlay()
#if os(tvOS)
.onExitCommand {
withAnimation(PlayerControls.animation) {
playerControls.hideOverlays()
}
2022-08-14 22:36:22 +05:30
}
2022-08-14 23:28:46 +05:30
.onPlayPauseCommand {
player.togglePlay()
}
#endif
2022-08-14 22:36:22 +05:30
.padding()
.modifier(ControlBackgroundModifier())
.clipShape(RoundedRectangle(cornerRadius: 4))
.transition(.opacity)
2022-08-14 23:28:46 +05:30
#if !os(tvOS)
Spacer()
#endif
}
#if os(macOS)
.frame(width: player.playerSize.width)
#endif
#if !os(tvOS)
Spacer()
#endif
2022-08-14 22:36:22 +05:30
}
#if os(tvOS)
.clipShape(RoundedRectangle(cornerRadius: 10))
#endif
}
}
}
var videoPlayer: some View {
2022-06-25 05:09:29 +05:30
#if DEBUG
// TODO: remove
if #available(iOS 15.0, macOS 12.0, *) {
2022-08-08 23:32:46 +05:30
Self._printChanges()
2022-06-25 05:09:29 +05:30
}
#endif
2021-11-05 03:31:27 +05:30
#if os(macOS)
2022-08-14 22:36:22 +05:30
return GeometryReader { geometry in
HSplitView {
content
2022-08-14 23:28:46 +05:30
}
.onAppear {
playerSize = geometry.size
2022-08-14 22:36:22 +05:30
}
2021-11-05 03:31:27 +05:30
}
2022-06-25 04:18:57 +05:30
.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-05 03:31:27 +05:30
#else
return GeometryReader { geometry in
2022-04-04 04:03:09 +05:30
HStack(spacing: 0) {
content
.onAppear {
playerSize = geometry.size
}
}
2022-08-06 18:57:34 +05:30
#if os(iOS)
.frame(width: playerWidth.isNil ? nil : Double(playerWidth!), height: playerHeight.isNil ? nil : Double(playerHeight!))
2022-07-10 03:59:13 +05:30
.ignoresSafeArea(.all, edges: playerEdgesIgnoringSafeArea)
2022-08-06 19:58:19 +05:30
#endif
2022-04-04 04:03:09 +05:30
.onChange(of: geometry.size) { size in
self.playerSize = size
}
2022-04-04 04:03:09 +05:30
.onChange(of: fullScreenDetails) { value in
player.backend.setNeedsDrawing(!value)
}
2022-08-08 23:32:46 +05:30
.onAppear {
#if os(iOS)
viewDragOffset = 0.0
2022-05-30 02:00:00 +05:30
configureOrientationUpdatesBasedOnAccelerometer()
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [weak player] in
player?.onPresentPlayer?()
player?.onPresentPlayer = nil
}
2022-07-11 04:56:35 +05:30
if let orientationMask = player.lockedOrientation {
Orientation.lockOrientation(
orientationMask,
andRotateTo: orientationMask == .landscapeLeft ? .landscapeLeft : orientationMask == .landscapeRight ? .landscapeRight : .portrait
)
}
2022-08-08 23:32:46 +05:30
#endif
}
.onDisappear {
#if os(iOS)
2022-05-30 02:00:00 +05:30
if Defaults[.lockPortraitWhenBrowsing] {
Orientation.lockOrientation(.portrait, andRotateTo: .portrait)
} else {
Orientation.lockOrientation(.allButUpsideDown)
}
2022-07-10 16:44:07 +05:30
stopOrientationUpdates()
2022-08-14 22:36:22 +05:30
playerControls.hideOverlays()
2022-08-08 23:32:46 +05:30
player.lockedOrientation = nil
#endif
2022-05-29 17:59:43 +05:30
}
2021-11-05 03:31:27 +05:30
}
2022-05-30 02:00:00 +05:30
#if os(iOS)
2022-08-08 23:32:46 +05:30
.offset(y: playerOffset)
.animation(.linear(duration: 0.2), value: playerOffset)
2022-06-22 03:48:16 +05:30
.backport
.persistentSystemOverlays(!fullScreenLayout)
2022-05-30 02:00:00 +05:30
#endif
2021-11-05 03:31:27 +05:30
#endif
2021-07-19 04:02:46 +05:30
}
2022-08-14 22:36:22 +05:30
var overlayWidth: Double {
guard playerSize.width.isFinite else { return 200 }
return [playerSize.width - 50, 250].min()!
}
var overlayAlignment: Alignment {
#if os(tvOS)
return .bottomTrailing
#else
return .top
#endif
}
2022-08-06 18:57:34 +05:30
#if os(iOS)
2022-08-14 22:36:22 +05:30
var videoPlayerCloseControlsOverlayGesture: some Gesture {
TapGesture().onEnded {
withAnimation(PlayerControls.animation) {
playerControls.hideOverlays()
}
}
}
2022-08-08 23:32:46 +05:30
var playerOffset: Double {
dragGestureState ? dragGestureOffset.height : viewDragOffset
}
2022-08-06 18:57:34 +05:30
var playerWidth: Double? {
2022-08-07 17:41:57 +05:30
fullScreenLayout ? (UIScreen.main.bounds.size.width - SafeArea.insets.left - SafeArea.insets.right) : nil
2022-08-06 18:57:34 +05:30
}
var playerHeight: Double? {
let lockedPortrait = player.lockedOrientation?.contains(.portrait) ?? false
return fullScreenLayout ? UIScreen.main.bounds.size.height - (OrientationTracker.shared.currentInterfaceOrientation.isPortrait || lockedPortrait ? (SafeArea.insets.top + SafeArea.insets.bottom) : 0) : nil
2022-08-06 18:57:34 +05:30
}
var playerEdgesIgnoringSafeArea: Edge.Set {
2022-08-14 22:36:22 +05:30
if let orientation = player.lockedOrientation, orientation.contains(.portrait) {
return []
}
2022-07-09 05:51:04 +05:30
if fullScreenLayout, UIDevice.current.orientation.isLandscape {
return [.vertical]
}
2022-08-14 22:36:22 +05:30
2022-08-06 18:57:34 +05:30
return []
}
#endif
2022-07-09 05:51:04 +05:30
var content: some View {
Group {
ZStack(alignment: .bottomLeading) {
#if os(tvOS)
ZStack {
2022-08-06 18:57:34 +05:30
PlayerBackendView()
2022-06-26 18:25:23 +05:30
tvControls
}
2022-08-06 20:08:43 +05:30
.ignoresSafeArea()
#else
GeometryReader { geometry in
2022-08-13 19:44:38 +05:30
PlayerBackendView()
#if !os(tvOS)
.modifier(
VideoPlayerSizeModifier(
geometry: geometry,
aspectRatio: player.aspectRatio,
fullScreen: fullScreenLayout
)
)
.overlay(playerPlaceholder)
#endif
2022-08-13 20:16:45 +05:30
.frame(maxWidth: fullScreenLayout ? .infinity : nil, maxHeight: fullScreenLayout ? .infinity : nil)
.onHover { hovering in
hoveringPlayer = hovering
hovering ? playerControls.show() : playerControls.hide()
}
2022-07-10 23:21:46 +05:30
#if os(iOS)
2022-08-13 20:16:45 +05:30
.gesture(playerControls.presentingOverlays ? nil : playerDragGesture)
.onChange(of: dragGestureState) { _ in
if !dragGestureState {
onPlayerDragGestureEnded()
}
2022-08-08 23:32:46 +05:30
}
2022-07-10 23:21:46 +05:30
#elseif os(macOS)
2022-08-13 20:16:45 +05:30
.onAppear(perform: {
NSEvent.addLocalMonitorForEvents(matching: [.mouseMoved]) {
hoverThrottle.execute {
if !player.currentItem.isNil, hoveringPlayer {
playerControls.resetTimer()
}
2022-07-11 04:12:47 +05:30
}
2022-07-10 19:07:07 +05:30
2022-08-13 20:16:45 +05:30
return $0
}
})
#endif
2022-08-13 20:16:45 +05:30
.background(Color.black)
2022-03-28 00:52:13 +05:30
#if !os(tvOS)
2022-07-10 03:59:13 +05:30
if !fullScreenLayout {
2022-08-08 23:32:46 +05:30
VideoDetails(sidebarQueue: sidebarQueue, fullScreen: $fullScreenDetails)
2022-08-06 18:57:34 +05:30
#if os(iOS)
2022-08-08 23:32:46 +05:30
.ignoresSafeArea(.all, edges: .bottom)
.transition(.move(edge: .bottom))
2022-07-09 05:51:04 +05:30
#endif
2022-08-08 23:32:46 +05:30
.background(colorScheme == .dark ? Color.black : Color.white)
.modifier(VideoDetailsPaddingModifier(
playerSize: player.playerSize,
fullScreen: fullScreenDetails
))
.onDisappear {
if player.presentingPlayer {
player.setNeedsDrawing(true)
}
}
2022-02-17 01:53:11 +05:30
}
2022-03-28 00:52:13 +05:30
#endif
2021-08-23 00:43:33 +05:30
}
#endif
}
2022-02-17 01:53:11 +05:30
.background(((colorScheme == .dark || fullScreenLayout) ? Color.black : Color.white).edgesIgnoringSafeArea(.all))
#if os(macOS)
2021-12-03 02:05:42 +05:30
.frame(minWidth: 650)
#endif
2022-08-14 22:36:22 +05:30
#if os(tvOS)
.onMoveCommand { direction in
if direction == .up {
playerControls.show()
2022-08-15 03:46:37 +05:30
} else if direction == .down, !playerControls.presentingControlsOverlay, !playerControls.presentingControls {
2022-08-14 22:36:22 +05:30
withAnimation(PlayerControls.animation) {
playerControls.presentingControlsOverlay = true
}
}
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.presentingOverlays {
playerControls.hideOverlays()
}
if playerControls.presentingControls {
playerControls.hide()
} else {
player.hide()
}
}
#endif
2022-07-10 03:59:13 +05:30
if !fullScreenLayout {
2022-02-17 01:53:11 +05:30
#if os(iOS)
if sidebarQueue {
2022-06-25 22:03:35 +05:30
PlayerQueueView(sidebarQueue: true, fullScreen: $fullScreenDetails)
2022-02-17 01:53:11 +05:30
.frame(maxWidth: 350)
2022-07-11 23:22:55 +05:30
.background(colorScheme == .dark ? Color.black : Color.white)
2022-08-08 23:32:46 +05:30
.transition(.move(edge: .bottom))
2022-02-17 01:53:11 +05:30
}
#elseif os(macOS)
if Defaults[.playerSidebar] != .never {
2022-06-25 22:03:35 +05:30
PlayerQueueView(sidebarQueue: true, fullScreen: $fullScreenDetails)
2022-02-17 01:53:11 +05:30
.frame(minWidth: 300)
2022-07-11 23:22:55 +05:30
.background(colorScheme == .dark ? Color.black : Color.white)
2022-02-17 01:53:11 +05:30
}
#endif
}
2021-07-19 04:02:46 +05:30
}
2022-08-13 19:48:27 +05:30
.onChange(of: fullScreenLayout) { newValue in
2022-08-14 22:36:22 +05:30
if !newValue { playerControls.hideOverlays() }
2022-08-13 19:48:27 +05:30
}
2022-03-28 00:52:13 +05:30
#if os(iOS)
2022-07-10 03:59:13 +05:30
.statusBar(hidden: fullScreenLayout)
2022-02-28 02:01:17 +05:30
#endif
2022-02-17 01:53:11 +05:30
}
var fullScreenLayout: Bool {
2022-03-28 00:52:13 +05:30
#if os(iOS)
2022-08-13 19:48:27 +05:30
return player.playingFullScreen || verticalSizeClass == .compact
2022-02-28 02:01:17 +05:30
#else
2022-08-13 19:48:27 +05:30
return player.playingFullScreen
2022-02-28 02:01:17 +05:30
#endif
}
2022-06-25 05:09:29 +05:30
@ViewBuilder var playerPlaceholder: some View {
2022-06-08 02:57:48 +05:30
if player.currentItem.isNil {
ZStack(alignment: .topTrailing) {
2022-06-08 02:57:48 +05:30
HStack {
Spacer()
2022-06-08 02:57:48 +05:30
VStack {
Spacer()
VStack(spacing: 10) {
#if !os(tvOS)
Image(systemName: "ticket")
.font(.system(size: 120))
#endif
}
Spacer()
}
2022-06-08 02:57:48 +05:30
.foregroundColor(.gray)
Spacer()
}
2022-06-08 02:57:48 +05:30
#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-25 05:09:29 +05:30
.frame(width: player.playerSize.width, height: player.playerSize.height)
2021-07-19 04:02:46 +05:30
}
}
2021-08-23 00:43:33 +05:30
#if os(iOS)
2022-08-06 18:57:34 +05:30
var playerDragGesture: some Gesture {
DragGesture(minimumDistance: 0, coordinateSpace: .global)
2022-08-08 23:32:46 +05:30
.updating($dragGestureOffset) { value, state, _ in
state = value.translation.height > 0 ? value.translation : .zero
}
.updating($dragGestureState) { _, state, _ in
state = true
}
2022-08-06 18:57:34 +05:30
.onChanged { value in
guard player.presentingPlayer,
!playerControls.presentingControlsOverlay else { return }
2022-08-14 22:36:22 +05:30
if playerControls.presentingControls {
playerControls.presentingControls = false
2022-08-06 18:57:34 +05:30
}
let drag = value.translation.height
guard drag > 0 else { return }
2022-08-08 23:32:46 +05:30
viewDragOffset = drag
2022-08-06 18:57:34 +05:30
if drag > 60,
2022-08-08 23:32:46 +05:30
player.playingFullScreen
2022-08-06 18:57:34 +05:30
{
player.exitFullScreen()
2022-08-08 23:32:46 +05:30
if Defaults[.rotateToPortraitOnExitFullScreen] {
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait)
playerControls.show()
}
2022-08-06 18:57:34 +05:30
}
}
.onEnded { _ in
2022-08-08 23:32:46 +05:30
onPlayerDragGestureEnded()
}
}
private func onPlayerDragGestureEnded() {
guard player.presentingPlayer,
!playerControls.presentingControlsOverlay else { return }
if viewDragOffset > 100 {
player.hide()
DispatchQueue.main.asyncAfter(deadline: .now() + 0.4) {
player.backend.setNeedsDrawing(false)
player.exitFullScreen()
}
2022-08-09 22:58:16 +05:30
viewDragOffset = Self.hiddenOffset
2022-08-08 23:32:46 +05:30
} else {
withAnimation(.linear(duration: 0.2)) {
viewDragOffset = 0
2022-08-06 18:57:34 +05:30
}
2022-08-08 23:32:46 +05:30
player.backend.setNeedsDrawing(true)
player.show()
}
2022-08-06 18:57:34 +05:30
}
private func configureOrientationUpdatesBasedOnAccelerometer() {
2022-08-08 23:32:46 +05:30
let currentOrientation = OrientationTracker.shared.currentInterfaceOrientation
if currentOrientation.isLandscape,
Defaults[.enterFullscreenInLandscape],
!player.playingFullScreen,
!player.playingInPictureInPicture
{
DispatchQueue.main.async {
2022-08-14 22:36:22 +05:30
playerControls.presentingControls = false
player.enterFullScreen(showControls: false)
}
2022-08-08 23:32:46 +05:30
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: currentOrientation)
}
2022-07-10 16:44:07 +05:30
orientationObserver = NotificationCenter.default.addObserver(
2022-07-10 03:59:13 +05:30
forName: OrientationTracker.deviceOrientationChangedNotification,
object: nil,
queue: .main
) { _ in
2022-07-11 04:56:35 +05:30
guard !Defaults[.honorSystemOrientationLock],
player.presentingPlayer,
!player.playingInPictureInPicture,
player.lockedOrientation.isNil
else {
return
}
2022-07-10 03:59:13 +05:30
let orientation = OrientationTracker.shared.currentInterfaceOrientation
guard lastOrientation != orientation else {
return
}
lastOrientation = orientation
2022-07-10 03:59:13 +05:30
DispatchQueue.main.async {
guard Defaults[.enterFullscreenInLandscape] else {
return
}
2022-07-10 03:59:13 +05:30
if orientation.isLandscape {
2022-08-14 22:36:22 +05:30
playerControls.presentingControls = false
player.enterFullScreen(showControls: false)
2022-07-10 03:59:13 +05:30
Orientation.lockOrientation(OrientationTracker.shared.currentInterfaceOrientationMask, andRotateTo: orientation)
} else {
player.exitFullScreen(showControls: false)
2022-08-06 18:57:34 +05:30
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait)
}
}
}
}
2022-07-10 16:44:07 +05:30
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)
}
#endif
2021-08-23 00:43:33 +05:30
}
struct VideoPlayerView_Previews: PreviewProvider {
static var previews: some View {
VideoPlayerView()
.injectFixtureEnvironmentObjects()
2021-08-23 00:43:33 +05:30
}
2021-07-19 04:02:46 +05:30
}