yattee/Shared/Player/VideoPlayerSizeModifier.swift

65 lines
1.8 KiB
Swift
Raw Normal View History

2021-08-22 19:13:33 +00:00
import Foundation
import SwiftUI
struct VideoPlayerSizeModifier: ViewModifier {
let geometry: GeometryProxy
2021-09-18 20:36:42 +00:00
let aspectRatio: Double?
let minimumHeightLeft: Double
2022-02-16 20:23:11 +00:00
let fullScreen: Bool
2021-08-22 19:13:33 +00:00
#if os(iOS)
@Environment(\.verticalSizeClass) private var verticalSizeClass
#endif
init(
geometry: GeometryProxy,
2021-09-18 20:36:42 +00:00
aspectRatio: Double? = nil,
2022-02-16 20:23:11 +00:00
minimumHeightLeft: Double? = nil,
fullScreen: Bool = false
2021-08-22 19:13:33 +00:00
) {
self.geometry = geometry
self.aspectRatio = aspectRatio ?? VideoPlayerView.defaultAspectRatio
self.minimumHeightLeft = minimumHeightLeft ?? VideoPlayerView.defaultMinimumHeightLeft
2022-02-16 20:23:11 +00:00
self.fullScreen = fullScreen
2021-08-22 19:13:33 +00:00
}
func body(content: Content) -> some View {
content
2022-02-16 20:23:11 +00:00
.frame(maxHeight: fullScreen ? .infinity : maxHeight)
.aspectRatio(usedAspectRatio, contentMode: .fit)
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)
2022-02-16 20:23:11 +00:00
!fullScreen ? .fit : .fill
2021-08-22 19:13:33 +00:00
#else
2021-11-08 16:29:35 +00:00
.fit
2021-08-22 19:13:33 +00:00
#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
}
}