Sesame-iOS/Sesame/SettingsView.swift

82 lines
2.9 KiB
Swift
Raw Normal View History

import SwiftUI
2023-12-27 21:57:32 +01:00
import SwiftData
import SFSafeSymbols
struct SettingsView: View {
2023-08-14 10:39:29 +02:00
let keyManager: KeyManagement
2023-12-27 21:57:32 +01:00
@ObservedObject
var coordinator: RequestCoordinator
@Binding
var serverAddress: String
@Binding
var localAddress: String
2023-08-07 15:47:40 +02:00
var body: some View {
NavigationView {
ScrollView {
VStack(alignment: .leading, spacing: 8) {
VStack(alignment: .leading) {
Text("Server address")
.bold()
TextField("Server address", text: $serverAddress)
2023-08-07 15:47:40 +02:00
.foregroundColor(.secondary)
.padding(.leading, 8)
2023-12-27 21:57:32 +01:00
HStack {
Button("Test") {
coordinator.checkConnection(using: .throughServer)
}.padding(8)
if coordinator.state == .deviceAvailable {
Image(systemSymbol: .checkmarkCircle)
.foregroundColor(.green)
} else if coordinator.state != .notChecked {
Text(coordinator.state.description)
.font(.caption)
.foregroundStyle(.secondary)
}
}
}.padding(.vertical, 8)
VStack(alignment: .leading) {
Text("Local address")
.bold()
TextField("Local address", text: $localAddress)
2023-08-07 15:47:40 +02:00
.foregroundColor(.secondary)
.padding(.leading, 8)
}.padding(.vertical, 8)
ForEach(KeyManagement.KeyType.allCases) { keyType in
SingleKeyView(
2023-08-14 10:39:29 +02:00
keyManager: keyManager,
type: keyType)
}
}.padding()
}.onDisappear {
if !localAddress.hasSuffix("/") {
localAddress += "/"
}
}
.navigationTitle("Settings")
}
}
}
2023-12-27 21:57:32 +01:00
#Preview {
do {
let config = ModelConfiguration(isStoredInMemoryOnly: true)
let container = try ModelContainer(for: HistoryItem.self, configurations: config)
let item = HistoryItem.mock
container.mainContext.insert(item)
try container.mainContext.save()
return SettingsView(
2023-08-14 10:39:29 +02:00
keyManager: KeyManagement(),
2023-12-27 21:57:32 +01:00
coordinator: .init(modelContext: container.mainContext),
serverAddress: .constant("https://example.com"),
2023-12-12 17:33:42 +01:00
localAddress: .constant("192.168.178.42"))
2023-12-27 21:57:32 +01:00
} catch {
fatalError("Failed to create model container.")
}
}