yattee/Shared/Views/ChannelVideosView.swift

161 lines
4.5 KiB
Swift
Raw Normal View History

2021-08-29 21:36:18 +00:00
import Siesta
import SwiftUI
struct ChannelVideosView: View {
let channel: Channel
2021-10-26 22:59:59 +00:00
@State private var presentingShareSheet = false
2021-09-25 08:18:22 +00:00
@StateObject private var store = Store<Channel>()
2021-10-22 23:04:03 +00:00
@Environment(\.dismiss) private var dismiss
@Environment(\.inNavigationView) private var inNavigationView
#if os(iOS)
@Environment(\.horizontalSizeClass) private var horizontalSizeClass
#endif
2021-10-22 23:04:03 +00:00
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<NavigationModel> private var navigation
@EnvironmentObject<SubscriptionsModel> private var subscriptions
@Namespace private var focusNamespace
2021-08-29 21:36:18 +00:00
var videos: [ContentItem] {
ContentItem.array(of: store.item?.videos ?? [])
}
2021-08-29 21:36:18 +00:00
var body: some View {
#if os(iOS)
if inNavigationView {
content
} else {
PlayerControlsView {
content
}
}
#else
PlayerControlsView {
content
}
#endif
}
var content: some View {
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
VerticalCells(items: 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)
.toolbar {
2021-10-26 22:59:59 +00:00
ToolbarItem(placement: shareButtonPlacement) {
ShareButton(
contentItem: contentItem,
presentingShareSheet: $presentingShareSheet
)
}
2021-09-25 08:18:22 +00:00
ToolbarItem {
HStack {
2021-09-25 08:18:22 +00:00
Text("**\(store.item?.subscriptionsString ?? "loading")** subscribers")
.foregroundColor(.secondary)
.opacity(store.item?.subscriptionsString != nil ? 1 : 0)
subscriptionToggleButton
}
}
ToolbarItem(placement: .cancellationAction) {
if inNavigationView {
Button("Done") {
dismiss()
}
}
}
}
2021-10-22 23:04:03 +00:00
#else
.background(.thickMaterial)
#endif
2021-10-26 22:59:59 +00:00
#if os(iOS)
.sheet(isPresented: $presentingShareSheet) {
ShareSheet(activityItems: [
accounts.api.shareURL(contentItem)
])
}
#endif
.modifier(UnsubscribeAlertModifier())
.onAppear {
2021-09-25 08:18:22 +00:00
if store.item.isNil {
resource.addObserver(store)
resource.load()
}
}
.navigationTitle(navigationTitle)
}
2021-10-26 22:59:59 +00:00
private var resource: Resource {
2021-10-20 22:21:50 +00:00
let resource = accounts.api.channel(channel.id)
2021-09-25 08:18:22 +00:00
resource.addObserver(store)
return resource
}
2021-10-26 22:59:59 +00:00
private var subscriptionToggleButton: some View {
Group {
2021-10-20 22:21:50 +00:00
if accounts.app.supportsSubscriptions && accounts.signedIn {
if subscriptions.isSubscribing(channel.id) {
Button("Unsubscribe") {
navigation.presentUnsubscribeAlert(channel)
}
} else {
Button("Subscribe") {
subscriptions.subscribe(channel.id) {
navigation.sidebarSectionChanged.toggle()
}
}
}
}
2021-08-29 21:36:18 +00:00
}
}
2021-10-26 22:59:59 +00:00
private var shareButtonPlacement: ToolbarItemPlacement {
#if os(iOS)
.navigation
#else
.automatic
#endif
}
private var contentItem: ContentItem {
ContentItem(channel: channel)
}
private var navigationTitle: String {
store.item?.name ?? channel.name
}
2021-08-29 21:36:18 +00:00
}