2022-07-10 17:51:46 +00:00
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VideoDetailsOverlay: View {
|
2022-11-24 20:36:05 +00:00
|
|
|
@ObservedObject private var controls = PlayerControlsModel.shared
|
2022-07-10 17:51:46 +00:00
|
|
|
|
2022-11-18 21:22:57 +00:00
|
|
|
@State private var detailsPage = VideoDetails.DetailsPage.queue
|
|
|
|
|
2022-07-10 17:51:46 +00:00
|
|
|
var body: some View {
|
2022-11-18 21:22:57 +00:00
|
|
|
VideoDetails(page: $detailsPage, sidebarQueue: .constant(false), fullScreen: fullScreenBinding)
|
2022-08-19 21:55:02 +00:00
|
|
|
.clipShape(RoundedRectangle(cornerRadius: 4))
|
2022-07-10 17:51:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|