mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
46 lines
1.2 KiB
Swift
46 lines
1.2 KiB
Swift
import AVFoundation
|
|
import Defaults
|
|
import Foundation
|
|
|
|
struct PlayerQueueItem: Hashable, Identifiable, Defaults.Serializable {
|
|
static let bridge = PlayerQueueItemBridge()
|
|
|
|
var id = UUID()
|
|
var video: Video!
|
|
var videoID: Video.ID
|
|
var playbackTime: CMTime?
|
|
var videoDuration: TimeInterval?
|
|
|
|
static func from(_ watch: Watch, video: Video? = nil) -> Self {
|
|
.init(
|
|
video,
|
|
videoID: watch.videoID,
|
|
playbackTime: CMTime.secondsInDefaultTimescale(watch.stoppedAt),
|
|
videoDuration: watch.videoDuration
|
|
)
|
|
}
|
|
|
|
init(_ video: Video? = nil, videoID: Video.ID? = nil, playbackTime: CMTime? = nil, videoDuration: TimeInterval? = nil) {
|
|
self.video = video
|
|
self.videoID = videoID ?? video!.videoID
|
|
self.playbackTime = playbackTime
|
|
self.videoDuration = videoDuration
|
|
}
|
|
|
|
var duration: TimeInterval {
|
|
videoDuration ?? video?.length ?? .zero
|
|
}
|
|
|
|
var shouldRestartPlaying: Bool {
|
|
guard let seconds = playbackTime?.seconds else {
|
|
return false
|
|
}
|
|
|
|
return duration - seconds <= 10
|
|
}
|
|
|
|
func hash(into hasher: inout Hasher) {
|
|
hasher.combine(id)
|
|
}
|
|
}
|