mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
53 lines
1.5 KiB
Swift
53 lines
1.5 KiB
Swift
import SwiftUI
|
|
|
|
struct HistoryView: View {
|
|
var limit = 10
|
|
|
|
@FetchRequest(sortDescriptors: [.init(key: "watchedAt", ascending: false)])
|
|
var watches: FetchedResults<Watch>
|
|
|
|
@ObservedObject private var player = PlayerModel.shared
|
|
|
|
var body: some View {
|
|
LazyVStack {
|
|
if visibleWatches.isEmpty {
|
|
VStack(spacing: 20) {
|
|
HStack {
|
|
Image(systemName: "clock")
|
|
Text("Playback history is empty")
|
|
}.foregroundColor(.secondary)
|
|
}
|
|
} else {
|
|
ForEach(visibleWatches, id: \.videoID) { watch in
|
|
let video = player.historyVideo(watch.videoID) ?? watch.video
|
|
|
|
ContentItemView(item: .init(video: video))
|
|
.environment(\.listingStyle, .list)
|
|
.contextMenu {
|
|
VideoContextMenuView(video: video)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.onAppear {
|
|
visibleWatches
|
|
.forEach(player.loadHistoryVideoDetails)
|
|
}
|
|
#if os(tvOS)
|
|
.padding(.horizontal, 40)
|
|
#else
|
|
.padding(.horizontal, 15)
|
|
#endif
|
|
}
|
|
|
|
private var visibleWatches: [Watch] {
|
|
Array(watches.filter { $0.videoID != player.currentVideo?.videoID }.prefix(limit))
|
|
}
|
|
}
|
|
|
|
struct HistoryView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
HistoryView()
|
|
}
|
|
}
|