yattee/Shared/Home/FavoriteItemView.swift

127 lines
3.8 KiB
Swift
Raw Normal View History

2021-11-01 21:56:18 +00:00
import Defaults
import Siesta
import SwiftUI
import UniformTypeIdentifiers
struct FavoriteItemView: View {
let item: FavoriteItem
@StateObject private var store = FavoriteResourceObserver()
2021-11-05 22:44:52 +00:00
@Default(.favorites) private var favorites
2021-11-01 21:56:18 +00:00
@Binding private var dragging: FavoriteItem?
@ObservedObject private var accounts = AccountsModel.shared
private var playlists = PlaylistsModel.shared
2021-11-05 22:44:52 +00:00
private var favoritesModel = FavoritesModel.shared
2021-11-01 21:56:18 +00:00
init(
item: FavoriteItem,
dragging: Binding<FavoriteItem?>
) {
self.item = item
_dragging = dragging
}
var body: some View {
2021-11-07 20:51:22 +00:00
Group {
if isVisible {
VStack(alignment: .leading, spacing: 2) {
Text(label)
.font(.title3.bold())
.foregroundColor(.secondary)
.contextMenu {
Button {
favoritesModel.remove(item)
} label: {
Label("Remove from Favorites", systemImage: "trash")
}
}
.contentShape(Rectangle())
#if os(tvOS)
.padding(.leading, 40)
#else
.padding(.leading, 15)
#endif
HorizontalCells(items: store.contentItems)
2021-11-01 21:56:18 +00:00
}
2021-11-07 20:51:22 +00:00
.contentShape(Rectangle())
#if os(macOS)
.opacity(dragging?.id == item.id ? 0.5 : 1)
#endif
.onAppear {
resource?.addObserver(store)
resource?.loadIfNeeded()
}
2021-11-07 20:51:22 +00:00
}
2021-11-01 21:56:18 +00:00
}
2021-12-06 18:13:49 +00:00
.onChange(of: accounts.current) { _ in
resource?.addObserver(store)
resource?.load()
}
2021-11-07 20:51:22 +00:00
}
2021-11-01 21:56:18 +00:00
2021-11-07 20:51:22 +00:00
private var isVisible: Bool {
switch item.section {
case .subscriptions:
2021-11-11 21:07:13 +00:00
return accounts.app.supportsSubscriptions && accounts.signedIn
2021-11-07 20:51:22 +00:00
case .popular:
return accounts.app.supportsPopular
default:
return true
2021-11-01 21:56:18 +00:00
}
}
2021-11-05 22:44:52 +00:00
private var resource: Resource? {
switch item.section {
case .subscriptions:
if accounts.app.supportsSubscriptions {
return accounts.api.feed
}
case .popular:
if accounts.app.supportsPopular {
return accounts.api.popular
}
case let .trending(country, category):
let trendingCountry = Country(rawValue: country)!
2021-11-11 21:07:13 +00:00
let trendingCategory = category.isNil ? nil : TrendingCategory(rawValue: category!)
2021-11-05 22:44:52 +00:00
return accounts.api.trending(country: trendingCountry, category: trendingCategory)
case let .channel(id, _):
return accounts.api.channelVideos(id)
case let .channelPlaylist(id, _):
return accounts.api.channelPlaylist(id)
case let .playlist(id):
return accounts.api.playlist(id)
2021-11-09 17:43:15 +00:00
case let .searchQuery(text, date, duration, order):
return accounts.api.search(
.init(
query: text,
sortBy: SearchQuery.SortOrder(rawValue: order) ?? .uploadDate,
date: SearchQuery.Date(rawValue: date),
duration: SearchQuery.Duration(rawValue: duration)
),
page: nil
)
2021-11-05 22:44:52 +00:00
}
return nil
}
private var label: String {
2021-11-01 21:56:18 +00:00
if case let .playlist(id) = item.section {
2022-11-18 23:06:13 +00:00
return playlists.find(id: id)?.title ?? "Playlist".localized()
2021-11-01 21:56:18 +00:00
}
2022-11-18 23:06:13 +00:00
return item.section.label.localized()
2021-11-01 21:56:18 +00:00
}
}