1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 22:30:32 +05:30
yattee/Shared/Views/SubscriptionsView.swift

89 lines
2.6 KiB
Swift
Raw Normal View History

2021-09-25 13:48:22 +05:30
import Siesta
2021-06-12 04:19:42 +05:30
import SwiftUI
struct SubscriptionsView: View {
2021-09-25 13:48:22 +05:30
@StateObject private var store = Store<[Video]>()
2021-06-26 17:07:24 +05:30
2021-10-17 04:18:58 +05:30
@EnvironmentObject<AccountsModel> private var accounts
2021-10-21 03:51:50 +05:30
var feed: Resource? {
accounts.api.feed
2021-06-28 16:13:07 +05:30
}
2021-06-26 17:07:24 +05:30
var videos: [ContentItem] {
ContentItem.array(of: store.collection)
}
2021-06-28 16:13:07 +05:30
var body: some View {
2022-02-17 01:53:11 +05:30
BrowserPlayerControls {
SignInRequiredView(title: "Subscriptions") {
VerticalCells(items: videos)
.onAppear {
loadResources()
}
.onChange(of: accounts.current) { _ in
loadResources(force: true)
}
#if os(iOS)
.refreshControl { refreshControl in
loadResources(force: true) {
refreshControl.endRefreshing()
}
}
#endif
}
2021-09-25 13:48:22 +05:30
}
2021-11-02 03:26:18 +05:30
.toolbar {
ToolbarItem(placement: .automatic) {
FavoriteButton(item: FavoriteItem(section: .subscriptions))
}
}
2022-01-07 04:30:40 +05:30
#if !os(tvOS)
.background(
Button("Refresh") {
loadResources(force: true)
}
.keyboardShortcut("r")
2022-01-07 16:42:56 +05:30
.opacity(0)
2022-01-07 04:30:40 +05:30
)
#endif
#if os(iOS)
.navigationBarTitleDisplayMode(RefreshControl.navigationBarTitleDisplayMode)
#endif
2021-09-25 13:48:22 +05:30
}
private func loadResources(force: Bool = false, onCompletion: @escaping () -> Void = {}) {
2021-10-21 03:51:50 +05:30
feed?.addObserver(store)
2021-09-25 13:48:22 +05:30
if accounts.app == .invidious {
// Invidious for some reason won't refresh feed until homepage is loaded
if let request = force ? accounts.api.home?.load() : accounts.api.home?.loadIfNeeded() {
request.onSuccess { _ in
loadFeed(force: force, onCompletion: onCompletion)
}
} else {
loadFeed(force: force, onCompletion: onCompletion)
2021-06-28 16:13:07 +05:30
}
2021-09-25 13:48:22 +05:30
} else {
loadFeed(force: force, onCompletion: onCompletion)
2021-09-25 13:48:22 +05:30
}
}
private func loadFeed(force: Bool = false, onCompletion: @escaping () -> Void = {}) {
if let request = force ? feed?.load() : feed?.loadIfNeeded() {
request.onCompletion { _ in
onCompletion()
}
} else {
onCompletion()
}
2021-06-12 04:19:42 +05:30
}
}
2022-06-26 16:21:00 +05:30
struct SubscriptonsView_Previews: PreviewProvider {
static var previews: some View {
SubscriptionsView()
.injectFixtureEnvironmentObjects()
}
}