1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-15 06:40:32 +05:30
yattee/Shared/Watch Now/WatchNowSection.swift

29 lines
681 B
Swift
Raw Normal View History

2021-09-25 13:48:22 +05:30
import Defaults
2021-09-19 02:06:42 +05:30
import Siesta
import SwiftUI
struct WatchNowSection: View {
2021-10-21 03:51:50 +05:30
let resource: Resource?
2021-09-19 02:06:42 +05:30
let label: String
2021-09-25 13:48:22 +05:30
@StateObject private var store = Store<[Video]>()
2021-10-17 04:18:58 +05:30
@EnvironmentObject<AccountsModel> private var accounts
2021-09-25 13:48:22 +05:30
2021-10-21 03:51:50 +05:30
init(resource: Resource?, label: String) {
2021-09-19 02:06:42 +05:30
self.resource = resource
self.label = label
}
var body: some View {
WatchNowSectionBody(label: label, videos: store.collection)
.onAppear {
2021-10-21 03:51:50 +05:30
resource?.addObserver(store)
resource?.loadIfNeeded()
2021-09-25 13:48:22 +05:30
}
.onChange(of: accounts.current) { _ in
2021-10-21 03:51:50 +05:30
resource?.load()
2021-09-19 02:06:42 +05:30
}
}
}