yattee/Shared/Player/Video Details/PlayerQueueView.swift

130 lines
3.8 KiB
Swift
Raw Normal View History

2021-11-05 19:57:22 +00:00
import Defaults
import Foundation
import SwiftUI
struct PlayerQueueView: View {
var sidebarQueue: Bool
@FetchRequest(sortDescriptors: [.init(key: "watchedAt", ascending: false)])
var watches: FetchedResults<Watch>
@ObservedObject private var player = PlayerModel.shared
2021-11-05 19:57:22 +00:00
@Default(.saveHistory) private var saveHistory
var body: some View {
Group {
Group {
2022-07-11 17:44:49 +00:00
if player.playbackMode == .related {
autoplaying
}
playingNext
2022-09-01 23:05:41 +00:00
if sidebarQueue {
2021-11-03 23:00:17 +00:00
related
}
}
2022-07-10 17:51:46 +00:00
.listRowBackground(Color.clear)
2021-11-02 23:02:02 +00:00
#if !os(iOS)
2022-07-10 17:51:46 +00:00
.padding(.vertical, 5)
.listRowInsets(EdgeInsets())
#endif
2022-11-13 20:52:29 +00:00
Color.clear.padding(.bottom, 50)
.listRowBackground(Color.clear)
2023-07-01 16:38:11 +00:00
#if os(iOS)
.listRowSeparator(.hidden)
#endif
}
2022-12-13 00:50:26 +00:00
.environment(\.inNavigationView, false)
}
2022-07-11 17:44:49 +00:00
@ViewBuilder var autoplaying: some View {
Section(header: autoplayingHeader) {
if let item = player.autoplayItem {
PlayerQueueRow(item: item, autoplay: true)
} else {
Group {
if player.currentItem.isNil {
Text("Not Playing")
} else {
Text("Finding something to play...")
}
}
.foregroundColor(.secondary)
}
}
}
var autoplayingHeader: some View {
HStack {
Text("Autoplaying Next")
.foregroundColor(.secondary)
.font(.caption)
2022-07-11 17:44:49 +00:00
Spacer()
Button {
player.setRelatedAutoplayItem()
} label: {
Label("Find Other", systemImage: "arrow.triangle.2.circlepath.circle")
.labelStyle(.iconOnly)
}
.disabled(player.currentItem.isNil)
.buttonStyle(.plain)
}
}
var playingNext: some View {
Section(header: queueHeader) {
if player.queue.isEmpty {
2022-07-11 17:44:49 +00:00
Text("Queue is empty")
.foregroundColor(.secondary)
}
ForEach(player.queue) { item in
2022-12-13 19:15:22 +00:00
PlayerQueueRow(item: item)
.contextMenu {
2022-08-14 17:01:22 +00:00
if let video = item.video {
VideoContextMenuView(video: video)
2022-12-19 09:48:30 +00:00
.environment(\.inQueueListing, true)
2022-08-14 17:01:22 +00:00
}
}
}
}
}
var queueHeader: some View {
Text("Queue".localized())
#if !os(macOS)
.foregroundColor(.secondary)
.font(.caption)
.frame(maxWidth: .infinity, alignment: .leading)
#endif
}
private var visibleWatches: [Watch] {
watches.filter { $0.videoID != player.currentVideo?.videoID }
}
2022-08-25 17:09:55 +00:00
@ViewBuilder private var related: some View {
if let related = player.currentVideo?.related, !related.isEmpty {
Section(header: Text("Related")) {
ForEach(related) { video in
2022-12-13 19:15:22 +00:00
PlayerQueueRow(item: PlayerQueueItem(video))
2022-08-25 17:09:55 +00:00
.contextMenu {
VideoContextMenuView(video: video)
}
.id(video.videoID)
2021-11-02 23:02:02 +00:00
}
}
2022-08-25 17:09:55 +00:00
.transaction { t in t.disablesAnimations = true }
2021-11-02 23:02:02 +00:00
}
}
}
struct PlayerQueueView_Previews: PreviewProvider {
static var previews: some View {
VStack {
2022-12-18 23:09:54 +00:00
PlayerQueueView(sidebarQueue: true)
}
.injectFixtureEnvironmentObjects()
}
}