yattee/Shared/Settings/SettingsView.swift

102 lines
2.8 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)
@Environment(\.dismiss) private var dismiss
#endif
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-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)
2021-09-26 22:03:33 +00:00
.frame(width: 400, height: 310)
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-10-23 11:51:02 +00:00
InstancesSettings()
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") {
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
}
#if os(tvOS)
2021-11-08 16:29:35 +00:00
.background(.black)
#endif
2021-09-25 08:18:22 +00:00
#endif
}
}
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
}
}