1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-15 06:40:32 +05:30
yattee/Apple TV/ChannelView.swift

25 lines
461 B
Swift
Raw Normal View History

2021-06-28 16:13:07 +05:30
import Siesta
2021-06-12 02:41:59 +05:30
import SwiftUI
struct ChannelView: View {
2021-06-28 16:13:07 +05:30
@ObservedObject private var store = Store<[Video]>()
2021-06-12 02:41:59 +05:30
2021-06-28 16:13:07 +05:30
var id: String
2021-06-12 02:41:59 +05:30
2021-06-28 16:13:07 +05:30
var resource: Resource {
InvidiousAPI.shared.channelVideos(id)
2021-06-12 02:41:59 +05:30
}
2021-06-28 16:13:07 +05:30
init(id: String) {
self.id = id
resource.addObserver(store)
}
2021-06-12 02:41:59 +05:30
2021-06-28 16:13:07 +05:30
var body: some View {
2021-07-08 04:09:18 +05:30
VideosView(videos: store.collection)
2021-06-28 16:13:07 +05:30
.onAppear {
resource.loadIfNeeded()
}
2021-06-12 02:41:59 +05:30
}
}