yattee/Shared/Playlists/PlaylistsView.swift

257 lines
7.7 KiB
Swift
Raw Normal View History

2021-07-08 17:18:36 +00:00
import Defaults
2021-06-28 10:43:07 +00:00
import Siesta
2021-06-26 09:39:35 +00:00
import SwiftUI
struct PlaylistsView: View {
2021-10-24 21:36:24 +00:00
@State private var selectedPlaylistID: Playlist.ID = ""
2021-07-08 15:14:54 +00:00
@State private var showingNewPlaylist = false
@State private var createdPlaylist: Playlist?
2021-07-08 17:18:36 +00:00
@State private var showingEditPlaylist = false
@State private var editedPlaylist: Playlist?
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<PlayerModel> private var player
@EnvironmentObject<PlaylistsModel> private var model
2021-09-29 12:36:52 +00:00
@Namespace private var focusNamespace
var items: [ContentItem] {
2021-10-24 21:36:24 +00:00
ContentItem.array(of: currentPlaylist?.videos ?? [])
}
var body: some View {
PlayerControlsView {
SignInRequiredView(title: "Playlists") {
VStack {
#if os(tvOS)
toolbar
#endif
2021-10-24 21:36:24 +00:00
if currentPlaylist != nil, items.isEmpty {
hintText("Playlist is empty\n\nTap and hold on a video and then tap \"Add to Playlist\"")
} else if model.all.isEmpty {
hintText("You have no playlists\n\nTap on \"New Playlist\" to create one")
} else {
2021-10-24 21:36:24 +00:00
Group {
#if os(tvOS)
HorizontalCells(items: items)
.padding(.top, 40)
Spacer()
#else
VerticalCells(items: items)
#endif
}
.environment(\.currentPlaylistID, currentPlaylist?.id)
}
2021-09-25 08:18:22 +00:00
}
2021-06-26 09:39:35 +00:00
}
}
#if os(tvOS)
2021-07-11 20:52:49 +00:00
.fullScreenCover(isPresented: $showingNewPlaylist, onDismiss: selectCreatedPlaylist) {
PlaylistFormView(playlist: $createdPlaylist)
}
.fullScreenCover(isPresented: $showingEditPlaylist, onDismiss: selectEditedPlaylist) {
PlaylistFormView(playlist: $editedPlaylist)
}
#else
.sheet(isPresented: $showingNewPlaylist, onDismiss: selectCreatedPlaylist) {
PlaylistFormView(playlist: $createdPlaylist)
}
.sheet(isPresented: $showingEditPlaylist, onDismiss: selectEditedPlaylist) {
PlaylistFormView(playlist: $editedPlaylist)
}
2021-07-11 20:52:49 +00:00
#endif
.toolbar {
ToolbarItemGroup {
#if !os(iOS)
if !model.isEmpty {
selectPlaylistButton
2021-09-29 12:36:52 +00:00
.prefersDefaultFocus(in: focusNamespace)
}
2021-10-24 21:36:24 +00:00
if currentPlaylist != nil {
editPlaylistButton
}
#endif
newPlaylistButton
}
2021-09-25 08:18:22 +00:00
#if os(iOS)
ToolbarItemGroup(placement: .bottomBar) {
Group {
if model.isEmpty {
2021-09-25 08:18:22 +00:00
Text("No Playlists")
.foregroundColor(.secondary)
} else {
Text("Current Playlist")
.foregroundColor(.secondary)
selectPlaylistButton
}
Spacer()
2021-10-24 21:36:24 +00:00
if currentPlaylist != nil {
2021-09-25 08:18:22 +00:00
editPlaylistButton
}
}
.transaction { t in t.animation = .none }
}
#endif
}
#if os(tvOS)
.focusScope(focusNamespace)
#endif
2021-06-28 10:43:07 +00:00
.onAppear {
model.load()
2021-06-26 09:39:35 +00:00
}
.onChange(of: accounts.current) { _ in
model.load(force: true)
}
}
#if os(tvOS)
var toolbar: some View {
HStack {
if model.isEmpty {
Text("No Playlists")
.foregroundColor(.secondary)
} else {
Text("Current Playlist")
.foregroundColor(.secondary)
selectPlaylistButton
}
Button {
player.playAll(items.compactMap(\.video))
player.presentPlayer()
} label: {
HStack(spacing: 15) {
Image(systemName: "play.fill")
Text("Play All")
}
}
2021-10-24 21:36:24 +00:00
if currentPlaylist != nil {
editPlaylistButton
}
Spacer()
2021-09-29 12:36:52 +00:00
newPlaylistButton
.padding(.leading, 40)
}
}
#endif
func hintText(_ text: String) -> some View {
VStack {
Spacer()
Text(text)
.foregroundColor(.secondary)
.multilineTextAlignment(.center)
Spacer()
}
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity)
#if os(macOS)
.background()
#endif
}
2021-07-08 15:14:54 +00:00
func selectCreatedPlaylist() {
guard createdPlaylist != nil else {
return
}
model.load(force: true) {
if let id = createdPlaylist?.id {
2021-10-24 21:36:24 +00:00
selectedPlaylistID = id
}
2021-07-08 17:18:36 +00:00
self.createdPlaylist = nil
}
}
func selectEditedPlaylist() {
if editedPlaylist.isNil {
2021-10-24 21:36:24 +00:00
selectedPlaylistID = ""
2021-07-08 17:18:36 +00:00
}
model.load(force: true) {
2021-10-24 21:36:24 +00:00
self.selectedPlaylistID = editedPlaylist?.id ?? ""
2021-07-08 17:18:36 +00:00
self.editedPlaylist = nil
2021-07-08 15:14:54 +00:00
}
}
2021-06-26 09:39:35 +00:00
var selectPlaylistButton: some View {
#if os(tvOS)
2021-10-24 21:36:24 +00:00
Button(currentPlaylist?.title ?? "Select playlist") {
guard currentPlaylist != nil else {
return
}
2021-06-26 09:39:35 +00:00
2021-10-24 21:36:24 +00:00
selectedPlaylistID = model.all.next(after: currentPlaylist!)?.id ?? ""
}
.contextMenu {
ForEach(model.all) { playlist in
Button(playlist.title) {
2021-10-24 21:36:24 +00:00
selectedPlaylistID = playlist.id
}
2021-06-26 09:39:35 +00:00
}
2021-09-29 12:36:52 +00:00
Button("Cancel", role: .cancel) {}
2021-06-26 09:39:35 +00:00
}
#else
2021-10-24 21:36:24 +00:00
Menu(currentPlaylist?.title ?? "Select playlist") {
ForEach(model.all) { playlist in
2021-10-24 21:36:24 +00:00
Button(action: { selectedPlaylistID = playlist.id }) {
if playlist == currentPlaylist {
Label(playlist.title, systemImage: "checkmark")
} else {
Text(playlist.title)
}
}
}
}
#endif
2021-06-26 09:39:35 +00:00
}
2021-07-08 15:14:54 +00:00
2021-07-08 17:18:36 +00:00
var editPlaylistButton: some View {
Button(action: {
2021-10-24 21:36:24 +00:00
self.editedPlaylist = self.currentPlaylist
2021-07-08 17:18:36 +00:00
self.showingEditPlaylist = true
}) {
HStack(spacing: 8) {
Image(systemName: "slider.horizontal.3")
Text("Edit")
}
2021-07-08 17:18:36 +00:00
}
}
2021-07-08 15:14:54 +00:00
var newPlaylistButton: some View {
Button(action: { self.showingNewPlaylist = true }) {
HStack(spacing: 8) {
Image(systemName: "plus")
2021-07-11 20:52:49 +00:00
#if os(tvOS)
Text("New Playlist")
#endif
}
2021-07-08 15:14:54 +00:00
}
}
2021-10-24 21:36:24 +00:00
private var currentPlaylist: Playlist? {
model.find(id: selectedPlaylistID) ?? model.all.first
}
2021-06-26 09:39:35 +00:00
}
struct PlaylistsView_Provider: PreviewProvider {
static var previews: some View {
PlaylistsView()
2021-09-29 11:45:00 +00:00
.injectFixtureEnvironmentObjects()
}
}