mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
25 lines
530 B
Swift
25 lines
530 B
Swift
import SwiftUI
|
|
|
|
struct SubscriptionsView: View {
|
|
@ObservedObject private var store = Store<[Video]>()
|
|
|
|
var resource = InvidiousAPI.shared.subscriptions
|
|
|
|
init() {
|
|
resource.addObserver(store)
|
|
}
|
|
|
|
var body: some View {
|
|
VideosView(videos: store.collection)
|
|
.onAppear {
|
|
resource.loadIfNeeded()
|
|
}
|
|
.refreshable {
|
|
resource.load()
|
|
}
|
|
#if !os(tvOS)
|
|
.navigationTitle("Subscriptions")
|
|
#endif
|
|
}
|
|
}
|