yattee/Shared/Player/PlayerQueueRow.swift

84 lines
2.2 KiB
Swift
Raw Normal View History

import CoreMedia
import Defaults
import Foundation
import SwiftUI
struct PlayerQueueRow: View {
let item: PlayerQueueItem
var history = false
2022-07-11 17:44:49 +00:00
var autoplay = false
2022-06-25 16:33:35 +00:00
@Binding var fullScreen: Bool
@EnvironmentObject<PlayerModel> private var player
@Default(.closePiPOnNavigation) var closePiPOnNavigation
@FetchRequest private var watchRequest: FetchedResults<Watch>
2022-07-11 17:44:49 +00:00
init(item: PlayerQueueItem, history: Bool = false, autoplay: Bool = false, fullScreen: Binding<Bool> = .constant(false)) {
self.item = item
self.history = history
2022-07-11 17:44:49 +00:00
self.autoplay = autoplay
2022-06-25 16:33:35 +00:00
_fullScreen = fullScreen
_watchRequest = FetchRequest<Watch>(
entity: Watch.entity(),
sortDescriptors: [],
predicate: NSPredicate(format: "videoID = %@", item.videoID)
)
}
var body: some View {
2022-07-10 17:51:46 +00:00
Button {
player.prepareCurrentItemForHistory()
2022-07-10 17:51:46 +00:00
player.avPlayerBackend.startPictureInPictureOnPlay = player.playingInPictureInPicture
2022-05-21 20:58:11 +00:00
2022-07-10 17:51:46 +00:00
player.videoBeingOpened = item.video
2022-11-10 17:11:28 +00:00
player.show()
2022-07-10 17:51:46 +00:00
if history {
player.playHistory(item, at: watchStoppedAt)
} else {
player.advanceToItem(item, at: watchStoppedAt)
}
2022-07-10 17:51:46 +00:00
if fullScreen {
withAnimation {
fullScreen = false
}
2022-07-10 17:51:46 +00:00
}
2022-07-10 17:51:46 +00:00
if closePiPOnNavigation, player.playingInPictureInPicture {
player.closePiP()
}
2022-07-11 17:44:49 +00:00
if autoplay {
player.resetAutoplay()
}
2022-07-10 17:51:46 +00:00
} label: {
VideoBanner(video: item.video, playbackTime: watchStoppedAt, videoDuration: watch?.videoDuration)
}
2022-07-10 17:51:46 +00:00
.buttonStyle(.plain)
}
private var watch: Watch? {
watchRequest.first
}
private var watchStoppedAt: CMTime? {
guard let seconds = watch?.stoppedAt else {
return nil
}
return .secondsInDefaultTimescale(seconds)
}
}
2022-11-10 17:11:28 +00:00
struct PlayerQueueRow_Previews: PreviewProvider {
static var previews: some View {
PlayerQueueRow(item: .init(
.local(URL(string: "https://apple.com")!)
))
}
}