2022-12-12 00:18:29 +00:00
|
|
|
import Defaults
|
2021-10-22 23:04:03 +00:00
|
|
|
import Siesta
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct ChannelPlaylistView: View {
|
2022-05-29 19:09:57 +00:00
|
|
|
var playlist: ChannelPlaylist?
|
2022-12-11 11:38:57 +00:00
|
|
|
var showCloseButton = false
|
2021-10-22 23:04:03 +00:00
|
|
|
|
2021-10-26 22:59:59 +00:00
|
|
|
@State private var presentingShareSheet = false
|
2021-11-13 15:45:47 +00:00
|
|
|
@State private var shareURL: URL?
|
2021-10-26 22:59:59 +00:00
|
|
|
|
2021-10-22 23:04:03 +00:00
|
|
|
@StateObject private var store = Store<ChannelPlaylist>()
|
|
|
|
|
2021-12-05 17:09:25 +00:00
|
|
|
@Environment(\.colorScheme) private var colorScheme
|
2022-05-29 19:09:57 +00:00
|
|
|
@Environment(\.navigationStyle) private var navigationStyle
|
2022-12-12 00:18:29 +00:00
|
|
|
@Default(.channelPlaylistListingStyle) private var channelPlaylistListingStyle
|
2021-10-22 23:04:03 +00:00
|
|
|
|
2022-11-24 20:36:05 +00:00
|
|
|
@ObservedObject private var accounts = AccountsModel.shared
|
|
|
|
var player = PlayerModel.shared
|
|
|
|
@ObservedObject private var recents = RecentsModel.shared
|
2021-10-22 23:04:03 +00:00
|
|
|
|
2022-05-29 19:09:57 +00:00
|
|
|
private var items: [ContentItem] {
|
2021-10-22 23:04:03 +00:00
|
|
|
ContentItem.array(of: store.item?.videos ?? [])
|
|
|
|
}
|
|
|
|
|
2022-05-29 19:09:57 +00:00
|
|
|
private var presentedPlaylist: ChannelPlaylist? {
|
2022-05-29 20:12:59 +00:00
|
|
|
playlist ?? recents.presentedPlaylist
|
2022-05-29 19:09:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private var resource: Resource? {
|
|
|
|
guard let playlist = presentedPlaylist else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let resource = accounts.api.channelPlaylist(playlist.id)
|
|
|
|
resource?.addObserver(store)
|
|
|
|
|
|
|
|
return resource
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
VStack(alignment: .leading) {
|
|
|
|
#if os(tvOS)
|
2021-11-01 21:56:18 +00:00
|
|
|
HStack {
|
2022-05-29 20:30:00 +00:00
|
|
|
if let playlist = presentedPlaylist {
|
2022-12-13 10:40:08 +00:00
|
|
|
ThumbnailView(url: store.item?.thumbnailURL ?? playlist.thumbnailURL)
|
|
|
|
.frame(width: 140, height: 80)
|
|
|
|
.clipShape(RoundedRectangle(cornerRadius: 2))
|
|
|
|
|
2022-05-29 20:30:00 +00:00
|
|
|
Text(playlist.title)
|
2022-12-13 10:40:08 +00:00
|
|
|
.font(.headline)
|
2022-05-29 20:30:00 +00:00
|
|
|
.frame(alignment: .leading)
|
2022-12-13 10:40:08 +00:00
|
|
|
.lineLimit(1)
|
2021-11-01 21:56:18 +00:00
|
|
|
|
2022-05-29 20:30:00 +00:00
|
|
|
Spacer()
|
2021-11-01 21:56:18 +00:00
|
|
|
|
2022-12-11 16:06:02 +00:00
|
|
|
FavoriteButton(item: FavoriteItem(section: .channelPlaylist(accounts.app.appType.rawValue, playlist.id, playlist.title)))
|
2022-05-29 20:30:00 +00:00
|
|
|
.labelStyle(.iconOnly)
|
|
|
|
}
|
2022-01-02 18:59:57 +00:00
|
|
|
|
|
|
|
playButton
|
|
|
|
.labelStyle(.iconOnly)
|
2021-11-01 21:56:18 +00:00
|
|
|
}
|
2021-10-22 23:04:03 +00:00
|
|
|
#endif
|
|
|
|
VerticalCells(items: items)
|
2021-12-19 22:27:20 +00:00
|
|
|
.environment(\.inChannelPlaylistView, true)
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
2022-12-12 00:18:29 +00:00
|
|
|
.environment(\.listingStyle, channelPlaylistListingStyle)
|
2021-10-22 23:04:03 +00:00
|
|
|
.onAppear {
|
2022-08-08 17:30:40 +00:00
|
|
|
if navigationStyle == .tab {
|
2022-08-29 15:56:58 +00:00
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
|
2022-08-08 17:30:40 +00:00
|
|
|
resource?.loadIfNeeded()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
resource?.loadIfNeeded()
|
|
|
|
}
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
2022-01-02 18:59:57 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
.background(Color.background(scheme: colorScheme))
|
2022-12-12 00:18:29 +00:00
|
|
|
#endif
|
|
|
|
#if os(iOS)
|
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .principal) {
|
|
|
|
playlistMenu
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if os(macOS)
|
2021-11-08 16:29:35 +00:00
|
|
|
.toolbar {
|
2022-12-03 23:50:44 +00:00
|
|
|
ToolbarItem(placement: .cancellationAction) {
|
2022-12-11 11:38:57 +00:00
|
|
|
if showCloseButton {
|
2022-12-03 23:50:44 +00:00
|
|
|
Button {
|
|
|
|
NavigationModel.shared.presentingPlaylist = false
|
|
|
|
} label: {
|
|
|
|
Label("Close", systemImage: "xmark")
|
2022-05-29 19:09:57 +00:00
|
|
|
}
|
2022-12-03 23:50:44 +00:00
|
|
|
.buttonStyle(.plain)
|
2022-05-29 19:09:57 +00:00
|
|
|
}
|
2021-11-08 16:29:35 +00:00
|
|
|
}
|
2021-10-26 22:59:59 +00:00
|
|
|
|
2022-01-02 18:59:57 +00:00
|
|
|
ToolbarItem(placement: playlistButtonsPlacement) {
|
|
|
|
HStack {
|
2022-12-12 00:18:29 +00:00
|
|
|
ListingStyleButtons(listingStyle: $channelPlaylistListingStyle)
|
2022-06-26 11:57:02 +00:00
|
|
|
ShareButton(contentItem: contentItem)
|
2022-05-29 19:09:57 +00:00
|
|
|
|
2022-12-12 00:18:29 +00:00
|
|
|
favoriteButton
|
2022-01-02 18:59:57 +00:00
|
|
|
|
|
|
|
playButton
|
|
|
|
}
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
2021-11-08 16:29:35 +00:00
|
|
|
}
|
2022-12-12 00:18:29 +00:00
|
|
|
.navigationTitle(label)
|
2022-01-02 18:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-12-12 00:18:29 +00:00
|
|
|
@ViewBuilder private var favoriteButton: some View {
|
|
|
|
if let playlist = presentedPlaylist {
|
|
|
|
FavoriteButton(item: FavoriteItem(section: .channelPlaylist(accounts.app.appType.rawValue, playlist.id, playlist.title)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if os(iOS)
|
|
|
|
private var playlistMenu: some View {
|
|
|
|
Menu {
|
|
|
|
favoriteButton
|
|
|
|
|
|
|
|
ListingStyleButtons(listingStyle: $channelPlaylistListingStyle)
|
|
|
|
|
|
|
|
Section {
|
|
|
|
SettingsButtons()
|
|
|
|
}
|
|
|
|
} label: {
|
|
|
|
HStack(spacing: 12) {
|
|
|
|
ThumbnailView(url: store.item?.thumbnailURL ?? playlist?.thumbnailURL)
|
|
|
|
.frame(width: 60, height: 30)
|
|
|
|
.clipShape(RoundedRectangle(cornerRadius: 2))
|
2022-12-13 10:40:08 +00:00
|
|
|
|
2022-12-12 00:18:29 +00:00
|
|
|
Text(label)
|
|
|
|
.font(.headline)
|
|
|
|
.foregroundColor(.primary)
|
|
|
|
|
|
|
|
Image(systemName: "chevron.down.circle.fill")
|
|
|
|
.foregroundColor(.accentColor)
|
|
|
|
.imageScale(.small)
|
|
|
|
}
|
|
|
|
.frame(maxWidth: 320)
|
|
|
|
.transaction { t in t.animation = nil }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
private var label: String {
|
|
|
|
presentedPlaylist?.title ?? ""
|
|
|
|
}
|
|
|
|
|
2022-01-02 18:59:57 +00:00
|
|
|
private var playlistButtonsPlacement: ToolbarItemPlacement {
|
|
|
|
#if os(iOS)
|
|
|
|
.navigationBarTrailing
|
2021-10-22 23:04:03 +00:00
|
|
|
#else
|
2022-01-02 18:59:57 +00:00
|
|
|
.automatic
|
2021-10-22 23:04:03 +00:00
|
|
|
#endif
|
|
|
|
}
|
2021-10-26 22:59:59 +00:00
|
|
|
|
2022-01-02 18:59:57 +00:00
|
|
|
private var playButton: some View {
|
|
|
|
Button {
|
2022-05-28 21:41:23 +00:00
|
|
|
player.play(videos)
|
2022-01-02 18:59:57 +00:00
|
|
|
} label: {
|
|
|
|
Label("Play All", systemImage: "play")
|
|
|
|
}
|
2022-09-04 15:23:02 +00:00
|
|
|
.contextMenu {
|
|
|
|
Button {
|
|
|
|
player.play(videos, shuffling: true)
|
|
|
|
} label: {
|
|
|
|
Label("Shuffle All", systemImage: "shuffle")
|
|
|
|
}
|
|
|
|
}
|
2022-01-02 18:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private var videos: [Video] {
|
|
|
|
items.compactMap(\.video)
|
|
|
|
}
|
|
|
|
|
2021-10-26 22:59:59 +00:00
|
|
|
private var contentItem: ContentItem {
|
|
|
|
ContentItem(playlist: playlist)
|
|
|
|
}
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ChannelPlaylistView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2022-12-12 00:18:29 +00:00
|
|
|
NavigationView {
|
|
|
|
ChannelPlaylistView(playlist: ChannelPlaylist.fixture)
|
|
|
|
}
|
2021-10-22 23:04:03 +00:00
|
|
|
}
|
|
|
|
}
|