mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
26 lines
601 B
Swift
26 lines
601 B
Swift
import Siesta
|
|
import SwiftUI
|
|
|
|
struct PopularView: View {
|
|
@StateObject private var store = Store<[Video]>()
|
|
|
|
@EnvironmentObject<AccountsModel> private var accounts
|
|
|
|
var resource: Resource {
|
|
accounts.invidious.popular
|
|
}
|
|
|
|
var body: some View {
|
|
PlayerControlsView {
|
|
VideosCellsVertical(videos: store.collection)
|
|
.onAppear {
|
|
resource.addObserver(store)
|
|
resource.loadIfNeeded()
|
|
}
|
|
#if !os(tvOS)
|
|
.navigationTitle("Popular")
|
|
#endif
|
|
}
|
|
}
|
|
}
|