1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 22:30:32 +05:30
yattee/Shared/Player/Video Details/PlayerQueueView.swift

148 lines
4.2 KiB
Swift
Raw Normal View History

2021-11-06 01:27:22 +05:30
import Defaults
import Foundation
import SwiftUI
struct PlayerQueueView: View {
var sidebarQueue: Bool
2022-06-25 22:03:35 +05:30
@Binding var fullScreen: Bool
@FetchRequest(sortDescriptors: [.init(key: "watchedAt", ascending: false)])
var watches: FetchedResults<Watch>
@ObservedObject private var player = PlayerModel.shared
2021-11-06 01:27:22 +05:30
@Default(.saveHistory) private var saveHistory
var body: some View {
List {
Group {
2022-07-11 23:14:49 +05:30
if player.playbackMode == .related {
autoplaying
}
playingNext
2022-09-02 04:35:41 +05:30
if sidebarQueue {
2021-11-04 04:30:17 +05:30
related
}
}
2022-07-10 23:21:46 +05:30
.listRowBackground(Color.clear)
2021-11-03 04:32:02 +05:30
#if !os(iOS)
2022-07-10 23:21:46 +05:30
.padding(.vertical, 5)
.listRowInsets(EdgeInsets())
#endif
2022-11-14 02:22:29 +05:30
Color.clear.padding(.bottom, 50)
.listRowBackground(Color.clear)
2022-11-19 02:57:13 +05:30
.backport
.listRowSeparator(false)
}
#if os(macOS)
2021-11-08 21:59:35 +05:30
.listStyle(.inset)
#elseif os(iOS)
2021-11-08 21:59:35 +05:30
.listStyle(.grouped)
2022-07-10 23:21:46 +05:30
.backport
.scrollContentBackground(false)
#else
2021-11-08 21:59:35 +05:30
.listStyle(.plain)
#endif
}
2022-07-11 23:14:49 +05:30
@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")
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 {
2022-07-11 23:14:49 +05:30
Section(header: Text("Queue")) {
if player.queue.isEmpty {
2022-07-11 23:14:49 +05:30
Text("Queue is empty")
.foregroundColor(.secondary)
}
ForEach(player.queue) { item in
2022-06-25 22:03:35 +05:30
PlayerQueueRow(item: item, fullScreen: $fullScreen)
.onAppear {
player.loadQueueVideoDetails(item)
}
.contextMenu {
removeButton(item)
removeAllButton()
2022-08-14 22:31:22 +05:30
if let video = item.video {
VideoContextMenuView(video: video)
}
}
}
}
}
private var visibleWatches: [Watch] {
watches.filter { $0.videoID != player.currentVideo?.videoID }
}
2022-08-25 22:39:55 +05:30
@ViewBuilder private var related: some View {
if let related = player.currentVideo?.related, !related.isEmpty {
Section(header: Text("Related")) {
ForEach(related) { video in
PlayerQueueRow(item: PlayerQueueItem(video), fullScreen: $fullScreen)
.contextMenu {
VideoContextMenuView(video: video)
}
.id(video.videoID)
2021-11-03 04:32:02 +05:30
}
}
2022-08-25 22:39:55 +05:30
.transaction { t in t.disablesAnimations = true }
2021-11-03 04:32:02 +05:30
}
}
private func removeButton(_ item: PlayerQueueItem) -> some View {
Button {
player.remove(item)
} label: {
2022-08-14 22:31:22 +05:30
Label("Remove from the queue", systemImage: "trash")
}
}
private func removeAllButton() -> some View {
Button {
player.removeQueueItems()
} label: {
2022-08-14 22:31:22 +05:30
Label("Clear the queue", systemImage: "trash.fill")
}
2021-11-28 20:07:55 +05:30
}
}
struct PlayerQueueView_Previews: PreviewProvider {
static var previews: some View {
VStack {
2022-06-25 22:03:35 +05:30
PlayerQueueView(sidebarQueue: true, fullScreen: .constant(true))
}
.injectFixtureEnvironmentObjects()
}
}