yattee/Shared/Home/HomeView.swift

208 lines
7.7 KiB
Swift
Raw Normal View History

2021-11-01 21:56:18 +00:00
import Defaults
import Siesta
import SwiftUI
import UniformTypeIdentifiers
2022-11-09 13:34:04 +00:00
struct HomeView: View {
2021-11-01 21:56:18 +00:00
@EnvironmentObject<AccountsModel> private var accounts
@EnvironmentObject<PlaylistsModel> private var playlists
@State private var dragging: FavoriteItem?
@State private var presentingEditFavorites = false
2021-11-07 16:52:42 +00:00
@State private var favoritesChanged = false
2022-11-15 11:22:27 +00:00
@FetchRequest(sortDescriptors: [.init(key: "watchedAt", ascending: false)])
var watches: FetchedResults<Watch>
@State private var historyID = UUID()
2022-11-18 22:39:52 +00:00
#if os(iOS)
@State private var recentDocumentsID = UUID()
#endif
2022-11-15 11:22:27 +00:00
2021-11-07 16:52:42 +00:00
var favoritesObserver: Any?
#if !os(tvOS)
@Default(.favorites) private var favorites
#endif
2022-11-18 22:39:52 +00:00
#if os(iOS)
@Default(.homeRecentDocumentsItems) private var homeRecentDocumentsItems
#endif
2022-11-10 17:11:28 +00:00
@Default(.homeHistoryItems) private var homeHistoryItems
2022-11-11 20:28:40 +00:00
@Default(.showFavoritesInHome) private var showFavoritesInHome
@Default(.showOpenActionsInHome) private var showOpenActionsInHome
2021-11-07 16:52:42 +00:00
2022-11-09 13:34:04 +00:00
private var navigation: NavigationModel { .shared }
2021-11-01 21:56:18 +00:00
var body: some View {
2022-02-16 20:23:11 +00:00
BrowserPlayerControls {
2021-11-01 21:56:18 +00:00
ScrollView(.vertical, showsIndicators: false) {
2022-11-12 01:39:44 +00:00
HStack {
#if os(tvOS)
Group {
if showOpenActionsInHome {
OpenVideosButton(text: "Open Video", imageSystemName: "globe") {
NavigationModel.shared.presentingOpenVideos = true
}
2022-11-11 20:28:40 +00:00
}
2022-11-12 01:39:44 +00:00
OpenVideosButton(text: "Settings", imageSystemName: "gear") {
NavigationModel.shared.presentingSettings = true
}
}
#else
if showOpenActionsInHome {
2022-11-11 20:28:40 +00:00
OpenVideosButton(text: "Files", imageSystemName: "folder") {
NavigationModel.shared.presentingFileImporter = true
}
OpenVideosButton(text: "Paste", imageSystemName: "doc.on.clipboard.fill") {
OpenVideosModel.shared.openURLsFromClipboard(playbackMode: .playNow)
}
OpenVideosButton(imageSystemName: "ellipsis") {
NavigationModel.shared.presentingOpenVideos = true
}
.frame(maxWidth: 40)
2022-11-12 01:39:44 +00:00
}
2022-11-11 17:50:13 +00:00
#endif
}
2022-11-12 01:39:44 +00:00
#if os(iOS)
.padding(.top, RefreshControl.navigationBarTitleDisplayMode == .inline ? 15 : 0)
#else
.padding(.top, 15)
#endif
#if os(tvOS)
.padding(.horizontal, 40)
#else
.padding(.horizontal, 15)
#endif
2022-11-11 17:50:13 +00:00
2022-11-11 20:28:40 +00:00
if !accounts.current.isNil, showFavoritesInHome {
2021-11-01 21:56:18 +00:00
#if os(tvOS)
2021-11-07 16:52:42 +00:00
ForEach(Defaults[.favorites]) { item in
FavoriteItemView(item: item, dragging: $dragging)
}
#else
#if os(iOS)
let first = favorites.first
#endif
2021-11-07 16:52:42 +00:00
ForEach(favorites) { item in
FavoriteItemView(item: item, dragging: $dragging)
#if os(macOS)
.workaroundForVerticalScrollingBug()
#endif
2021-11-01 21:56:18 +00:00
}
#endif
}
2022-11-09 13:34:04 +00:00
2022-11-18 22:39:52 +00:00
if homeRecentDocumentsItems > 0 {
VStack {
HStack {
sectionLabel("Recent Documents")
Spacer()
Button {
recentDocumentsID = UUID()
} label: {
Label("Refresh", systemImage: "arrow.clockwise")
.font(.headline)
.labelStyle(.iconOnly)
.foregroundColor(.secondary)
}
}
RecentDocumentsView(limit: homeRecentDocumentsItems)
.id(recentDocumentsID)
}
.frame(maxWidth: .infinity, alignment: .leading)
}
2022-11-11 20:28:40 +00:00
if homeHistoryItems > 0 {
VStack {
2022-11-15 11:22:27 +00:00
HStack {
2022-11-18 22:39:52 +00:00
sectionLabel("History")
2022-11-15 11:22:27 +00:00
Spacer()
Button {
navigation.presentAlert(
Alert(
title: Text("Are you sure you want to clear history of watched videos?"),
message: Text("It cannot be reverted"),
primaryButton: .destructive(Text("Clear All")) {
PlayerModel.shared.removeHistory()
historyID = UUID()
},
secondaryButton: .cancel()
)
)
} label: {
Label("Clear History", systemImage: "trash")
.font(.headline)
.labelStyle(.iconOnly)
2022-11-18 22:39:52 +00:00
.foregroundColor(.secondary)
2022-11-15 11:22:27 +00:00
}
}
2022-11-09 13:34:04 +00:00
2022-11-15 11:22:27 +00:00
.frame(maxWidth: .infinity, alignment: .leading)
2022-11-09 13:34:04 +00:00
2022-11-11 20:28:40 +00:00
HistoryView(limit: homeHistoryItems)
2022-11-15 11:22:27 +00:00
.id(historyID)
2022-11-11 20:28:40 +00:00
}
2022-11-09 13:34:04 +00:00
}
2022-11-11 17:50:13 +00:00
#if !os(tvOS)
2022-11-09 13:34:04 +00:00
Color.clear.padding(.bottom, 60)
#endif
2021-11-01 21:56:18 +00:00
}
2021-11-07 16:52:42 +00:00
.onAppear {
Defaults.observe(.favorites) { _ in
favoritesChanged.toggle()
}
.tieToLifetime(of: accounts)
}
2022-08-28 18:00:43 +00:00
2021-11-07 16:52:42 +00:00
.redrawOn(change: favoritesChanged)
2021-11-01 21:56:18 +00:00
#if os(tvOS)
.edgesIgnoringSafeArea(.horizontal)
#else
2022-11-09 13:34:04 +00:00
.navigationTitle("Home")
2021-11-01 21:56:18 +00:00
#endif
#if os(macOS)
.background(Color.secondaryBackground)
2021-11-08 16:29:35 +00:00
.frame(minWidth: 360)
2021-11-01 21:56:18 +00:00
#endif
#if os(iOS)
.navigationBarTitleDisplayMode(RefreshControl.navigationBarTitleDisplayMode)
#endif
2022-08-28 18:00:43 +00:00
#if !os(macOS)
.onReceive(NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
favoritesChanged.toggle()
}
#endif
2021-11-01 21:56:18 +00:00
}
}
2022-11-18 22:39:52 +00:00
func sectionLabel(_ label: String) -> some View {
Text(label)
#if os(tvOS)
.padding(.horizontal, 40)
#else
.padding(.horizontal, 15)
#endif
.font(.title3.bold())
.frame(maxWidth: .infinity, alignment: .leading)
.foregroundColor(.secondary)
}
2021-11-01 21:56:18 +00:00
}
2022-11-18 22:39:52 +00:00
struct Home_Previews: PreviewProvider {
2021-11-01 21:56:18 +00:00
static var previews: some View {
TabView {
2022-11-09 13:34:04 +00:00
HomeView()
.injectFixtureEnvironmentObjects()
.tabItem {
2022-11-09 13:34:04 +00:00
Label("Home", systemImage: "house")
}
}
2021-11-01 21:56:18 +00:00
}
}