mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 12:19:54 +00:00
92 lines
3.4 KiB
Swift
92 lines
3.4 KiB
Swift
//
|
|
// DeveloperView.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Evgeny on 26/03/2023.
|
|
// Copyright © 2023 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct DeveloperView: View {
|
|
@EnvironmentObject var theme: AppTheme
|
|
@AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false
|
|
@AppStorage(GROUP_DEFAULT_CONFIRM_DB_UPGRADES, store: groupDefaults) private var confirmDatabaseUpgrades = false
|
|
@State private var hintsUnchanged = hintDefaultsUnchanged()
|
|
|
|
@Environment(\.colorScheme) var colorScheme
|
|
|
|
var body: some View {
|
|
VStack {
|
|
List {
|
|
Section {
|
|
ZStack(alignment: .leading) {
|
|
Image(colorScheme == .dark ? "github_light" : "github")
|
|
.resizable()
|
|
.frame(width: 24, height: 24)
|
|
.opacity(0.5)
|
|
.colorMultiply(theme.colors.secondary)
|
|
Text("Install [SimpleX Chat for terminal](https://github.com/simplex-chat/simplex-chat)")
|
|
.padding(.leading, 36)
|
|
}
|
|
NavigationLink {
|
|
TerminalView()
|
|
} label: {
|
|
settingsRow("terminal", color: theme.colors.secondary) { Text("Chat console") }
|
|
}
|
|
settingsRow("lightbulb.max", color: theme.colors.secondary) {
|
|
Button("Reset all hints", action: resetHintDefaults)
|
|
.disabled(hintsUnchanged)
|
|
}
|
|
settingsRow("chevron.left.forwardslash.chevron.right", color: theme.colors.secondary) {
|
|
Toggle("Show developer options", isOn: $developerTools)
|
|
}
|
|
} header: {
|
|
Text("")
|
|
} footer: {
|
|
((developerTools ? Text("Show:") : Text("Hide:")) + textSpace + Text("Database IDs and Transport isolation option."))
|
|
.foregroundColor(theme.colors.secondary)
|
|
}
|
|
|
|
if developerTools {
|
|
Section {
|
|
settingsRow("internaldrive", color: theme.colors.secondary) {
|
|
Toggle("Confirm database upgrades", isOn: $confirmDatabaseUpgrades)
|
|
}
|
|
NavigationLink {
|
|
StorageView()
|
|
.navigationTitle("Storage")
|
|
.navigationBarTitleDisplayMode(.large)
|
|
} label: {
|
|
settingsRow("internaldrive", color: theme.colors.secondary) { Text("Storage") }
|
|
}
|
|
} header: {
|
|
Text("Developer options")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private func resetHintDefaults() {
|
|
for def in hintDefaults {
|
|
if let val = appDefaults[def] as? Bool {
|
|
UserDefaults.standard.set(val, forKey: def)
|
|
}
|
|
}
|
|
hintsUnchanged = true
|
|
}
|
|
}
|
|
|
|
private func hintDefaultsUnchanged() -> Bool {
|
|
hintDefaults.allSatisfy { def in
|
|
appDefaults[def] as? Bool == UserDefaults.standard.bool(forKey: def)
|
|
}
|
|
}
|
|
|
|
struct DeveloperView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
DeveloperView()
|
|
}
|
|
}
|