2021-09-25 13:48:22 +05:30
|
|
|
import Defaults
|
|
|
|
import Foundation
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
struct SettingsView: View {
|
2021-09-29 19:59:17 +05:30
|
|
|
#if os(macOS)
|
|
|
|
private enum Tabs: Hashable {
|
2021-11-05 04:55:51 +05:30
|
|
|
case instances, browsing, playback, services
|
2021-09-29 19:59:17 +05:30
|
|
|
}
|
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
|
2021-09-29 19:59:17 +05:30
|
|
|
#if os(iOS)
|
|
|
|
@Environment(\.dismiss) private var dismiss
|
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
#if os(macOS)
|
|
|
|
TabView {
|
|
|
|
Form {
|
2021-10-23 17:21:02 +05:30
|
|
|
InstancesSettings()
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Instances", systemImage: "server.rack")
|
|
|
|
}
|
|
|
|
.tag(Tabs.instances)
|
|
|
|
|
2021-11-05 04:55:51 +05:30
|
|
|
Form {
|
|
|
|
BrowsingSettings()
|
|
|
|
}
|
|
|
|
.tabItem {
|
|
|
|
Label("Browsing", systemImage: "list.and.film")
|
|
|
|
}
|
|
|
|
.tag(Tabs.browsing)
|
|
|
|
|
2021-10-23 17:42:53 +05:30
|
|
|
Form {
|
2021-11-04 04:30:17 +05:30
|
|
|
PlaybackSettings()
|
2021-10-23 17:42:53 +05:30
|
|
|
}
|
|
|
|
.tabItem {
|
2021-11-04 04:30:17 +05:30
|
|
|
Label("Playback", systemImage: "play.rectangle.on.rectangle.fill")
|
2021-10-23 17:42:53 +05:30
|
|
|
}
|
2021-11-04 04:30:17 +05:30
|
|
|
.tag(Tabs.playback)
|
2021-10-23 17:42:53 +05:30
|
|
|
|
2021-09-25 13:48:22 +05:30
|
|
|
Form {
|
2021-11-04 04:30:17 +05:30
|
|
|
ServicesSettings()
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
|
|
|
.tabItem {
|
2021-11-04 04:30:17 +05:30
|
|
|
Label("Services", systemImage: "puzzlepiece.extension")
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
2021-11-04 04:30:17 +05:30
|
|
|
.tag(Tabs.services)
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
|
|
|
.padding(20)
|
2021-09-27 03:33:33 +05:30
|
|
|
.frame(width: 400, height: 310)
|
2021-09-25 13:48:22 +05:30
|
|
|
#else
|
|
|
|
NavigationView {
|
|
|
|
List {
|
2021-09-28 23:36:05 +05:30
|
|
|
#if os(tvOS)
|
|
|
|
AccountSelectionView()
|
2021-11-07 22:22:42 +05:30
|
|
|
|
|
|
|
Section(header: SettingsHeader(text: "Favorites")) {
|
|
|
|
NavigationLink("Edit favorites...") {
|
|
|
|
EditFavorites()
|
|
|
|
}
|
|
|
|
}
|
2021-09-28 23:36:05 +05:30
|
|
|
#endif
|
2021-10-23 17:21:02 +05:30
|
|
|
InstancesSettings()
|
2021-11-05 04:55:51 +05:30
|
|
|
BrowsingSettings()
|
2021-10-23 17:21:02 +05:30
|
|
|
PlaybackSettings()
|
2021-11-04 04:30:17 +05:30
|
|
|
ServicesSettings()
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
|
|
|
.navigationTitle("Settings")
|
2021-09-27 03:33:33 +05:30
|
|
|
.toolbar {
|
|
|
|
ToolbarItem(placement: .navigationBarTrailing) {
|
|
|
|
#if !os(tvOS)
|
2021-09-28 23:36:05 +05:30
|
|
|
Button("Done") {
|
|
|
|
dismiss()
|
|
|
|
}
|
2021-09-27 03:33:33 +05:30
|
|
|
.keyboardShortcut(.cancelAction)
|
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
2021-09-27 03:33:33 +05:30
|
|
|
}
|
2021-09-28 23:36:05 +05:30
|
|
|
.frame(maxWidth: 1000)
|
2021-09-27 03:33:33 +05:30
|
|
|
#if os(iOS)
|
|
|
|
.listStyle(.insetGrouped)
|
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
}
|
2021-09-28 23:36:05 +05:30
|
|
|
#if os(tvOS)
|
2021-11-08 21:59:35 +05:30
|
|
|
.background(.black)
|
2021-09-28 23:36:05 +05:30
|
|
|
#endif
|
2021-09-25 13:48:22 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|