| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import CoreData
- import SwiftUI
- import Swinject
- extension NightscoutConfig {
- struct RootView: BaseView {
- let resolver: Resolver
- @StateObject var state = StateModel()
- @State var importAlert: Alert?
- @State var isImportAlertPresented = false
- @State var importedHasRun = false
- @FetchRequest(
- entity: ImportError.entity(),
- sortDescriptors: [NSSortDescriptor(key: "date", ascending: false)], predicate: NSPredicate(
- format: "date > %@", Date().addingTimeInterval(-1.minutes.timeInterval) as NSDate
- )
- ) var fetchedErrors: FetchedResults<ImportError>
- private var portFormater: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.allowsFloats = false
- return formatter
- }
- var body: some View {
- Form {
- Section {
- TextField("URL", text: $state.url)
- .disableAutocorrection(true)
- .textContentType(.URL)
- .autocapitalization(.none)
- .keyboardType(.URL)
- SecureField("API secret", text: $state.secret)
- .disableAutocorrection(true)
- .autocapitalization(.none)
- .textContentType(.password)
- .keyboardType(.asciiCapable)
- if !state.message.isEmpty {
- Text(state.message)
- }
- if state.connecting {
- HStack {
- Text("Connecting...")
- Spacer()
- ProgressView()
- }
- }
- }
- Section {
- Button("Connect") { state.connect() }
- .disabled(state.url.isEmpty || state.connecting)
- Button("Delete") { state.delete() }.foregroundColor(.red).disabled(state.connecting)
- }
- Section {
- Toggle("Upload", isOn: $state.isUploadEnabled)
- if state.isUploadEnabled {
- Toggle("Statistics", isOn: $state.uploadStats)
- Toggle("Glucose", isOn: $state.uploadGlucose)
- }
- } header: {
- Text("Allow Uploads")
- }
- Section {
- Button("Import settings from Nightscout") {
- importAlert = Alert(
- title: Text("Import settings?"),
- message: Text(
- "\n" +
- NSLocalizedString(
- "This will replace some or all of your current pump settings. Are you sure you want to import profile settings from Nightscout?",
- comment: "Profile Import Alert"
- ) +
- "\n"
- ),
- primaryButton: .destructive(
- Text("Yes, Import"),
- action: {
- state.importSettings()
- importedHasRun = true
- }
- ),
- secondaryButton: .cancel()
- )
- isImportAlertPresented.toggle()
- }.disabled(state.url.isEmpty || state.connecting)
- } header: { Text("Import from Nightscout") }
- .alert(isPresented: $importedHasRun) {
- Alert(
- title: Text((fetchedErrors.first?.error ?? "").count < 4 ? "Settings imported" : "Import Error"),
- message: Text(
- (fetchedErrors.first?.error ?? "").count < 4 ?
- NSLocalizedString(
- "\nNow please verify all of your new settings thoroughly:\n\n* Basal Settings\n * Carb Ratios\n * Glucose Targets\n * Insulin Sensitivities\n * DIA\n\n in iAPS Settings > Configuration.\n\nBad or invalid profile settings could have disatrous effects.",
- comment: "Imported Profiles Alert"
- ) :
- NSLocalizedString(fetchedErrors.first?.error ?? "", comment: "Import Error")
- ),
- primaryButton: .destructive(
- Text("OK")
- ),
- secondaryButton: .cancel()
- )
- }
- Section {
- Toggle("Use local glucose server", isOn: $state.useLocalSource)
- HStack {
- Text("Port")
- DecimalTextField("", value: $state.localPort, formatter: portFormater)
- }
- } header: { Text("Local glucose source") }
- Section {
- Button("Backfill glucose") { state.backfillGlucose() }
- .disabled(state.url.isEmpty || state.connecting || state.backfilling)
- }
- Section {
- Toggle("Remote control", isOn: $state.allowAnnouncements)
- } header: { Text("Allow Remote control of iAPS") }
- }
- .onAppear(perform: configureView)
- .navigationBarTitle("Nightscout Config")
- .navigationBarTitleDisplayMode(.automatic)
- .alert(isPresented: $isImportAlertPresented) {
- importAlert!
- }
- }
- }
- }
|