yattee/Apple TV/ChannelView.swift

25 lines
465 B
Swift
Raw Normal View History

2021-06-28 10:43:07 +00:00
import Siesta
2021-06-11 21:11:59 +00:00
import SwiftUI
struct ChannelView: View {
2021-06-28 10:43:07 +00:00
@ObservedObject private var store = Store<[Video]>()
2021-06-11 21:11:59 +00:00
2021-06-28 10:43:07 +00:00
var id: String
2021-06-11 21:11:59 +00:00
2021-06-28 10:43:07 +00:00
var resource: Resource {
InvidiousAPI.shared.channelVideos(id)
2021-06-11 21:11:59 +00:00
}
2021-06-28 10:43:07 +00:00
init(id: String) {
self.id = id
resource.addObserver(store)
}
2021-06-11 21:11:59 +00:00
2021-06-28 10:43:07 +00:00
var body: some View {
VideosListView(videos: store.collection)
.onAppear {
resource.loadIfNeeded()
}
2021-06-11 21:11:59 +00:00
}
}