yattee/Shared/Views/VideoContextMenuView.swift

75 lines
2.2 KiB
Swift
Raw Normal View History

import Defaults
import SwiftUI
struct VideoContextMenuView: View {
2021-09-25 08:18:22 +00:00
@EnvironmentObject<InvidiousAPI> private var api
@EnvironmentObject<NavigationModel> private var navigation
2021-09-25 12:17:58 +00:00
@EnvironmentObject<RecentsModel> private var recents
2021-09-25 08:18:22 +00:00
@EnvironmentObject<SubscriptionsModel> private var subscriptions
let video: Video
@Default(.showingAddToPlaylist) var showingAddToPlaylist
@Default(.videoIDToAddToPlaylist) var videoIDToAddToPlaylist
var body: some View {
2021-08-25 22:12:59 +00:00
Section {
2021-09-19 11:06:54 +00:00
openChannelButton
2021-08-25 22:12:59 +00:00
subscriptionButton
2021-07-07 22:39:18 +00:00
2021-09-25 08:18:22 +00:00
if navigation.tabSelection == .playlists {
2021-08-25 22:12:59 +00:00
removeFromPlaylistButton
} else {
addToPlaylistButton
}
2021-07-07 22:39:18 +00:00
}
}
2021-08-25 22:12:59 +00:00
var openChannelButton: some View {
Button("\(video.author) Channel") {
2021-09-19 11:06:54 +00:00
let recent = RecentItem(from: video.channel)
recents.open(recent)
2021-09-25 08:18:22 +00:00
navigation.tabSelection = .recentlyOpened(recent.tag)
navigation.isChannelOpen = true
navigation.sidebarSectionChanged.toggle()
}
}
2021-08-25 22:12:59 +00:00
var subscriptionButton: some View {
Group {
if subscriptions.isSubscribing(video.channel.id) {
2021-08-25 22:12:59 +00:00
Button("Unsubscribe", role: .destructive) {
#if os(tvOS)
subscriptions.unsubscribe(video.channel.id)
#else
2021-09-25 08:18:22 +00:00
navigation.presentUnsubscribeAlert(video.channel)
#endif
2021-08-25 22:12:59 +00:00
}
} else {
Button("Subscribe") {
subscriptions.subscribe(video.channel.id) {
2021-09-25 08:18:22 +00:00
navigation.sidebarSectionChanged.toggle()
}
2021-08-25 22:12:59 +00:00
}
}
}
}
var addToPlaylistButton: some View {
Button("Add to playlist...") {
videoIDToAddToPlaylist = video.id
showingAddToPlaylist = true
}
}
var removeFromPlaylistButton: some View {
Button("Remove from playlist", role: .destructive) {
2021-09-25 08:18:22 +00:00
let resource = api.playlistVideo(Defaults[.selectedPlaylistID]!, video.indexID!)
resource.request(.delete).onSuccess { _ in
2021-09-25 08:18:22 +00:00
api.playlists.load()
}
}
}
}