yattee/Shared/Trending/TrendingView.swift

228 lines
6.4 KiB
Swift
Raw Normal View History

import Defaults
2021-06-28 10:43:07 +00:00
import Siesta
2021-06-17 10:02:39 +00:00
import SwiftUI
struct TrendingView: View {
2021-09-25 08:18:22 +00:00
@StateObject private var store = Store<[Video]>()
2021-09-29 11:45:00 +00:00
private var videos = [Video]()
2021-09-25 08:18:22 +00:00
@Default(.trendingCategory) private var category
@Default(.trendingCountry) private var country
2021-09-25 08:18:22 +00:00
@State private var presentingCountrySelection = false
2021-06-17 10:02:39 +00:00
2021-11-01 21:56:18 +00:00
@State private var favoriteItem: FavoriteItem?
@ObservedObject private var accounts = AccountsModel.shared
2021-06-26 09:39:35 +00:00
2021-11-01 21:56:18 +00:00
var trending: [ContentItem] {
ContentItem.array(of: store.collection)
}
init(_ videos: [Video] = [Video]()) {
self.videos = videos
}
2021-06-28 10:43:07 +00:00
var resource: Resource {
2021-10-20 22:21:50 +00:00
let newResource: Resource
2021-10-20 22:21:50 +00:00
newResource = accounts.api.trending(country: country, category: category)
newResource.addObserver(store)
return newResource
}
2021-06-17 10:02:39 +00:00
var body: some View {
2022-12-10 21:37:14 +00:00
Section {
VStack(spacing: 0) {
#if os(tvOS)
toolbar
HorizontalCells(items: trending)
.padding(.top, 40)
Spacer()
#else
VerticalCells(items: trending)
.environment(\.scrollViewBottomPadding, 70)
#endif
2021-06-17 10:02:39 +00:00
}
2021-07-11 20:52:49 +00:00
}
.toolbar {
#if os(macOS)
ToolbarItemGroup {
2022-09-28 14:27:01 +00:00
if let 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 16:29:35 +00:00
.fullScreenCover(isPresented: $presentingCountrySelection) {
TrendingCountry(selectedCountry: $country)
}
#else
2021-11-08 16:29:35 +00:00
.sheet(isPresented: $presentingCountrySelection) {
TrendingCountry(selectedCountry: $country)
#if os(macOS)
.frame(minWidth: 400, minHeight: 400)
#endif
}
2022-01-06 23:00:40 +00:00
.background(
Button("Refresh") {
resource.load()
}
.keyboardShortcut("r")
2022-01-07 11:12:56 +00:00
.opacity(0)
2022-01-06 23:00:40 +00:00
)
2021-11-08 16:29:35 +00:00
.navigationTitle("Trending")
2021-07-11 20:52:49 +00:00
#endif
#if os(iOS)
.refreshControl { refreshControl in
resource.load().onCompletion { _ in
refreshControl.endRefreshing()
}
}
2022-09-02 17:02:19 +00:00
.backport
.refreshable {
DispatchQueue.main.async {
resource.load().onFailure { error in
NavigationModel.shared.presentAlert(title: "Could not refresh Trending", message: error.userMessage)
}
2022-09-02 17:02:19 +00:00
}
}
2022-12-10 01:19:36 +00:00
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .principal) {
trendingMenu
}
}
#endif
2022-08-28 18:00:43 +00:00
#if !os(macOS)
.onReceive(NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
resource.loadIfNeeded()
}
#endif
2021-06-17 10:02:39 +00:00
}
2021-11-10 22:05:59 +00:00
#if os(tvOS)
private var toolbar: some View {
HStack {
if accounts.app.supportsTrendingCategories {
HStack {
Text("Category")
.foregroundColor(.secondary)
2021-09-25 08:18:22 +00:00
2021-11-10 22:05:59 +00:00
categoryButton
}
2021-10-20 22:21:50 +00:00
}
2021-09-25 08:18:22 +00:00
2021-11-10 22:05:59 +00:00
HStack {
Text("Country")
.foregroundColor(.secondary)
2021-11-01 21:56:18 +00:00
2021-11-10 22:05:59 +00:00
countryButton
2021-11-01 21:56:18 +00:00
}
2021-11-10 22:05:59 +00:00
2022-11-10 21:51:30 +00:00
if let favoriteItem {
FavoriteButton(item: favoriteItem)
.id(favoriteItem.id)
.labelStyle(.iconOnly)
}
2021-11-10 22:05:59 +00:00
}
2021-09-25 08:18:22 +00:00
}
2021-11-10 22:05:59 +00:00
#endif
2021-09-25 08:18:22 +00:00
2022-12-10 01:19:36 +00:00
#if os(iOS)
var trendingMenu: some View {
Menu {
countryButton
if accounts.app.supportsTrendingCategories {
categoryButton
}
FavoriteButton(item: favoriteItem)
} label: {
HStack(spacing: 12) {
Text("\(country.flag) \(country.name)")
.font(.headline)
.foregroundColor(.primary)
Image(systemName: "chevron.down.circle.fill")
.foregroundColor(.accentColor)
.imageScale(.small)
}
.frame(maxWidth: 320)
}
}
#endif
2021-11-01 21:56:18 +00:00
private var categoryButton: some View {
#if os(tvOS)
Button(category.name) {
2021-09-25 08:18:22 +00:00
self.category = category.next()
}
.contextMenu {
ForEach(TrendingCategory.allCases) { category in
2021-11-01 21:56:18 +00:00
Button(category.controlLabel) { self.category = category }
}
2021-09-29 12:36:52 +00:00
Button("Cancel", role: .cancel) {}
}
2021-09-25 08:18:22 +00:00
#else
2021-11-28 14:37:55 +00:00
Picker(category.controlLabel, selection: $category) {
ForEach(TrendingCategory.allCases) { category in
2022-12-10 01:19:36 +00:00
Label(category.controlLabel, systemImage: category.systemImage).tag(category)
}
}
#endif
}
2021-11-01 21:56:18 +00:00
private var countryButton: some View {
Button(action: {
2021-09-25 08:18:22 +00:00
presentingCountrySelection.toggle()
2021-06-28 10:43:07 +00:00
resource.removeObservers(ownedBy: store)
}) {
2022-12-10 01:19:36 +00:00
#if os(iOS)
Label("Switch country...", systemImage: "flag")
#else
Text("\(country.flag) \(country.id)")
#endif
}
}
2021-11-01 21:56:18 +00:00
private func updateFavoriteItem() {
favoriteItem = FavoriteItem(section: .trending(country.rawValue, category.rawValue))
}
2021-06-17 10:02:39 +00:00
}
struct TrendingView_Previews: PreviewProvider {
static var previews: some View {
2022-12-10 01:19:36 +00:00
NavigationView {
TrendingView(Video.allFixtures)
}
}
}