yattee/Shared/Settings/SettingsView.swift

126 lines
3.7 KiB
Swift
Raw Normal View History

2021-09-25 08:18:22 +00:00
import Defaults
import Foundation
import SwiftUI
struct SettingsView: View {
#if os(macOS)
private enum Tabs: Hashable {
2021-11-04 23:25:51 +00:00
case instances, browsing, playback, services
}
#endif
2021-09-25 08:18:22 +00:00
#if os(iOS)
2021-11-28 14:37:55 +00:00
@Environment(\.presentationMode) private var presentationMode
#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-11-03 23:00:17 +00:00
Label("Playback", systemImage: "play.rectangle.on.rectangle.fill")
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-11-03 23:00:17 +00:00
Label("Services", systemImage: "puzzlepiece.extension")
2021-09-25 08:18:22 +00:00
}
2021-11-03 23:00:17 +00:00
.tag(Tabs.services)
2021-09-25 08:18:22 +00:00
}
.padding(20)
.frame(width: 400, height: 380)
2021-09-25 08:18:22 +00:00
#else
NavigationView {
List {
#if os(tvOS)
AccountSelectionView()
2021-11-07 16:52:42 +00:00
Section(header: SettingsHeader(text: "Favorites")) {
NavigationLink("Edit favorites...") {
EditFavorites()
}
}
#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)
Button("Done") {
2021-11-28 14:37:55 +00:00
presentationMode.wrappedValue.dismiss()
}
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
}
.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)
}
#if os(tvOS)
2021-11-28 14:37:55 +00:00
.background(Color.black)
#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
}
}