yattee/Shared/Player/VideoPlayerView.swift

167 lines
5.1 KiB
Swift
Raw Normal View History

2021-07-18 22:32:46 +00:00
import AVKit
import Defaults
2021-07-18 22:32:46 +00:00
import Siesta
import SwiftUI
struct VideoPlayerView: View {
2021-09-18 20:36:42 +00:00
static let defaultAspectRatio: Double = 1.77777778
static var defaultMinimumHeightLeft: Double {
2021-08-22 19:13:33 +00:00
#if os(macOS)
300
#else
200
#endif
}
@State private var fullScreen = false
2021-07-18 22:32:46 +00:00
2021-08-22 19:13:33 +00:00
#if os(iOS)
@Environment(\.dismiss) private var dismiss
@Environment(\.horizontalSizeClass) private var horizontalSizeClass
2021-08-22 19:13:33 +00:00
@Environment(\.verticalSizeClass) private var verticalSizeClass
2021-11-01 21:56:18 +00:00
private var idiom: UIUserInterfaceIdiom {
UIDevice.current.userInterfaceIdiom
}
2021-08-22 19:13:33 +00:00
#endif
2021-08-16 22:46:18 +00:00
@EnvironmentObject<PlayerModel> private var player
2021-09-25 08:18:22 +00:00
var body: some View {
#if os(macOS)
HSplitView {
content
}
.frame(idealWidth: 1000, maxWidth: 1100, minHeight: 700)
#else
HStack(spacing: 0) {
content
}
#if os(iOS)
.navigationBarHidden(true)
#endif
#endif
2021-07-18 22:32:46 +00:00
}
var content: some View {
Group {
2021-10-28 17:14:55 +00:00
Group {
#if os(tvOS)
2021-10-28 17:14:55 +00:00
player.playerView
#else
GeometryReader { geometry in
VStack(spacing: 0) {
#if os(iOS)
if verticalSizeClass == .regular {
PlaybackBar()
}
#elseif os(macOS)
PlaybackBar()
#endif
2021-07-18 22:32:46 +00:00
if player.currentItem.isNil {
playerPlaceholder(geometry: geometry)
} else {
2021-11-02 23:02:02 +00:00
#if os(macOS)
Player()
.modifier(VideoPlayerSizeModifier(geometry: geometry))
#else
player.playerView
.modifier(VideoPlayerSizeModifier(geometry: geometry))
#endif
2021-08-22 19:13:33 +00:00
}
}
2021-08-22 19:13:33 +00:00
#if os(iOS)
.onSwipeGesture(
up: {
withAnimation {
fullScreen = true
2021-08-22 19:13:33 +00:00
}
},
down: { dismiss() }
)
#endif
.background(.black)
Group {
#if os(iOS)
if verticalSizeClass == .regular {
VideoDetails(sidebarQueue: sidebarQueueBinding, fullScreen: $fullScreen)
}
#else
VideoDetails(fullScreen: $fullScreen)
#endif
}
.background()
.modifier(VideoDetailsPaddingModifier(geometry: geometry, fullScreen: fullScreen))
2021-08-22 19:13:33 +00:00
}
#endif
}
#if os(macOS)
.frame(minWidth: 650)
#endif
#if os(iOS)
if sidebarQueue {
PlayerQueueView(fullScreen: $fullScreen)
.frame(maxWidth: 350)
2021-07-18 22:32:46 +00:00
}
#elseif os(macOS)
PlayerQueueView(fullScreen: $fullScreen)
.frame(minWidth: 250)
2021-07-18 22:32:46 +00:00
#endif
}
2021-11-02 23:02:02 +00:00
.onDisappear {
if !player.playingInPictureInPicture {
player.pause()
}
}
}
func playerPlaceholder(geometry: GeometryProxy) -> some View {
HStack {
Spacer()
VStack {
Spacer()
VStack(spacing: 10) {
#if !os(tvOS)
Image(systemName: "ticket")
.font(.system(size: 120))
#endif
}
Spacer()
}
.foregroundColor(.gray)
Spacer()
2021-07-18 22:32:46 +00:00
}
.contentShape(Rectangle())
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: geometry.size.width / VideoPlayerView.defaultAspectRatio)
2021-07-18 22:32:46 +00:00
}
2021-08-22 19:13:33 +00:00
#if os(iOS)
var sidebarQueue: Bool {
2021-11-01 21:56:18 +00:00
horizontalSizeClass == .regular && idiom == .pad
}
var sidebarQueueBinding: Binding<Bool> {
Binding(
get: { self.sidebarQueue },
set: { _ in }
)
}
#endif
2021-08-22 19:13:33 +00:00
}
struct VideoPlayerView_Previews: PreviewProvider {
static var previews: some View {
VideoPlayerView()
.injectFixtureEnvironmentObjects()
VideoPlayerView()
.injectFixtureEnvironmentObjects()
.previewInterfaceOrientation(.landscapeRight)
2021-08-22 19:13:33 +00:00
}
2021-07-18 22:32:46 +00:00
}