yattee/Shared/Views/PopularView.swift

26 lines
601 B
Swift
Raw Normal View History

2021-06-28 10:43:07 +00:00
import Siesta
2021-06-11 12:36:26 +00:00
import SwiftUI
2021-07-27 22:40:04 +00:00
struct PopularView: View {
2021-09-25 08:18:22 +00:00
@StateObject private var store = Store<[Video]>()
2021-06-11 21:54:00 +00:00
2021-10-16 22:48:58 +00:00
@EnvironmentObject<AccountsModel> private var accounts
2021-06-11 21:11:59 +00:00
2021-09-25 08:18:22 +00:00
var resource: Resource {
2021-10-16 22:48:58 +00:00
accounts.invidious.popular
2021-06-28 10:43:07 +00:00
}
2021-06-14 18:05:02 +00:00
2021-06-28 10:43:07 +00:00
var body: some View {
PlayerControlsView {
VideosCellsVertical(videos: store.collection)
.onAppear {
resource.addObserver(store)
resource.loadIfNeeded()
}
#if !os(tvOS)
.navigationTitle("Popular")
#endif
}
2021-06-11 12:36:26 +00:00
}
}