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 {
|
2022-11-24 20:36:05 +00:00
|
|
|
@ObservedObject private var accounts = AccountsModel.shared
|
2021-11-01 21:56:18 +00:00
|
|
|
|
2023-05-25 12:28:29 +00:00
|
|
|
@State private var presentingHomeSettings = 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
|
2023-05-25 12:28:29 +00:00
|
|
|
@Default(.widgetsSettings) private var widgetsSettings
|
2022-11-18 22:39:52 +00:00
|
|
|
#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
|
2022-12-19 00:37:09 +00:00
|
|
|
@Default(.showQueueInHome) private var showQueueInHome
|
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-12-10 21:37:14 +00:00
|
|
|
ScrollView(.vertical, showsIndicators: false) {
|
2023-05-25 12:28:29 +00:00
|
|
|
VStack {
|
2023-06-07 21:19:10 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
HStack {
|
2022-11-12 01:39:44 +00:00
|
|
|
if showOpenActionsInHome {
|
2023-05-25 12:28:29 +00:00
|
|
|
AccentButton(text: "Files", imageSystemName: "folder") {
|
|
|
|
NavigationModel.shared.presentingFileImporter = true
|
|
|
|
}
|
|
|
|
AccentButton(text: "Paste", imageSystemName: "doc.on.clipboard.fill") {
|
|
|
|
OpenVideosModel.shared.openURLsFromClipboard(playbackMode: .playNow)
|
|
|
|
}
|
|
|
|
AccentButton(imageSystemName: "ellipsis") {
|
2022-11-11 20:28:40 +00:00
|
|
|
NavigationModel.shared.presentingOpenVideos = true
|
|
|
|
}
|
2023-05-25 12:28:29 +00:00
|
|
|
.frame(maxWidth: 40)
|
2022-11-12 01:39:44 +00:00
|
|
|
}
|
2023-06-07 21:19:10 +00:00
|
|
|
}
|
|
|
|
#endif
|
2023-05-25 12:28:29 +00:00
|
|
|
|
|
|
|
#if os(tvOS)
|
|
|
|
HStack {
|
2023-06-07 21:19:10 +00:00
|
|
|
if showOpenActionsInHome {
|
|
|
|
Button {
|
|
|
|
NavigationModel.shared.presentingOpenVideos = true
|
|
|
|
} label: {
|
|
|
|
Label("Open Video", systemImage: "globe")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Button {
|
|
|
|
NavigationModel.shared.presentingAccounts = true
|
|
|
|
} label: {
|
|
|
|
Label("Locations", systemImage: "globe")
|
|
|
|
}
|
2023-05-25 12:28:29 +00:00
|
|
|
Spacer()
|
|
|
|
HideWatchedButtons()
|
|
|
|
HideShortsButtons()
|
2023-06-07 21:19:10 +00:00
|
|
|
Button {
|
|
|
|
NavigationModel.shared.presentingSettings = true
|
|
|
|
} label: {
|
|
|
|
Label("Settings", systemImage: "gear")
|
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
}
|
2023-06-07 21:19:10 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
.font(.caption)
|
|
|
|
.imageScale(.small)
|
|
|
|
#endif
|
2022-12-10 21:37:14 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
.padding(.top, 15)
|
2022-12-18 23:10:05 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
.padding(.horizontal, 40)
|
|
|
|
#else
|
|
|
|
.padding(.horizontal, 15)
|
2022-12-10 21:37:14 +00:00
|
|
|
#endif
|
2022-12-18 23:10:05 +00:00
|
|
|
|
2022-12-19 00:37:09 +00:00
|
|
|
if showQueueInHome {
|
|
|
|
QueueView()
|
|
|
|
#if os(tvOS)
|
|
|
|
.padding(.horizontal, 40)
|
|
|
|
#else
|
|
|
|
.padding(.horizontal, 15)
|
|
|
|
#endif
|
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
|
|
|
|
if !accounts.current.isNil, showFavoritesInHome {
|
2023-05-25 12:28:29 +00:00
|
|
|
VStack(alignment: .leading) {
|
2022-12-22 18:36:35 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
ForEach(Defaults[.favorites]) { item in
|
|
|
|
FavoriteItemView(item: item)
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
ForEach(favorites) { item in
|
|
|
|
FavoriteItemView(item: item)
|
|
|
|
#if os(macOS)
|
|
|
|
.workaroundForVerticalScrollingBug()
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
}
|
2022-11-18 22:39:52 +00:00
|
|
|
|
2022-12-10 21:37:14 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
Color.clear.padding(.bottom, 60)
|
2021-11-01 21:56:18 +00:00
|
|
|
#endif
|
2022-12-10 21:37:14 +00:00
|
|
|
}
|
|
|
|
.onAppear {
|
|
|
|
Defaults.observe(.favorites) { _ in
|
2022-08-28 18:00:43 +00:00
|
|
|
favoritesChanged.toggle()
|
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
.tieToLifetime(of: accounts)
|
2023-05-25 12:28:29 +00:00
|
|
|
Defaults.observe(.widgetsSettings) { _ in
|
|
|
|
favoritesChanged.toggle()
|
|
|
|
}
|
|
|
|
.tieToLifetime(of: accounts)
|
2021-11-01 21:56:18 +00:00
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
|
|
|
|
.redrawOn(change: favoritesChanged)
|
|
|
|
|
|
|
|
#if os(tvOS)
|
|
|
|
.edgesIgnoringSafeArea(.horizontal)
|
|
|
|
#else
|
|
|
|
.navigationTitle("Home")
|
|
|
|
#endif
|
|
|
|
#if os(macOS)
|
|
|
|
.background(Color.secondaryBackground)
|
|
|
|
.frame(minWidth: 360)
|
2023-05-25 12:28:29 +00:00
|
|
|
.toolbar {
|
|
|
|
ToolbarItemGroup(placement: .automatic) {
|
|
|
|
HideWatchedButtons()
|
|
|
|
HideShortsButtons()
|
|
|
|
HomeSettingsButton()
|
|
|
|
}
|
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
#endif
|
|
|
|
#if os(iOS)
|
2023-05-23 17:06:49 +00:00
|
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .principal) {
|
|
|
|
homeMenu
|
|
|
|
}
|
|
|
|
}
|
2022-12-10 21:37:14 +00:00
|
|
|
#endif
|
|
|
|
#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 {
|
2022-11-18 23:06:13 +00:00
|
|
|
Text(label.localized())
|
2022-11-18 22:39:52 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
.padding(.horizontal, 40)
|
|
|
|
#else
|
|
|
|
.padding(.horizontal, 15)
|
|
|
|
#endif
|
|
|
|
.font(.title3.bold())
|
|
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
|
|
.foregroundColor(.secondary)
|
|
|
|
}
|
2023-05-23 17:06:49 +00:00
|
|
|
|
2023-05-25 12:28:29 +00:00
|
|
|
#if os(iOS)
|
2023-05-23 17:06:49 +00:00
|
|
|
var homeMenu: some View {
|
|
|
|
Menu {
|
|
|
|
Section {
|
|
|
|
HideWatchedButtons()
|
|
|
|
HideShortsButtons()
|
|
|
|
}
|
2023-05-25 12:28:29 +00:00
|
|
|
Section {
|
|
|
|
Button {
|
|
|
|
navigation.presentingHomeSettings = true
|
|
|
|
} label: {
|
|
|
|
Label("Home Settings", systemImage: "gear")
|
|
|
|
}
|
|
|
|
}
|
2023-05-23 17:06:49 +00:00
|
|
|
} label: {
|
|
|
|
HStack(spacing: 12) {
|
|
|
|
Text("Home")
|
|
|
|
.foregroundColor(.primary)
|
|
|
|
.font(.headline)
|
|
|
|
|
|
|
|
Image(systemName: "chevron.down.circle.fill")
|
|
|
|
.foregroundColor(.accentColor)
|
|
|
|
.imageScale(.small)
|
|
|
|
}
|
|
|
|
.transaction { t in t.animation = nil }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
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 {
|
2022-06-18 12:39:49 +00:00
|
|
|
TabView {
|
2023-05-23 17:06:49 +00:00
|
|
|
NavigationView {
|
|
|
|
HomeView()
|
|
|
|
.injectFixtureEnvironmentObjects()
|
|
|
|
.tabItem {
|
|
|
|
Label("Home", systemImage: "house")
|
|
|
|
}
|
|
|
|
}
|
2022-06-18 12:39:49 +00:00
|
|
|
}
|
2021-11-01 21:56:18 +00:00
|
|
|
}
|
|
|
|
}
|