1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Shared/Trending/TrendingView.swift

235 lines
6.8 KiB
Swift
Raw Normal View History

import Defaults
2021-06-28 16:13:07 +05:30
import Siesta
2021-06-17 15:32:39 +05:30
import SwiftUI
struct TrendingView: View {
2021-09-25 13:48:22 +05:30
@StateObject private var store = Store<[Video]>()
2021-09-29 17:15:00 +05:30
private var videos = [Video]()
2021-09-25 13:48:22 +05:30
@Default(.trendingCategory) private var category
@Default(.trendingCountry) private var country
2021-09-25 13:48:22 +05:30
@State private var presentingCountrySelection = false
2021-06-17 15:32:39 +05:30
2021-11-02 03:26:18 +05:30
@State private var favoriteItem: FavoriteItem?
2021-10-17 04:18:58 +05:30
@EnvironmentObject<AccountsModel> private var accounts
2021-06-26 15:09:35 +05:30
2021-11-02 03:26:18 +05:30
var trending: [ContentItem] {
ContentItem.array(of: store.collection)
}
init(_ videos: [Video] = [Video]()) {
self.videos = videos
}
2021-06-28 16:13:07 +05:30
var resource: Resource {
2021-10-21 03:51:50 +05:30
let newResource: Resource
2021-10-21 03:51:50 +05:30
newResource = accounts.api.trending(country: country, category: category)
newResource.addObserver(store)
return newResource
}
2021-06-17 15:32:39 +05:30
var body: some View {
2022-02-17 01:53:11 +05:30
BrowserPlayerControls(toolbar: {
2022-02-04 23:08:29 +05:30
HStack {
if accounts.app.supportsTrendingCategories {
HStack {
Text("Category")
.foregroundColor(.secondary)
categoryButton
// only way to disable Menu animation is to
// force redraw of the view when it changes
.id(UUID())
}
Spacer()
}
if let favoriteItem = favoriteItem {
FavoriteButton(item: favoriteItem, labelPadding: true)
.id(favoriteItem.id)
.labelStyle(.iconOnly)
Spacer()
}
HStack {
Text("Country")
.foregroundColor(.secondary)
countryButton
}
}
.padding(.horizontal)
}) {
Section {
VStack(alignment: .center, spacing: 0) {
#if os(tvOS)
toolbar
2021-11-02 03:26:18 +05:30
HorizontalCells(items: trending)
.padding(.top, 40)
Spacer()
#else
2021-11-02 03:26:18 +05:30
VerticalCells(items: trending)
2022-02-04 23:08:29 +05:30
.environment(\.scrollViewBottomPadding, 70)
#endif
}
2021-06-17 15:32:39 +05:30
}
2021-07-12 02:22:49 +05:30
}
.toolbar {
#if os(macOS)
ToolbarItemGroup {
if let favoriteItem = favoriteItem {
FavoriteButton(item: favoriteItem)
.id(favoriteItem.id)
}
if accounts.app.supportsTrendingCategories {
categoryButton
}
countryButton
}
#endif
}
.onChange(of: resource) { _ in
resource.load()
updateFavoriteItem()
}
.onAppear {
if videos.isEmpty {
resource.addObserver(store)
resource.loadIfNeeded()
} else {
store.replace(videos)
}
updateFavoriteItem()
}
#if os(tvOS)
2021-11-08 21:59:35 +05:30
.fullScreenCover(isPresented: $presentingCountrySelection) {
TrendingCountry(selectedCountry: $country)
}
#else
2021-11-08 21:59:35 +05:30
.sheet(isPresented: $presentingCountrySelection) {
TrendingCountry(selectedCountry: $country)
#if os(macOS)
.frame(minWidth: 400, minHeight: 400)
#endif
}
2022-01-07 04:30:40 +05:30
.background(
Button("Refresh") {
resource.load()
}
.keyboardShortcut("r")
2022-01-07 16:42:56 +05:30
.opacity(0)
2022-01-07 04:30:40 +05:30
)
2021-11-08 21:59:35 +05:30
.navigationTitle("Trending")
2021-07-12 02:22:49 +05:30
#endif
#if os(iOS)
.refreshControl { refreshControl in
resource.load().onCompletion { _ in
refreshControl.endRefreshing()
}
}
2022-09-02 22:32:19 +05:30
.backport
.refreshable {
DispatchQueue.main.async {
resource.load().onFailure { error in
NavigationModel.shared.presentAlert(title: "Could not refresh Trending", message: error.userMessage)
}
2022-09-02 22:32:19 +05:30
}
}
.navigationBarTitleDisplayMode(RefreshControl.navigationBarTitleDisplayMode)
#endif
2022-08-28 23:30:43 +05:30
#if !os(macOS)
.onReceive(NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
resource.loadIfNeeded()
}
#endif
2021-06-17 15:32:39 +05:30
}
2021-11-11 03:35:59 +05:30
#if os(tvOS)
private var toolbar: some View {
HStack {
if accounts.app.supportsTrendingCategories {
HStack {
Text("Category")
.foregroundColor(.secondary)
2021-09-25 13:48:22 +05:30
2021-11-11 03:35:59 +05:30
categoryButton
}
2021-10-21 03:51:50 +05:30
}
2021-09-25 13:48:22 +05:30
2021-11-11 03:35:59 +05:30
#if os(iOS)
Spacer()
#endif
2021-09-25 13:48:22 +05:30
2021-11-11 03:35:59 +05:30
HStack {
Text("Country")
.foregroundColor(.secondary)
2021-11-02 03:26:18 +05:30
2021-11-11 03:35:59 +05:30
countryButton
2021-11-02 03:26:18 +05:30
}
2021-11-11 03:35:59 +05:30
#if os(tvOS)
if let favoriteItem = favoriteItem {
FavoriteButton(item: favoriteItem)
.id(favoriteItem.id)
.labelStyle(.iconOnly)
}
#endif
}
2021-09-25 13:48:22 +05:30
}
2021-11-11 03:35:59 +05:30
#endif
2021-09-25 13:48:22 +05:30
2021-11-02 03:26:18 +05:30
private var categoryButton: some View {
#if os(tvOS)
Button(category.name) {
2021-09-25 13:48:22 +05:30
self.category = category.next()
}
.contextMenu {
ForEach(TrendingCategory.allCases) { category in
2021-11-02 03:26:18 +05:30
Button(category.controlLabel) { self.category = category }
}
2021-09-29 18:06:52 +05:30
Button("Cancel", role: .cancel) {}
}
2021-09-25 13:48:22 +05:30
#else
2021-11-28 20:07:55 +05:30
Picker(category.controlLabel, selection: $category) {
ForEach(TrendingCategory.allCases) { category in
2021-11-02 03:26:18 +05:30
Text(category.controlLabel).tag(category)
}
}
2021-11-28 20:07:55 +05:30
.pickerStyle(.menu)
#endif
}
2021-11-02 03:26:18 +05:30
private var countryButton: some View {
Button(action: {
2021-09-25 13:48:22 +05:30
presentingCountrySelection.toggle()
2021-06-28 16:13:07 +05:30
resource.removeObservers(ownedBy: store)
}) {
Text("\(country.flag) \(country.id)")
}
}
2021-11-02 03:26:18 +05:30
private func updateFavoriteItem() {
favoriteItem = FavoriteItem(section: .trending(country.rawValue, category.rawValue))
}
2021-06-17 15:32:39 +05:30
}
struct TrendingView_Previews: PreviewProvider {
static var previews: some View {
2021-09-29 17:15:00 +05:30
TrendingView(Video.allFixtures)
.injectFixtureEnvironmentObjects()
}
}