2021-09-25 08:18:22 +00:00
|
|
|
import Defaults
|
|
|
|
import Foundation
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct SettingsView: View {
|
2021-09-29 14:29:17 +00:00
|
|
|
#if os(macOS)
|
|
|
|
private enum Tabs: Hashable {
|
2021-12-07 23:09:49 +00:00
|
|
|
case instances, browsing, playback, services, updates
|
2021-09-29 14:29:17 +00:00
|
|
|
}
|
|
|
|
#endif
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-12-05 17:09:25 +00:00
|
|
|
@Environment(\.colorScheme) private var colorScheme
|
|
|
|
|
2021-09-29 14:29:17 +00:00
|
|
|
#if os(iOS)
|
2021-11-28 14:37:55 +00:00
|
|
|
@Environment(\.presentationMode) private var presentationMode
|
2021-09-29 14:29:17 +00:00
|
|
|
#endif
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-11-12 20:46:15 +00:00
|
|
|
@EnvironmentObject<AccountsModel> private var accounts
|
|
|
|
|
2021-11-28 14:37:55 +00:00
|
|
|
@State private var presentingInstanceForm = false
|
|
|
|
@State private var savedFormInstanceID: Instance.ID?
|
|
|
|
|
|
|
|
@Default(.instances) private var instances
|
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
var body: some View {
|
|
|
|
#if os(macOS)
|
|
|
|
TabView {
|
|
|
|
Form {
|
2021-10-23 11:51:02 +00:00
|
|
|
InstancesSettings()
|
2021-11-12 20:46:15 +00:00
|
|
|
.environmentObject(accounts)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Instances", systemImage: "server.rack")
|
|
|
|
}
|
|
|
|
.tag(Tabs.instances)
|
|
|
|
|
2021-11-04 23:25:51 +00:00
|
|
|
Form {
|
|
|
|
BrowsingSettings()
|
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Browsing", systemImage: "list.and.film")
|
|
|
|
}
|
|
|
|
.tag(Tabs.browsing)
|
|
|
|
|
2021-10-23 12:12:53 +00:00
|
|
|
Form {
|
2021-11-03 23:00:17 +00:00
|
|
|
PlaybackSettings()
|
2021-10-23 12:12:53 +00:00
|
|
|
}
|
|
|
|
.tabItem {
|
2021-12-02 19:22:55 +00:00
|
|
|
Label("Playback", systemImage: "play.rectangle")
|
2021-10-23 12:12:53 +00:00
|
|
|
}
|
2021-11-03 23:00:17 +00:00
|
|
|
.tag(Tabs.playback)
|
2021-10-23 12:12:53 +00:00
|
|
|
|
2021-09-25 08:18:22 +00:00
|
|
|
Form {
|
2021-11-03 23:00:17 +00:00
|
|
|
ServicesSettings()
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
.tabItem {
|
2021-12-02 19:22:55 +00:00
|
|
|
Label("Services", systemImage: "puzzlepiece")
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
2021-11-03 23:00:17 +00:00
|
|
|
.tag(Tabs.services)
|
2021-12-07 23:09:49 +00:00
|
|
|
|
|
|
|
Form {
|
|
|
|
UpdatesSettings()
|
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Updates", systemImage: "gearshape.2")
|
|
|
|
}
|
|
|
|
.tag(Tabs.updates)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
.padding(20)
|
2021-11-14 23:06:01 +00:00
|
|
|
.frame(width: 400, height: 380)
|
2021-09-25 08:18:22 +00:00
|
|
|
#else
|
|
|
|
NavigationView {
|
|
|
|
List {
|
2021-09-28 18:06:05 +00:00
|
|
|
#if os(tvOS)
|
|
|
|
AccountSelectionView()
|
2021-11-07 16:52:42 +00:00
|
|
|
|
|
|
|
Section(header: SettingsHeader(text: "Favorites")) {
|
|
|
|
NavigationLink("Edit favorites...") {
|
|
|
|
EditFavorites()
|
|
|
|
}
|
|
|
|
}
|
2021-09-28 18:06:05 +00:00
|
|
|
#endif
|
2021-11-28 14:37:55 +00:00
|
|
|
|
|
|
|
Section(header: Text("Instances")) {
|
|
|
|
ForEach(instances) { instance in
|
|
|
|
AccountsNavigationLink(instance: instance)
|
|
|
|
}
|
|
|
|
addInstanceButton
|
|
|
|
}
|
|
|
|
|
2021-11-04 23:25:51 +00:00
|
|
|
BrowsingSettings()
|
2021-10-23 11:51:02 +00:00
|
|
|
PlaybackSettings()
|
2021-11-03 23:00:17 +00:00
|
|
|
ServicesSettings()
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
.navigationTitle("Settings")
|
2021-09-26 22:03:33 +00:00
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .navigationBarTrailing) {
|
|
|
|
#if !os(tvOS)
|
2021-09-28 18:06:05 +00:00
|
|
|
Button("Done") {
|
2021-11-28 14:37:55 +00:00
|
|
|
presentationMode.wrappedValue.dismiss()
|
2021-09-28 18:06:05 +00:00
|
|
|
}
|
2021-09-26 22:03:33 +00:00
|
|
|
.keyboardShortcut(.cancelAction)
|
|
|
|
#endif
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
2021-09-26 22:03:33 +00:00
|
|
|
}
|
2021-09-28 18:06:05 +00:00
|
|
|
.frame(maxWidth: 1000)
|
2021-09-26 22:03:33 +00:00
|
|
|
#if os(iOS)
|
|
|
|
.listStyle(.insetGrouped)
|
|
|
|
#endif
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
2021-11-28 14:37:55 +00:00
|
|
|
.sheet(isPresented: $presentingInstanceForm) {
|
|
|
|
InstanceForm(savedInstanceID: $savedFormInstanceID)
|
|
|
|
}
|
2021-09-28 18:06:05 +00:00
|
|
|
#if os(tvOS)
|
2021-12-05 17:09:25 +00:00
|
|
|
.background(Color.background(scheme: colorScheme))
|
2021-09-28 18:06:05 +00:00
|
|
|
#endif
|
2021-09-25 08:18:22 +00:00
|
|
|
#endif
|
|
|
|
}
|
2021-11-28 14:37:55 +00:00
|
|
|
|
|
|
|
private var addInstanceButton: some View {
|
|
|
|
Button("Add Instance...") {
|
|
|
|
presentingInstanceForm = true
|
|
|
|
}
|
|
|
|
}
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct SettingsView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
SettingsView()
|
2021-09-29 11:45:00 +00:00
|
|
|
.injectFixtureEnvironmentObjects()
|
2021-09-25 08:18:22 +00:00
|
|
|
#if os(macOS)
|
|
|
|
.frame(width: 600, height: 300)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|