2021-08-22 19:13:33 +00:00
|
|
|
import Foundation
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VideoPlayerSizeModifier: ViewModifier {
|
2021-10-05 20:20:09 +00:00
|
|
|
let geometry: GeometryProxy!
|
2021-09-18 20:36:42 +00:00
|
|
|
let aspectRatio: Double?
|
|
|
|
let minimumHeightLeft: Double
|
2021-08-22 19:13:33 +00:00
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
@Environment(\.verticalSizeClass) private var verticalSizeClass
|
|
|
|
#endif
|
|
|
|
|
|
|
|
init(
|
2021-10-05 20:20:09 +00:00
|
|
|
geometry: GeometryProxy? = nil,
|
2021-09-18 20:36:42 +00:00
|
|
|
aspectRatio: Double? = nil,
|
|
|
|
minimumHeightLeft: Double? = nil
|
2021-08-22 19:13:33 +00:00
|
|
|
) {
|
|
|
|
self.geometry = geometry
|
|
|
|
self.aspectRatio = aspectRatio ?? VideoPlayerView.defaultAspectRatio
|
|
|
|
self.minimumHeightLeft = minimumHeightLeft ?? VideoPlayerView.defaultMinimumHeightLeft
|
|
|
|
}
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
2021-10-05 20:20:09 +00:00
|
|
|
// TODO: verify if optional GeometryProxy is still used
|
|
|
|
if geometry != nil {
|
|
|
|
content
|
|
|
|
.frame(maxHeight: maxHeight)
|
|
|
|
.aspectRatio(usedAspectRatio, contentMode: usedAspectRatioContentMode)
|
|
|
|
.edgesIgnoringSafeArea(edgesIgnoringSafeArea)
|
|
|
|
} else {
|
|
|
|
content.edgesIgnoringSafeArea(edgesIgnoringSafeArea)
|
|
|
|
}
|
2021-08-22 19:13:33 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 20:36:42 +00:00
|
|
|
var usedAspectRatio: Double {
|
2021-08-22 19:13:33 +00:00
|
|
|
guard aspectRatio != nil else {
|
|
|
|
return VideoPlayerView.defaultAspectRatio
|
|
|
|
}
|
|
|
|
|
|
|
|
let ratio = [aspectRatio!, VideoPlayerView.defaultAspectRatio].min()!
|
|
|
|
let viewRatio = geometry.size.width / geometry.size.height
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
return verticalSizeClass == .regular ? ratio : viewRatio
|
|
|
|
#else
|
|
|
|
return ratio
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
var usedAspectRatioContentMode: ContentMode {
|
|
|
|
#if os(iOS)
|
|
|
|
verticalSizeClass == .regular ? .fit : .fill
|
|
|
|
#else
|
|
|
|
.fit
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-09-18 20:36:42 +00:00
|
|
|
var maxHeight: Double {
|
2021-08-22 19:13:33 +00:00
|
|
|
#if os(iOS)
|
2021-10-16 22:48:58 +00:00
|
|
|
let height = verticalSizeClass == .regular ? geometry.size.height - minimumHeightLeft : .infinity
|
2021-08-22 19:13:33 +00:00
|
|
|
#else
|
2021-10-16 22:48:58 +00:00
|
|
|
let height = geometry.size.height - minimumHeightLeft
|
2021-08-22 19:13:33 +00:00
|
|
|
#endif
|
2021-10-16 22:48:58 +00:00
|
|
|
|
|
|
|
return [height, 0].max()!
|
2021-08-22 19:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var edgesIgnoringSafeArea: Edge.Set {
|
|
|
|
let empty = Edge.Set()
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
return verticalSizeClass == .compact ? .all : empty
|
|
|
|
#else
|
|
|
|
return empty
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|