1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 13:50:32 +05:30
yattee/Shared/Settings/SettingsView.swift

367 lines
12 KiB
Swift
Raw Normal View History

2021-09-25 13:48:22 +05:30
import Defaults
import Foundation
import SwiftUI
2024-05-16 21:58:32 +05:30
2021-09-25 13:48:22 +05:30
struct SettingsView: View {
2022-07-04 03:43:06 +05:30
static let matrixURL = URL(string: "https://tinyurl.com/matrix-yattee")!
static let discordURL = URL(string: "https://yattee.stream/discord")!
#if os(macOS)
private enum Tabs: Hashable {
2024-02-02 04:24:16 +05:30
case browsing, player, controls, quality, history, sponsorBlock, locations, advanced, importExport, help
}
2022-01-06 20:32:53 +05:30
@State private var selection: Tabs = .browsing
#endif
2021-09-25 13:48:22 +05:30
@Environment(\.colorScheme) private var colorScheme
#if os(iOS)
2021-11-28 20:07:55 +05:30
@Environment(\.presentationMode) private var presentationMode
#endif
2021-09-25 13:48:22 +05:30
@ObservedObject private var accounts = AccountsModel.shared
@ObservedObject private var model = SettingsModel.shared
2021-11-28 20:07:55 +05:30
@Default(.instances) private var instances
2024-02-02 04:24:16 +05:30
@State private var filesToShare = []
@ObservedObject private var navigation = NavigationModel.shared
@ObservedObject private var settingsModel = SettingsModel.shared
2021-09-25 13:48:22 +05:30
var body: some View {
settings
.modifier(ImportSettingsSheetViewModifier(isPresented: $settingsModel.presentingSettingsImportSheet, settingsFile: $settingsModel.settingsImportURL))
2024-02-02 04:24:16 +05:30
#if !os(tvOS)
.modifier(ImportSettingsFileImporterViewModifier(isPresented: $navigation.presentingSettingsFileImporter))
2024-02-02 04:24:16 +05:30
#endif
2022-12-22 01:46:53 +05:30
#if os(iOS)
2024-02-02 04:24:16 +05:30
.backport
.scrollDismissesKeyboardInteractively()
2022-12-22 01:46:53 +05:30
#endif
2024-02-02 04:24:16 +05:30
.alert(isPresented: $model.presentingAlert) { model.alert }
}
var settings: some View {
2021-09-25 13:48:22 +05:30
#if os(macOS)
2022-01-06 20:32:53 +05:30
TabView(selection: $selection) {
2022-11-12 01:58:40 +05:30
Form {
BrowsingSettings()
}
.tabItem {
Label("Browsing", systemImage: "list.and.film")
2021-11-05 04:55:51 +05:30
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.browsing)
2021-11-05 04:55:51 +05:30
Form {
2022-01-06 20:32:53 +05:30
PlayerSettings()
}
.tabItem {
2022-01-06 20:32:53 +05:30
Label("Player", systemImage: "play.rectangle")
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.player)
2022-12-19 18:05:37 +05:30
Form {
PlayerControlsSettings()
}
.tabItem {
Label("Controls", systemImage: "hand.tap")
}
.tag(Tabs.controls)
2022-08-14 22:36:22 +05:30
Form {
QualitySettings()
}
.tabItem {
Label("Quality", systemImage: "4k.tv")
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.quality)
2022-08-14 22:36:22 +05:30
2021-10-23 17:42:53 +05:30
Form {
2022-01-06 20:32:53 +05:30
HistorySettings()
2021-10-23 17:42:53 +05:30
}
.tabItem {
2022-01-06 20:32:53 +05:30
Label("History", systemImage: "clock.arrow.circlepath")
2021-10-23 17:42:53 +05:30
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.history)
2021-10-23 17:42:53 +05:30
2022-11-12 01:04:20 +05:30
if !accounts.isEmpty {
Form {
SponsorBlockSettings()
}
.tabItem {
Label("SponsorBlock", systemImage: "dollarsign.circle")
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.sponsorBlock)
2021-09-25 13:48:22 +05:30
}
2022-11-13 16:44:05 +05:30
Form {
LocationsSettings()
}
.tabItem {
Label("Locations", systemImage: "globe")
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.locations)
2021-12-08 04:39:49 +05:30
Group {
AdvancedSettings()
}
.tabItem {
Label("Advanced", systemImage: "wrench.and.screwdriver")
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.advanced)
2024-02-02 04:24:16 +05:30
Group {
ExportSettings()
}
.tabItem {
Label("Export", systemImage: "square.and.arrow.up")
}
.tag(Tabs.importExport)
2022-01-06 20:32:53 +05:30
Form {
Help()
}
.tabItem {
Label("Help", systemImage: "questionmark.circle")
}
2022-12-19 00:09:03 +05:30
.tag(Tabs.help)
2021-09-25 13:48:22 +05:30
}
.padding(20)
2024-02-02 04:24:16 +05:30
.frame(width: 700, height: windowHeight)
2021-09-25 13:48:22 +05:30
#else
2022-08-14 22:36:22 +05:30
NavigationView {
settingsList
2022-11-12 07:09:44 +05:30
.navigationTitle("Settings")
}
#endif
}
2021-11-28 20:07:55 +05:30
2023-09-10 23:38:42 +05:30
struct SettingsLabel: LabelStyle {
func makeBody(configuration: Configuration) -> some View {
#if os(tvOS)
Label {
configuration.title.padding(.leading, 10)
} icon: {
configuration.icon
}
#else
Label(configuration)
#endif
}
}
#if !os(macOS)
var settingsList: some View {
List {
#if os(tvOS)
2022-11-12 01:04:20 +05:30
if !accounts.isEmpty {
2022-12-12 03:45:56 +05:30
Section(header: Text("Current Location")) {
NavigationLink(destination: AccountsView()) {
if let account = accounts.current {
Text(account.isPublic ? account.description : "\(account.description)\(account.instance.shortDescription)")
} else {
Text("Not Selected")
}
}
}
2022-11-12 01:04:20 +05:30
Divider()
}
#endif
2022-01-06 20:32:53 +05:30
Section {
2022-11-12 01:58:40 +05:30
NavigationLink {
BrowsingSettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("Browsing", systemImage: "list.and.film").labelStyle(SettingsLabel())
}
2022-01-06 20:32:53 +05:30
NavigationLink {
PlayerSettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("Player", systemImage: "play.rectangle").labelStyle(SettingsLabel())
2022-01-06 20:32:53 +05:30
}
2022-12-19 18:05:37 +05:30
NavigationLink {
PlayerControlsSettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("Controls", systemImage: "hand.tap").labelStyle(SettingsLabel())
2022-12-19 18:05:37 +05:30
}
2022-08-14 22:36:22 +05:30
NavigationLink {
QualitySettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("Quality", systemImage: "4k.tv").labelStyle(SettingsLabel())
2022-08-14 22:36:22 +05:30
}
NavigationLink {
HistorySettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("History", systemImage: "clock.arrow.circlepath").labelStyle(SettingsLabel())
}
2022-11-12 01:04:20 +05:30
if !accounts.isEmpty {
NavigationLink {
SponsorBlockSettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("SponsorBlock", systemImage: "dollarsign.circle").labelStyle(SettingsLabel())
2022-11-12 01:04:20 +05:30
}
2022-01-06 20:32:53 +05:30
}
2022-11-13 16:44:05 +05:30
NavigationLink {
LocationsSettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("Locations", systemImage: "globe").labelStyle(SettingsLabel())
2022-11-13 16:44:05 +05:30
}
NavigationLink {
AdvancedSettings()
} label: {
2023-09-10 23:38:42 +05:30
Label("Advanced", systemImage: "wrench.and.screwdriver").labelStyle(SettingsLabel())
}
2021-09-25 13:48:22 +05:30
}
2023-09-09 21:50:44 +05:30
#if os(tvOS)
.padding(.horizontal, 20)
#endif
2024-02-02 04:24:16 +05:30
importView
2022-07-04 04:09:05 +05:30
Section(footer: helpFooter) {
NavigationLink {
Help()
} label: {
2023-09-10 23:38:42 +05:30
Label("Help", systemImage: "questionmark.circle").labelStyle(SettingsLabel())
2021-09-25 13:48:22 +05:30
}
2021-09-27 03:33:33 +05:30
}
2023-09-09 21:50:44 +05:30
#if os(tvOS)
.padding(.horizontal, 20)
#endif
2022-07-04 03:43:06 +05:30
#if !os(tvOS)
Section(header: Text("Contact"), footer: versionString) {
Link(destination: Self.discordURL) {
HStack {
Image("Discord")
.resizable()
.renderingMode(.template)
.frame(maxWidth: 30, maxHeight: 30)
2023-09-10 23:37:24 +05:30
.padding(.trailing, 6)
2022-07-04 03:43:06 +05:30
Text("Discord Server")
}
}
Link(destination: Self.matrixURL) {
HStack {
Image("Matrix")
.resizable()
.renderingMode(.template)
.frame(maxWidth: 30, maxHeight: 30)
2023-09-10 23:37:24 +05:30
.padding(.trailing, 6)
2022-07-04 03:43:06 +05:30
Text("Matrix Chat")
}
}
}
#endif
2021-09-25 13:48:22 +05:30
}
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
#if !os(tvOS)
Button("Done") {
presentationMode.wrappedValue.dismiss()
}
.keyboardShortcut(.cancelAction)
#endif
}
2021-11-28 20:07:55 +05:30
}
.frame(maxWidth: 1000)
#if os(iOS)
.listStyle(.insetGrouped)
#endif
}
#endif
2021-11-28 20:07:55 +05:30
2024-02-02 04:24:16 +05:30
var importView: some View {
Section {
#if os(tvOS)
NavigationLink(destination: LazyView(ImportSettings())) {
Label("Import Settings", systemImage: "square.and.arrow.down")
.labelStyle(SettingsLabel())
}
.padding(.horizontal, 20)
#else
Button(action: importSettings) {
Label("Import Settings...", systemImage: "square.and.arrow.down")
.frame(maxWidth: .infinity, alignment: .leading)
.contentShape(Rectangle())
}
.foregroundColor(.accentColor)
.buttonStyle(.plain)
2024-02-02 04:24:16 +05:30
NavigationLink(destination: LazyView(ExportSettings())) {
Label("Export Settings", systemImage: "square.and.arrow.up")
.frame(maxWidth: .infinity, alignment: .leading)
.contentShape(Rectangle())
}
#endif
2024-02-02 04:24:16 +05:30
}
}
func importSettings() {
navigation.presentingSettingsFileImporter = true
}
2022-01-06 20:32:53 +05:30
#if os(macOS)
private var windowHeight: Double {
switch selection {
case .browsing:
return 800
2022-01-06 20:32:53 +05:30
case .player:
return 800
2022-12-19 18:05:37 +05:30
case .controls:
2023-04-22 22:52:13 +05:30
return 920
2022-08-14 22:36:22 +05:30
case .quality:
return 420
2022-01-06 20:32:53 +05:30
case .history:
return 600
2022-01-06 20:32:53 +05:30
case .sponsorBlock:
return 970
2022-11-13 16:44:05 +05:30
case .locations:
return 600
case .advanced:
return 550
2024-02-02 04:24:16 +05:30
case .importExport:
return 580
2022-01-06 20:32:53 +05:30
case .help:
return 650
2022-01-06 20:32:53 +05:30
}
}
#endif
2022-07-04 04:09:05 +05:30
var helpFooter: some View {
#if os(tvOS)
versionString
#else
EmptyView()
#endif
}
2022-01-06 20:32:53 +05:30
private var versionString: some View {
Text("Yattee \(YatteeApp.version) (build \(YatteeApp.build))")
#if os(tvOS)
.foregroundColor(.secondary)
#endif
}
2021-09-25 13:48:22 +05:30
}
struct SettingsView_Previews: PreviewProvider {
static var previews: some View {
SettingsView()
2021-09-29 17:15:00 +05:30
.injectFixtureEnvironmentObjects()
2021-09-25 13:48:22 +05:30
#if os(macOS)
.frame(width: 600, height: 300)
2022-11-11 20:49:14 +05:30
#else
.navigationViewStyle(.stack)
2021-09-25 13:48:22 +05:30
#endif
}
}