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

134 lines
4.2 KiB
Swift
Raw Normal View History

2021-07-19 04:02:46 +05:30
import AVKit
import Logging
import SwiftUI
final class PlayerViewController: UIViewController {
var playerLoaded = false
2021-10-28 22:44:55 +05:30
var navigationModel: NavigationModel!
2021-09-25 13:48:22 +05:30
var playerModel: PlayerModel!
2021-07-19 04:02:46 +05:30
var playerViewController = AVPlayerViewController()
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
2021-08-18 03:30:53 +05:30
loadPlayer()
2021-10-28 22:44:55 +05:30
#if os(tvOS)
if !playerViewController.isBeingPresented, !playerViewController.isBeingDismissed {
present(playerViewController, animated: false)
}
#endif
2021-07-19 04:02:46 +05:30
}
func loadPlayer() {
2021-08-18 03:30:53 +05:30
guard !playerLoaded else {
return
}
playerModel.controller = self
2021-09-25 13:48:22 +05:30
playerViewController.player = playerModel.player
playerViewController.allowsPictureInPicturePlayback = true
playerViewController.delegate = self
2021-07-19 04:02:46 +05:30
#if os(tvOS)
playerModel.avPlayerViewController = playerViewController
playerViewController.customInfoViewControllers = [playerQueueInfoViewController]
2021-07-19 04:02:46 +05:30
#else
2021-08-18 03:30:53 +05:30
embedViewController()
#endif
}
#if os(tvOS)
var playerQueueInfoViewController: UIHostingController<AnyView> {
let controller = UIHostingController(rootView:
AnyView(
2021-10-22 20:30:09 +05:30
NowPlayingView(inInfoViewController: true)
2021-10-14 03:35:19 +05:30
.frame(maxHeight: 600)
.environmentObject(playerModel)
)
)
controller.title = "Playing Next"
return controller
}
#else
2021-08-18 03:30:53 +05:30
func embedViewController() {
2021-07-19 04:02:46 +05:30
playerViewController.view.frame = view.bounds
addChild(playerViewController)
view.addSubview(playerViewController.view)
playerViewController.didMove(toParent: self)
2021-08-18 03:30:53 +05:30
}
#endif
2021-07-19 04:02:46 +05:30
}
extension PlayerViewController: AVPlayerViewControllerDelegate {
func playerViewControllerShouldDismiss(_: AVPlayerViewController) -> Bool {
true
}
2021-08-18 03:30:53 +05:30
func playerViewControllerShouldAutomaticallyDismissAtPictureInPictureStart(_: AVPlayerViewController) -> Bool {
2021-10-28 22:44:55 +05:30
true
2021-08-18 03:30:53 +05:30
}
func playerViewControllerWillBeginDismissalTransition(_: AVPlayerViewController) {}
2021-07-30 03:58:28 +05:30
func playerViewControllerDidEndDismissalTransition(_: AVPlayerViewController) {
2021-07-19 04:02:46 +05:30
dismiss(animated: false)
}
func playerViewController(
_: AVPlayerViewController,
willBeginFullScreenPresentationWithAnimationCoordinator _: UIViewControllerTransitionCoordinator
) {}
2021-07-19 04:02:46 +05:30
func playerViewController(
_: AVPlayerViewController,
2021-07-30 03:58:28 +05:30
willEndFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator
2021-07-19 04:02:46 +05:30
) {
2021-07-30 03:58:28 +05:30
coordinator.animate(alongsideTransition: nil) { context in
if !context.isCancelled {
2021-08-23 00:43:33 +05:30
#if os(iOS)
if self.traitCollection.verticalSizeClass == .compact {
self.dismiss(animated: true)
}
#endif
2021-07-30 03:58:28 +05:30
}
}
2021-07-19 04:02:46 +05:30
}
2021-08-18 03:30:53 +05:30
2021-10-28 22:44:55 +05:30
func playerViewController(
_ playerViewController: AVPlayerViewController,
restoreUserInterfaceForPictureInPictureStopWithCompletionHandler completionHandler: @escaping (Bool) -> Void
) {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
if self.navigationModel.presentingChannel {
self.playerModel.playerNavigationLinkActive = true
} else {
self.playerModel.presentPlayer()
}
#if os(tvOS)
if self.playerModel.playingInPictureInPicture {
self.present(playerViewController, animated: false) {
completionHandler(true)
}
}
#else
completionHandler(true)
#endif
}
}
func playerViewControllerWillStartPictureInPicture(_: AVPlayerViewController) {
playerModel.playingInPictureInPicture = true
playerModel.playerNavigationLinkActive = false
}
2021-08-18 03:30:53 +05:30
2021-10-28 22:44:55 +05:30
func playerViewControllerWillStopPictureInPicture(_: AVPlayerViewController) {
playerModel.playingInPictureInPicture = false
}
2021-07-19 04:02:46 +05:30
}