mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
23 lines
447 B
Swift
23 lines
447 B
Swift
import Siesta
|
|
import SwiftUI
|
|
|
|
struct PopularVideosView: View {
|
|
@ObservedObject private var store = Store<[Video]>()
|
|
|
|
var resource = InvidiousAPI.shared.popular
|
|
|
|
init() {
|
|
resource.addObserver(store)
|
|
}
|
|
|
|
var body: some View {
|
|
VideosView(videos: store.collection)
|
|
#if !os(tvOS)
|
|
.navigationTitle("Popular")
|
|
#endif
|
|
.onAppear {
|
|
resource.loadIfNeeded()
|
|
}
|
|
}
|
|
}
|