2022-08-28 17:18:49 +00:00
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
extension VideoPlayerView {
|
|
|
|
var playerDragGesture: some Gesture {
|
|
|
|
DragGesture(minimumDistance: 0, coordinateSpace: .global)
|
|
|
|
#if os(iOS)
|
|
|
|
.updating($dragGestureOffset) { value, state, _ in
|
|
|
|
guard isVerticalDrag else { return }
|
|
|
|
var translation = value.translation
|
|
|
|
translation.height = max(0, translation.height)
|
|
|
|
state = translation
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
.updating($dragGestureState) { _, state, _ in
|
|
|
|
state = true
|
|
|
|
}
|
|
|
|
.onChanged { value in
|
|
|
|
guard player.presentingPlayer,
|
2022-09-01 18:01:01 +00:00
|
|
|
!player.controls.presentingControlsOverlay else { return }
|
2022-08-28 17:18:49 +00:00
|
|
|
|
2022-09-01 18:01:01 +00:00
|
|
|
if player.controls.presentingControls, !player.musicMode {
|
|
|
|
player.controls.presentingControls = false
|
2022-08-28 17:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if player.musicMode {
|
|
|
|
player.backend.stopControlsUpdates()
|
|
|
|
}
|
|
|
|
|
|
|
|
let verticalDrag = value.translation.height
|
|
|
|
let horizontalDrag = value.translation.width
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
if viewDragOffset > 0, !isVerticalDrag {
|
|
|
|
isVerticalDrag = true
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-08-29 12:07:27 +00:00
|
|
|
if !isVerticalDrag, horizontalPlayerGestureEnabled, abs(horizontalDrag) > seekGestureSensitivity, !isHorizontalDrag {
|
2022-08-28 17:18:49 +00:00
|
|
|
isHorizontalDrag = true
|
2022-08-29 11:55:23 +00:00
|
|
|
player.seek.onSeekGestureStart()
|
2022-08-28 17:18:49 +00:00
|
|
|
viewDragOffset = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if horizontalPlayerGestureEnabled, isHorizontalDrag {
|
2022-08-29 11:55:23 +00:00
|
|
|
player.seek.updateCurrentTime {
|
|
|
|
let time = player.backend.playerItemDuration?.seconds ?? 0
|
|
|
|
if player.seek.gestureStart.isNil {
|
|
|
|
player.seek.gestureStart = time
|
|
|
|
}
|
|
|
|
let timeSeek = (time / player.playerSize.width) * horizontalDrag * seekGestureSpeed
|
|
|
|
|
|
|
|
player.seek.gestureSeek = timeSeek
|
2022-08-28 17:18:49 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
guard verticalDrag > 0 else { return }
|
|
|
|
viewDragOffset = verticalDrag
|
|
|
|
|
|
|
|
if verticalDrag > 60,
|
|
|
|
player.playingFullScreen
|
|
|
|
{
|
|
|
|
player.exitFullScreen(showControls: false)
|
|
|
|
#if os(iOS)
|
|
|
|
if Defaults[.rotateToPortraitOnExitFullScreen] {
|
|
|
|
Orientation.lockOrientation(.allButUpsideDown, andRotateTo: .portrait)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.onEnded { _ in
|
|
|
|
onPlayerDragGestureEnded()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-29 15:58:40 +00:00
|
|
|
func onPlayerDragGestureEnded() {
|
2022-08-28 17:18:49 +00:00
|
|
|
if horizontalPlayerGestureEnabled, isHorizontalDrag {
|
|
|
|
isHorizontalDrag = false
|
2022-08-29 11:55:23 +00:00
|
|
|
player.seek.onSeekGestureEnd()
|
2022-08-28 17:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
isVerticalDrag = false
|
|
|
|
|
|
|
|
guard player.presentingPlayer,
|
2022-09-01 18:01:01 +00:00
|
|
|
!player.controls.presentingControlsOverlay else { return }
|
2022-08-28 17:18:49 +00:00
|
|
|
|
|
|
|
if viewDragOffset > 100 {
|
|
|
|
withAnimation(Constants.overlayAnimation) {
|
|
|
|
viewDragOffset = Self.hiddenOffset
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
withAnimation(Constants.overlayAnimation) {
|
|
|
|
viewDragOffset = 0
|
|
|
|
}
|
|
|
|
player.backend.setNeedsDrawing(true)
|
|
|
|
player.show()
|
|
|
|
|
|
|
|
if player.musicMode {
|
|
|
|
player.backend.startControlsUpdates()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|