yattee/Shared/Home/QueueView.swift

86 lines
2.4 KiB
Swift
Raw Normal View History

2022-12-18 23:10:05 +00:00
import SwiftUI
struct QueueView: View {
@State private var expanded = false
@ObservedObject private var player = PlayerModel.shared
var body: some View {
LazyVStack {
if !items.isEmpty {
2022-12-19 00:37:09 +00:00
Button {
withAnimation {
expanded.toggle()
}
} label: {
HStack(spacing: 12) {
2022-12-19 00:37:09 +00:00
sectionLabel(label)
Spacer()
ClearQueueButton()
if items.count > 1 {
Label("Show more", systemImage: expanded ? "chevron.up" : "chevron.down")
.animation(nil, value: expanded)
.foregroundColor(.accentColor)
.imageScale(.large)
.labelStyle(.iconOnly)
}
2022-12-18 23:10:05 +00:00
}
}
2022-12-20 23:31:00 +00:00
.buttonStyle(.plain)
2022-12-19 00:37:09 +00:00
LazyVStack(alignment: .leading) {
ForEach(limitedItems) { item in
ContentItemView(item: .init(video: item.video))
.environment(\.listingStyle, .list)
.environment(\.inQueueListing, true)
.environment(\.noListingDividers, limit == 1)
.transition(.opacity)
}
2022-12-18 23:10:05 +00:00
}
}
}
2022-12-19 00:37:09 +00:00
.padding(.vertical, items.isEmpty ? 0 : 15)
}
var label: String {
if items.count < 2 {
2023-05-21 17:10:28 +00:00
return "Next in Queue".localized()
2022-12-19 00:37:09 +00:00
}
2023-05-21 17:10:28 +00:00
return "Next in Queue".localized() + " (\(items.count))"
2022-12-18 23:10:05 +00:00
}
var limitedItems: [ContentItem] {
2022-12-18 23:10:05 +00:00
if let limit {
return Array(items.prefix(limit).map(\.contentItem))
2022-12-18 23:10:05 +00:00
}
return items.map(\.contentItem)
2022-12-18 23:10:05 +00:00
}
var items: [PlayerQueueItem] {
player.queue
}
var limit: Int? {
if !expanded {
return 1
}
return nil
}
func sectionLabel(_ label: String) -> some View {
Text(label.localized())
.font(.title3.bold())
.frame(maxWidth: .infinity, alignment: .leading)
.foregroundColor(.secondary)
}
}
struct QueueView_Previews: PreviewProvider {
static var previews: some View {
QueueView()
}
}