yattee/Shared/Navigation/AppSidebarPlaylists.swift

56 lines
2.0 KiB
Swift
Raw Normal View History

2021-08-29 21:36:18 +00:00
import SwiftUI
struct AppSidebarPlaylists: View {
@ObservedObject private var accounts = AccountsModel.shared
@ObservedObject private var navigation = NavigationModel.shared
private var player = PlayerModel.shared
@ObservedObject private var playlists = PlaylistsModel.shared
2021-08-29 21:36:18 +00:00
var body: some View {
Section(header: Text("Playlists")) {
2021-09-25 08:18:22 +00:00
ForEach(playlists.playlists.sorted { $0.title.lowercased() < $1.title.lowercased() }) { playlist in
2021-09-28 23:01:49 +00:00
NavigationLink(tag: TabSelection.playlist(playlist.id), selection: $navigation.tabSelection) {
LazyView(PlaylistVideosView(playlist))
2021-08-29 21:36:18 +00:00
} label: {
playlistLabel(playlist)
2021-08-29 21:36:18 +00:00
}
.id(playlist.id)
2021-08-29 21:36:18 +00:00
.contextMenu {
Button("Play All") {
player.play(playlists.find(id: playlist.id)?.videos ?? [])
}
2022-09-04 15:23:02 +00:00
Button("Shuffle All") {
player.play(playlists.find(id: playlist.id)?.videos ?? [], shuffling: true)
}
2021-08-29 21:36:18 +00:00
Button("Edit") {
2021-09-25 08:18:22 +00:00
navigation.presentEditPlaylistForm(playlists.find(id: playlist.id))
2021-08-29 21:36:18 +00:00
}
}
}
newPlaylistButton
.padding(.top, 8)
}
}
@ViewBuilder func playlistLabel(_ playlist: Playlist) -> some View {
let label = Label(playlist.title, systemImage: RecentsModel.symbolSystemImage(playlist.title))
if accounts.app.userPlaylistsEndpointIncludesVideos, !playlist.videos.isEmpty {
label
.backport
.badge(Text("\(playlist.videos.count)"))
} else {
label
}
}
2021-08-29 21:36:18 +00:00
var newPlaylistButton: some View {
2021-09-25 08:18:22 +00:00
Button(action: { navigation.presentNewPlaylistForm() }) {
Label("New Playlist", systemImage: "plus.circle")
2021-08-29 21:36:18 +00:00
}
.foregroundColor(.secondary)
.buttonStyle(.plain)
}
}