2022-07-10 23:21:46 +05:30
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VideoDetailsOverlay: View {
|
2022-11-25 02:06:05 +05:30
|
|
|
@ObservedObject private var controls = PlayerControlsModel.shared
|
2022-07-10 23:21:46 +05:30
|
|
|
|
2022-12-18 04:38:30 +05:30
|
|
|
@State private var detailsPage = VideoDetails.DetailsPage.info
|
2022-11-19 02:52:57 +05:30
|
|
|
|
2022-07-10 23:21:46 +05:30
|
|
|
var body: some View {
|
2022-12-18 04:38:30 +05:30
|
|
|
VideoDetails(video: PlayerModel.shared.currentVideo, page: $detailsPage, sidebarQueue: .constant(false), fullScreen: fullScreenBinding)
|
2022-08-20 03:25:02 +05:30
|
|
|
.clipShape(RoundedRectangle(cornerRadius: 4))
|
2022-07-10 23:21:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var fullScreenBinding: Binding<Bool> {
|
|
|
|
.init(get: {
|
|
|
|
controls.presentingDetailsOverlay
|
|
|
|
}, set: { newValue in
|
|
|
|
controls.presentingDetailsOverlay = newValue
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct VideoDetailsOverlay_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
VideoDetailsOverlay()
|
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
}
|
|
|
|
}
|