2021-08-29 21:36:18 +00:00
|
|
|
import Siesta
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct ChannelVideosView: View {
|
|
|
|
let channel: Channel
|
|
|
|
|
2021-08-31 21:17:50 +00:00
|
|
|
@EnvironmentObject<NavigationState> private var navigationState
|
|
|
|
@EnvironmentObject<Subscriptions> private var subscriptions
|
|
|
|
|
|
|
|
@Environment(\.inNavigationView) private var inNavigationView
|
|
|
|
|
|
|
|
@Environment(\.dismiss) private var dismiss
|
|
|
|
#if os(iOS)
|
|
|
|
@Environment(\.horizontalSizeClass) private var horizontalSizeClass
|
|
|
|
#endif
|
|
|
|
|
|
|
|
@ObservedObject private var store = Store<Channel>()
|
|
|
|
|
|
|
|
@Namespace private var focusNamespace
|
2021-08-29 21:36:18 +00:00
|
|
|
|
|
|
|
init(_ channel: Channel) {
|
|
|
|
self.channel = channel
|
2021-08-31 21:17:50 +00:00
|
|
|
|
2021-08-29 21:36:18 +00:00
|
|
|
resource.addObserver(store)
|
|
|
|
}
|
|
|
|
|
|
|
|
var body: some View {
|
2021-08-31 21:17:50 +00:00
|
|
|
VStack {
|
|
|
|
#if os(tvOS)
|
|
|
|
HStack {
|
|
|
|
Text(navigationTitle)
|
|
|
|
.font(.title2)
|
|
|
|
.frame(alignment: .leading)
|
|
|
|
|
|
|
|
Spacer()
|
|
|
|
|
|
|
|
if let subscribers = store.item?.subscriptionsString {
|
|
|
|
Text("**\(subscribers)** subscribers")
|
|
|
|
.foregroundColor(.secondary)
|
|
|
|
}
|
|
|
|
|
|
|
|
subscriptionToggleButton
|
|
|
|
}
|
|
|
|
.frame(maxWidth: .infinity)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
VideosView(videos: store.item?.videos ?? [])
|
|
|
|
|
|
|
|
#if !os(iOS)
|
|
|
|
.prefersDefaultFocus(in: focusNamespace)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#if !os(iOS)
|
|
|
|
.focusScope(focusNamespace)
|
|
|
|
#endif
|
2021-08-29 21:36:18 +00:00
|
|
|
#if !os(tvOS)
|
2021-08-31 21:17:50 +00:00
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: subscriptionToolbarItemPlacement) {
|
|
|
|
HStack {
|
|
|
|
if let channel = store.item, let subscribers = channel.subscriptionsString {
|
|
|
|
Text("**\(subscribers)** subscribers")
|
|
|
|
.foregroundColor(.secondary)
|
|
|
|
}
|
|
|
|
|
|
|
|
subscriptionToggleButton
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolbarItem(placement: .cancellationAction) {
|
|
|
|
if inNavigationView {
|
|
|
|
Button("Done") {
|
|
|
|
dismiss()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-29 21:36:18 +00:00
|
|
|
#endif
|
2021-08-31 21:17:50 +00:00
|
|
|
.modifier(UnsubscribeAlertModifier())
|
|
|
|
.onAppear {
|
|
|
|
resource.loadIfNeeded()
|
|
|
|
}
|
|
|
|
.navigationTitle(navigationTitle)
|
|
|
|
}
|
|
|
|
|
|
|
|
var resource: Resource {
|
|
|
|
InvidiousAPI.shared.channel(channel.id)
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !os(tvOS)
|
|
|
|
var subscriptionToolbarItemPlacement: ToolbarItemPlacement {
|
|
|
|
#if os(iOS)
|
|
|
|
if horizontalSizeClass == .regular {
|
2021-09-13 20:41:16 +00:00
|
|
|
return .primaryAction // swiftlint:disable:this implicit_return
|
2021-08-31 21:17:50 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return .status
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
var subscriptionToggleButton: some View {
|
|
|
|
Group {
|
|
|
|
if subscriptions.isSubscribing(channel.id) {
|
|
|
|
Button("Unsubscribe") {
|
|
|
|
navigationState.presentUnsubscribeAlert(channel)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Button("Subscribe") {
|
|
|
|
subscriptions.subscribe(channel.id) {
|
|
|
|
navigationState.sidebarSectionChanged.toggle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-29 21:36:18 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-31 21:17:50 +00:00
|
|
|
|
|
|
|
var navigationTitle: String {
|
|
|
|
store.item?.name ?? channel.name
|
|
|
|
}
|
2021-08-29 21:36:18 +00:00
|
|
|
}
|