yattee/Shared/Favorites/FavoriteItemView.swift

129 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?
2021-11-05 22:44:52 +00:00
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<PlaylistsModel> private var playlists
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())
.opacity(dragging?.id == item.id ? 0.5 : 1)
.onAppear {
resource?.addObserver(store)
resource?.load()
2021-11-07 20:51:22 +00:00
}
#if !os(tvOS)
2021-11-08 16:29:35 +00:00
.onDrag {
dragging = item
return NSItemProvider(object: item.id as NSString)
}
.onDrop(
of: [UTType.text],
delegate: DropFavorite(item: item, favorites: $favorites, current: $dragging)
)
2021-11-07 20:51:22 +00:00
#endif
}
2021-11-01 21:56:18 +00:00
}
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)
))
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 {
2021-11-05 22:44:52 +00:00
return playlists.find(id: id)?.title ?? "Playlist"
2021-11-01 21:56:18 +00:00
}
return item.section.label
}
}