2021-06-28 20:57:53 +05:30
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VideoContextMenuView: View {
|
2021-07-12 02:22:49 +05:30
|
|
|
@EnvironmentObject<NavigationState> private var navigationState
|
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-03 02:40:22 +05:30
|
|
|
openChannelButton(from: video)
|
2021-07-08 04:09:18 +05:30
|
|
|
|
2021-07-09 20:23:53 +05:30
|
|
|
openVideoDetailsButton
|
|
|
|
|
2021-07-12 02:22:49 +05:30
|
|
|
if navigationState.tabSelection == .playlists {
|
2021-07-09 20:23:53 +05:30
|
|
|
removeFromPlaylistButton
|
|
|
|
} else {
|
|
|
|
addToPlaylistButton
|
2021-07-08 04:09:18 +05:30
|
|
|
}
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func openChannelButton(from video: Video) -> some View {
|
|
|
|
Button("\(video.author) Channel") {
|
2021-07-12 02:22:49 +05:30
|
|
|
navigationState.openChannel(Channel.from(video: video))
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func closeChannelButton(from video: Video) -> some View {
|
|
|
|
Button("Close \(Channel.from(video: video).name) Channel") {
|
2021-07-12 02:22:49 +05:30
|
|
|
navigationState.closeChannel()
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|
|
|
|
}
|
2021-07-09 20:23:53 +05:30
|
|
|
|
|
|
|
var openVideoDetailsButton: some View {
|
|
|
|
Button("Open video details") {
|
2021-07-12 02:22:49 +05:30
|
|
|
navigationState.openVideoDetails(video)
|
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) {
|
|
|
|
let resource = InvidiousAPI.shared.playlistVideo(Defaults[.selectedPlaylistID]!, video.indexID!)
|
|
|
|
resource.request(.delete).onSuccess { _ in
|
|
|
|
InvidiousAPI.shared.playlists.load()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-28 20:57:53 +05:30
|
|
|
}
|