yattee/tvOS/NowPlayingView.swift

151 lines
5.7 KiB
Swift
Raw Normal View History

2021-11-05 19:57:22 +00:00
import Defaults
import SwiftUI
struct NowPlayingView: View {
2021-11-02 23:02:02 +00:00
enum ViewSection: CaseIterable {
2021-12-04 19:35:41 +00:00
case nowPlaying, playingNext, playedPreviously, related, comments
2021-11-02 23:02:02 +00:00
}
2021-12-04 19:35:41 +00:00
var sections = [ViewSection.nowPlaying, .playingNext, .playedPreviously, .related]
2021-10-22 15:00:09 +00:00
var inInfoViewController = false
2021-12-04 19:35:41 +00:00
@State private var repliesID: Comment.ID?
@EnvironmentObject<CommentsModel> private var comments
@EnvironmentObject<PlayerModel> private var player
2021-12-04 19:35:41 +00:00
@EnvironmentObject<RecentsModel> private var recents
2021-11-05 19:57:22 +00:00
@Default(.saveHistory) private var saveHistory
var body: some View {
2021-10-22 15:00:09 +00:00
if inInfoViewController {
content
.background(.thinMaterial)
.mask(RoundedRectangle(cornerRadius: 24))
} else {
content
}
}
var content: some View {
List {
Group {
2021-11-02 23:02:02 +00:00
if sections.contains(.nowPlaying), let item = player.currentItem {
Section(header: Text("Now Playing")) {
Button {
player.presentPlayer()
} label: {
VideoBanner(video: item.video)
}
2021-12-02 20:19:10 +00:00
.contextMenu {
Button("Close Video") {
player.closeCurrentItem()
}
Button("Cancel", role: .cancel) {}
}
}
.onPlayPauseCommand(perform: player.togglePlay)
}
2021-11-02 23:02:02 +00:00
if sections.contains(.playingNext) {
Section(header: Text("Playing Next")) {
if player.queue.isEmpty {
Text("Playback queue is empty")
.padding([.vertical, .leading], 40)
.foregroundColor(.secondary)
}
2021-11-02 23:02:02 +00:00
ForEach(player.queue) { item in
Button {
player.advanceToItem(item)
player.presentPlayer()
} label: {
VideoBanner(video: item.video)
}
.contextMenu {
Button("Delete", role: .destructive) {
player.remove(item)
}
}
}
2021-11-02 23:02:02 +00:00
}
}
if sections.contains(.related), !player.currentVideo.isNil, !player.currentVideo!.related.isEmpty {
Section(header: inInfoViewController ? AnyView(EmptyView()) : AnyView(Text("Related"))) {
ForEach(player.currentVideo!.related) { video in
Button {
player.playNow(video)
player.presentPlayer()
} label: {
VideoBanner(video: video)
}
.contextMenu {
Button("Play Next") {
player.playNext(video)
}
Button("Play Last") {
player.enqueueVideo(video)
}
Button("Cancel", role: .cancel) {}
}
}
}
}
2021-10-13 22:05:19 +00:00
2021-11-05 19:57:22 +00:00
if sections.contains(.playedPreviously), saveHistory, !player.history.isEmpty {
Section(header: Text("Played Previously")) {
ForEach(player.history) { item in
Button {
player.playHistory(item)
player.presentPlayer()
} label: {
VideoBanner(video: item.video, playbackTime: item.playbackTime, videoDuration: item.videoDuration)
}
.contextMenu {
2021-11-05 18:23:28 +00:00
Button("Remove", role: .destructive) {
player.removeHistory(item)
}
2021-11-05 18:23:28 +00:00
Button("Remove All", role: .destructive) {
player.removeHistoryItems()
}
}
2021-10-13 22:05:19 +00:00
}
}
}
2021-12-04 19:35:41 +00:00
if sections.contains(.comments) {
Section {
ForEach(comments.all) { comment in
CommentView(comment: comment, repliesID: $repliesID)
}
}
}
}
.listRowInsets(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 20))
.padding(.vertical, 20)
}
.padding(.horizontal, inInfoViewController ? 40 : 0)
.listStyle(.grouped)
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 560, maxHeight: .infinity, alignment: .leading)
}
func header(_ text: String) -> some View {
Text(text)
2021-10-22 15:00:09 +00:00
.font((inInfoViewController ? Font.system(size: 40) : .title3).bold())
.foregroundColor(.secondary)
}
}
struct NowPlayingView_Previews: PreviewProvider {
static var previews: some View {
NowPlayingView()
.injectFixtureEnvironmentObjects()
2021-10-22 15:00:09 +00:00
NowPlayingView(inInfoViewController: true)
.injectFixtureEnvironmentObjects()
}
}