2021-06-28 20:57:53 +05:30
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VideoContextMenuView: View {
|
2021-09-25 13:48:22 +05:30
|
|
|
@EnvironmentObject<InvidiousAPI> private var api
|
|
|
|
@EnvironmentObject<NavigationModel> private var navigation
|
2021-09-25 17:47:58 +05:30
|
|
|
@EnvironmentObject<RecentsModel> private var recents
|
2021-09-25 13:48:22 +05:30
|
|
|
@EnvironmentObject<SubscriptionsModel> private var subscriptions
|
2021-06-28 20:57:53 +05:30
|
|
|
|
|
|
|
let video: Video
|
|
|
|
|
2021-07-09 20:23:53 +05:30
|
|
|
@Default(.showingAddToPlaylist) var showingAddToPlaylist
|
|
|
|
@Default(.videoIDToAddToPlaylist) var videoIDToAddToPlaylist
|
|
|
|
|
2021-06-28 20:57:53 +05:30
|
|
|
var body: some View {
|
2021-08-26 03:42:59 +05:30
|
|
|
Section {
|
2021-09-19 16:36:54 +05:30
|
|
|
openChannelButton
|
2021-08-26 03:42:59 +05:30
|
|
|
|
|
|
|
subscriptionButton
|
2021-07-08 04:09:18 +05:30
|
|
|
|
2021-09-25 13:48:22 +05:30
|
|
|
if navigation.tabSelection == .playlists {
|
2021-08-26 03:42:59 +05:30
|
|
|
removeFromPlaylistButton
|
|
|
|
} else {
|
|
|
|
addToPlaylistButton
|
|
|
|
}
|
2021-07-08 04:09:18 +05:30
|
|
|
}
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|
|
|
|
|
2021-08-26 03:42:59 +05:30
|
|
|
var openChannelButton: some View {
|
2021-06-28 20:57:53 +05:30
|
|
|
Button("\(video.author) Channel") {
|
2021-09-19 16:36:54 +05:30
|
|
|
let recent = RecentItem(from: video.channel)
|
|
|
|
recents.open(recent)
|
2021-09-25 13:48:22 +05:30
|
|
|
navigation.tabSelection = .recentlyOpened(recent.tag)
|
|
|
|
navigation.isChannelOpen = true
|
|
|
|
navigation.sidebarSectionChanged.toggle()
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-26 03:42:59 +05:30
|
|
|
var subscriptionButton: some View {
|
|
|
|
Group {
|
2021-09-01 02:47:50 +05:30
|
|
|
if subscriptions.isSubscribing(video.channel.id) {
|
2021-08-26 03:42:59 +05:30
|
|
|
Button("Unsubscribe", role: .destructive) {
|
2021-09-01 02:47:50 +05:30
|
|
|
#if os(tvOS)
|
|
|
|
subscriptions.unsubscribe(video.channel.id)
|
|
|
|
#else
|
2021-09-25 13:48:22 +05:30
|
|
|
navigation.presentUnsubscribeAlert(video.channel)
|
2021-09-01 02:47:50 +05:30
|
|
|
#endif
|
2021-08-26 03:42:59 +05:30
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Button("Subscribe") {
|
2021-09-01 02:47:50 +05:30
|
|
|
subscriptions.subscribe(video.channel.id) {
|
2021-09-25 13:48:22 +05:30
|
|
|
navigation.sidebarSectionChanged.toggle()
|
2021-09-01 02:47:50 +05:30
|
|
|
}
|
2021-08-26 03:42:59 +05:30
|
|
|
}
|
|
|
|
}
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|
|
|
|
}
|
2021-07-09 20:23:53 +05:30
|
|
|
|
|
|
|
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 13:48:22 +05:30
|
|
|
let resource = api.playlistVideo(Defaults[.selectedPlaylistID]!, video.indexID!)
|
2021-07-09 20:23:53 +05:30
|
|
|
resource.request(.delete).onSuccess { _ in
|
2021-09-25 13:48:22 +05:30
|
|
|
api.playlists.load()
|
2021-07-09 20:23:53 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|