yattee/Shared/Watch Now/WatchNowView.swift

47 lines
1.7 KiB
Swift
Raw Normal View History

2021-09-25 08:18:22 +00:00
import Defaults
2021-09-18 20:36:42 +00:00
import Siesta
import SwiftUI
struct WatchNowView: View {
2021-09-25 08:18:22 +00:00
@EnvironmentObject<InvidiousAPI> private var api
2021-09-19 17:31:21 +00:00
2021-09-18 20:36:42 +00:00
var body: some View {
PlayerControlsView {
ScrollView(.vertical, showsIndicators: false) {
if api.validInstance {
VStack(alignment: .leading, spacing: 0) {
if api.signedIn {
WatchNowSection(resource: api.feed, label: "Subscriptions")
}
WatchNowSection(resource: api.popular, label: "Popular")
WatchNowSection(resource: api.trending(category: .default, country: .pl), label: "Trending")
WatchNowSection(resource: api.trending(category: .movies, country: .pl), label: "Movies")
WatchNowSection(resource: api.trending(category: .music, country: .pl), label: "Music")
2021-09-18 20:36:42 +00:00
2021-09-25 08:18:22 +00:00
// TODO: adding sections to view
// ===================
// WatchNowPlaylistSection(id: "IVPLmRFYLGYZpq61SpujNw3EKbzzGNvoDmH")
// WatchNowSection(resource: api.channelVideos("UCBJycsmduvYEL83R_U4JriQ"), label: "MKBHD")
}
2021-09-25 08:18:22 +00:00
}
2021-09-18 20:36:42 +00:00
}
#if os(tvOS)
.edgesIgnoringSafeArea(.horizontal)
#else
.navigationTitle("Watch Now")
#endif
#if os(macOS)
.background()
.frame(minWidth: 360)
#endif
2021-09-18 20:36:42 +00:00
}
}
}
struct WatchNowView_Previews: PreviewProvider {
static var previews: some View {
WatchNowView()
2021-09-29 11:45:00 +00:00
.injectFixtureEnvironmentObjects()
2021-09-18 20:36:42 +00:00
}
}