2021-06-26 23:29:55 +00:00
|
|
|
import Defaults
|
2021-06-23 22:19:58 +00:00
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct VideosListView: View {
|
2021-06-26 23:29:55 +00:00
|
|
|
@Default(.tabSelection) var tabSelection
|
2021-06-23 22:19:58 +00:00
|
|
|
|
|
|
|
var videos: [Video]
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
Section {
|
|
|
|
List {
|
|
|
|
ForEach(videos) { video in
|
2021-06-28 15:02:13 +00:00
|
|
|
VideoListRowView(video: video)
|
2021-06-23 22:19:58 +00:00
|
|
|
.contextMenu {
|
|
|
|
if tabSelection == .channel {
|
|
|
|
closeChannelButton(name: video.author)
|
|
|
|
} else {
|
|
|
|
openChannelButton(from: video)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.listRowInsets(listRowInsets)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.listStyle(GroupedListStyle())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func openChannelButton(from video: Video) -> some View {
|
|
|
|
Button("\(video.author) Channel") {
|
2021-06-28 15:02:13 +00:00
|
|
|
Defaults[.openChannel] = Channel.from(video: video)
|
2021-06-23 22:19:58 +00:00
|
|
|
tabSelection = .channel
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func closeChannelButton(name: String) -> some View {
|
|
|
|
Button("Close \(name) Channel") {
|
2021-06-28 15:02:13 +00:00
|
|
|
Defaults.reset(.openChannel)
|
2021-06-23 22:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var listRowInsets: EdgeInsets {
|
|
|
|
EdgeInsets(top: .zero, leading: .zero, bottom: .zero, trailing: 30)
|
|
|
|
}
|
|
|
|
}
|