|
|
@@ -1,433 +0,0 @@
|
|
|
-import CoreData
|
|
|
-import SwiftUI
|
|
|
-import Swinject
|
|
|
-
|
|
|
-extension AddTempTarget {
|
|
|
- struct RootView: BaseView {
|
|
|
- let resolver: Resolver
|
|
|
- @StateObject var state = StateModel()
|
|
|
- @State private var isPromptPresented = false
|
|
|
- @State private var isRemoveAlertPresented = false
|
|
|
- @State private var removeAlert: Alert?
|
|
|
- @State private var isEditing = false
|
|
|
- @State private var selectedPreset: TempTarget?
|
|
|
- @State private var isEditSheetPresented = false
|
|
|
-
|
|
|
- @FetchRequest(
|
|
|
- entity: TempTargetsSlider.entity(),
|
|
|
- sortDescriptors: [NSSortDescriptor(key: "date", ascending: false)]
|
|
|
- ) var isEnabledArray: FetchedResults<TempTargetsSlider>
|
|
|
-
|
|
|
- @Environment(\.colorScheme) var colorScheme
|
|
|
-
|
|
|
- private var formatter: NumberFormatter {
|
|
|
- let formatter = NumberFormatter()
|
|
|
- formatter.numberStyle = .decimal
|
|
|
- formatter.maximumFractionDigits = 1
|
|
|
- return formatter
|
|
|
- }
|
|
|
-
|
|
|
- private var color: LinearGradient {
|
|
|
- colorScheme == .dark ? LinearGradient(
|
|
|
- gradient: Gradient(colors: [
|
|
|
- Color.bgDarkBlue,
|
|
|
- Color.bgDarkerDarkBlue
|
|
|
- ]),
|
|
|
- startPoint: .top,
|
|
|
- endPoint: .bottom
|
|
|
- )
|
|
|
- :
|
|
|
- LinearGradient(
|
|
|
- gradient: Gradient(colors: [Color.gray.opacity(0.1)]),
|
|
|
- startPoint: .top,
|
|
|
- endPoint: .bottom
|
|
|
- )
|
|
|
-
|
|
|
- private var displayString: String {
|
|
|
- guard let preset = selectedPreset else { return "" }
|
|
|
- var low = preset.targetBottom
|
|
|
- var high = preset.targetBottom // change to only use targetBottom instead of targetTop
|
|
|
- if state.units == .mmolL {
|
|
|
- low = low?.asMmolL
|
|
|
- high = high?.asMmolL
|
|
|
- }
|
|
|
-
|
|
|
- let formattedLow = low.flatMap { formatter.string(from: $0 as NSNumber) } ?? ""
|
|
|
- let formattedDuration = formatter.string(from: preset.duration as NSNumber) ?? ""
|
|
|
-
|
|
|
- return "\(formattedLow) \(state.units.rawValue) for \(formattedDuration) min"
|
|
|
- }
|
|
|
-
|
|
|
- var body: some View {
|
|
|
- Form {
|
|
|
- if !state.presets.isEmpty {
|
|
|
- Section(header: Text("Presets")) {
|
|
|
- ForEach(state.presets) { preset in
|
|
|
- presetView(for: preset)
|
|
|
-<<<<<<< HEAD
|
|
|
- }
|
|
|
- }.listRowBackground(Color.chart)
|
|
|
- }
|
|
|
-
|
|
|
- HStack {
|
|
|
- Text("Experimental")
|
|
|
- Toggle(isOn: $state.viewPercantage) {}.controlSize(.mini)
|
|
|
- Image(systemName: "figure.highintensity.intervaltraining")
|
|
|
- Image(systemName: "fork.knife")
|
|
|
- }.listRowBackground(Color.chart)
|
|
|
-
|
|
|
- if state.viewPercantage {
|
|
|
- Section {
|
|
|
- VStack {
|
|
|
- Text("\(state.percentage.formatted(.number)) % Insulin")
|
|
|
- .foregroundColor(isEditing ? .orange : .blue)
|
|
|
- .font(.largeTitle)
|
|
|
- .padding(.vertical)
|
|
|
- Slider(
|
|
|
- value: $state.percentage,
|
|
|
- in: 15 ...
|
|
|
- min(Double(state.maxValue * 100), 200),
|
|
|
- step: 1,
|
|
|
- onEditingChanged: { editing in
|
|
|
- isEditing = editing
|
|
|
- }
|
|
|
- )
|
|
|
- // Only display target slider when not 100 %
|
|
|
- if state.percentage != 100 {
|
|
|
- Spacer()
|
|
|
- Divider()
|
|
|
- Text(
|
|
|
- (
|
|
|
- state
|
|
|
- .units == .mmolL ?
|
|
|
- "\(state.computeTarget().asMmolL.formatted(.number.grouping(.never).rounded().precision(.fractionLength(1)))) mmol/L" :
|
|
|
- "\(state.computeTarget().formatted(.number.grouping(.never).rounded().precision(.fractionLength(0)))) mg/dl"
|
|
|
- )
|
|
|
- + NSLocalizedString(" Target Glucose", comment: "")
|
|
|
- )
|
|
|
- .foregroundColor(.green)
|
|
|
- .padding(.vertical)
|
|
|
-
|
|
|
- Slider(
|
|
|
- value: $state.hbt,
|
|
|
- in: 101 ... 295,
|
|
|
- step: 1
|
|
|
- ).accentColor(.green)
|
|
|
- }
|
|
|
- }
|
|
|
- }.listRowBackground(Color.chart)
|
|
|
- } else {
|
|
|
- Section(header: Text("Custom")) {
|
|
|
- HStack {
|
|
|
- Text("Target")
|
|
|
- Spacer()
|
|
|
- TextFieldWithToolBar(text: $state.low, placeholder: "0", numberFormatter: formatter)
|
|
|
- Text(state.units.rawValue).foregroundColor(.secondary)
|
|
|
- }
|
|
|
- HStack {
|
|
|
- Text("Duration")
|
|
|
- Spacer()
|
|
|
- TextFieldWithToolBar(text: $state.duration, placeholder: "0", numberFormatter: formatter)
|
|
|
- Text("minutes").foregroundColor(.secondary)
|
|
|
- }
|
|
|
- DatePicker("Date", selection: $state.date)
|
|
|
- Button { isPromptPresented = true }
|
|
|
- label: { Text("Save as preset") }
|
|
|
- }.listRowBackground(Color.chart)
|
|
|
- }
|
|
|
- if state.viewPercantage {
|
|
|
- Section {
|
|
|
- HStack {
|
|
|
- Text("Duration")
|
|
|
- Spacer()
|
|
|
- TextFieldWithToolBar(text: $state.duration, placeholder: "0", numberFormatter: formatter)
|
|
|
- Text("minutes").foregroundColor(.secondary)
|
|
|
- }
|
|
|
- DatePicker("Date", selection: $state.date)
|
|
|
- Button { isPromptPresented = true }
|
|
|
- label: { Text("Save as preset") }
|
|
|
- .disabled(state.duration == 0)
|
|
|
- }.listRowBackground(Color.chart)
|
|
|
-=======
|
|
|
- .swipeActions {
|
|
|
- Button(role: .none, action: {
|
|
|
- removeAlert = Alert(
|
|
|
- title: Text("Are you sure?"),
|
|
|
- message: Text("Delete preset \n\(preset.displayName)?"),
|
|
|
- primaryButton: .destructive(Text("Delete"), action: {
|
|
|
- state.removePreset(id: preset.id)
|
|
|
- isRemoveAlertPresented = false
|
|
|
- }),
|
|
|
- secondaryButton: .cancel()
|
|
|
- )
|
|
|
- isRemoveAlertPresented = true
|
|
|
- }) {
|
|
|
- Label("Delete", systemImage: "trash")
|
|
|
- }.tint(.red)
|
|
|
- Button {
|
|
|
- selectedPreset = preset
|
|
|
- state.newPresetName = preset.displayName
|
|
|
- state.low = state.units == .mmolL ? preset.targetBottom?.asMmolL ?? 0 : preset
|
|
|
- .targetBottom ?? 0
|
|
|
- state.duration = preset.duration
|
|
|
- state.date = preset.date as? Date ?? Date()
|
|
|
- isEditSheetPresented = true
|
|
|
- } label: {
|
|
|
- Label("Edit", systemImage: "square.and.pencil")
|
|
|
- }
|
|
|
- .tint(.blue)
|
|
|
- }
|
|
|
- .alert(isPresented: $isRemoveAlertPresented) {
|
|
|
- removeAlert!
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
->>>>>>> 9672da256c317a314acc76d6e4f6e82cc174d133
|
|
|
- }
|
|
|
-
|
|
|
- settingsSection(header: "Custom")
|
|
|
-
|
|
|
- DatePicker("Date", selection: $state.date)
|
|
|
- Button { isPromtPresented = true }
|
|
|
- label: { Text("Save as preset") }
|
|
|
- .disabled(state.duration == 0)
|
|
|
-
|
|
|
- Section {
|
|
|
- Button { state.enact() }
|
|
|
- label: { Text("Enact") }
|
|
|
- .disabled(state.duration == 0)
|
|
|
- Button { state.cancel() }
|
|
|
- label: { Text("Cancel Temp Target") }
|
|
|
-<<<<<<< HEAD
|
|
|
- }.listRowBackground(Color.chart)
|
|
|
- }.scrollContentBackground(.hidden).background(color)
|
|
|
- .popover(isPresented: $isPromptPresented) {
|
|
|
- Form {
|
|
|
- Section(header: Text("Enter preset name")) {
|
|
|
- TextField("Name", text: $state.newPresetName)
|
|
|
- Button {
|
|
|
- state.save()
|
|
|
- isPromptPresented = false
|
|
|
- }
|
|
|
- label: { Text("Save") }
|
|
|
- Button { isPromptPresented = false }
|
|
|
- label: { Text("Cancel") }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .onAppear {
|
|
|
- configureView()
|
|
|
- state.hbt = isEnabledArray.first?.hbt ?? 160
|
|
|
- }
|
|
|
- .navigationTitle("Enact Temp Target")
|
|
|
- .navigationBarTitleDisplayMode(.inline)
|
|
|
- .toolbar {
|
|
|
- ToolbarItem(placement: .navigationBarLeading) {
|
|
|
- Button("Close") {
|
|
|
- state.hideModal()
|
|
|
-=======
|
|
|
- }
|
|
|
- }
|
|
|
- .popover(isPresented: $isPromtPresented) {
|
|
|
- Form {
|
|
|
- Section(header: Text("Enter preset name")) {
|
|
|
- TextField("Name", text: $state.newPresetName)
|
|
|
- }
|
|
|
- Section {
|
|
|
- Button {
|
|
|
- state.save()
|
|
|
- isPromtPresented = false
|
|
|
->>>>>>> 9672da256c317a314acc76d6e4f6e82cc174d133
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-<<<<<<< HEAD
|
|
|
-=======
|
|
|
- }
|
|
|
- .sheet(isPresented: $isEditSheetPresented) {
|
|
|
- editPresetPopover()
|
|
|
- .padding()
|
|
|
- }
|
|
|
- .onAppear {
|
|
|
- configureView()
|
|
|
- state.hbt = isEnabledArray.first?.hbt ?? 160
|
|
|
- }
|
|
|
- .navigationTitle("Enact Temp Target")
|
|
|
- .navigationBarTitleDisplayMode(.automatic)
|
|
|
- .navigationBarItems(leading: Button("Close", action: state.hideModal))
|
|
|
->>>>>>> 9672da256c317a314acc76d6e4f6e82cc174d133
|
|
|
- }
|
|
|
-
|
|
|
- @ViewBuilder func settingsSection(header: String) -> some View {
|
|
|
- HStack {
|
|
|
- Text("Experimental")
|
|
|
- Toggle(isOn: $state.viewPercantage) {}
|
|
|
- .controlSize(.mini)
|
|
|
- .onChange(of: state.viewPercantage) { newValue in
|
|
|
- if newValue {
|
|
|
- guard let selectedPreset = selectedPreset,
|
|
|
- let targetBottom = selectedPreset.targetBottom else { return }
|
|
|
- let computedPercentage = state.computePercentage(target: targetBottom)
|
|
|
- state.percentage = Double(truncating: computedPercentage as NSNumber)
|
|
|
- }
|
|
|
- }
|
|
|
- Image(systemName: "figure.highintensity.intervaltraining")
|
|
|
- Image(systemName: "fork.knife")
|
|
|
- }
|
|
|
-
|
|
|
- if state.viewPercantage {
|
|
|
- Section {
|
|
|
- VStack {
|
|
|
- Text("\(state.percentage.formatted(.number)) % Insulin")
|
|
|
- .foregroundColor(isEditing ? .orange : .blue)
|
|
|
- .font(.largeTitle)
|
|
|
- .padding(.vertical)
|
|
|
- Slider(
|
|
|
- value: $state.percentage,
|
|
|
- in: 15 ...
|
|
|
- min(Double(state.maxValue * 100), 200),
|
|
|
- step: 1,
|
|
|
- onEditingChanged: { editing in
|
|
|
- isEditing = editing
|
|
|
- }
|
|
|
- )
|
|
|
- HStack {}
|
|
|
- // Only display target slider when not 100 %
|
|
|
- if state.percentage != 100 {
|
|
|
- Spacer()
|
|
|
- Divider()
|
|
|
- Text(
|
|
|
- (
|
|
|
- state
|
|
|
- .units == .mmolL ?
|
|
|
- "\(state.computeTarget().asMmolL.formatted(.number.grouping(.never).rounded().precision(.fractionLength(1)))) mmol/L" :
|
|
|
- "\(state.computeTarget().formatted(.number.grouping(.never).rounded().precision(.fractionLength(0)))) mg/dl"
|
|
|
- )
|
|
|
- + NSLocalizedString(" Target Glucose", comment: "")
|
|
|
- )
|
|
|
- .foregroundColor(.green)
|
|
|
- .padding(.vertical)
|
|
|
- Slider(
|
|
|
- value: $state.hbt,
|
|
|
- in: 101 ... 295,
|
|
|
- step: 1
|
|
|
- ).accentColor(.green)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- Section(header: Text(header)) {
|
|
|
- HStack {
|
|
|
- Text("Target")
|
|
|
- Spacer()
|
|
|
- TextFieldWithToolBar(text: $state.low, placeholder: "0", numberFormatter: formatter)
|
|
|
- Text(state.units.rawValue).foregroundColor(.secondary)
|
|
|
- }
|
|
|
- HStack {
|
|
|
- Text("Duration")
|
|
|
- Spacer()
|
|
|
- TextFieldWithToolBar(text: $state.duration, placeholder: "0", numberFormatter: formatter)
|
|
|
- Text("minutes").foregroundColor(.secondary)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if state.viewPercantage {
|
|
|
- Section {
|
|
|
- HStack {
|
|
|
- Text("Duration")
|
|
|
- Spacer()
|
|
|
- TextFieldWithToolBar(text: $state.duration, placeholder: "0", numberFormatter: formatter)
|
|
|
- Text("minutes").foregroundColor(.secondary)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @ViewBuilder private func editPresetPopover() -> some View {
|
|
|
- Form {
|
|
|
- Section(header: Text("Edit Name?")) {
|
|
|
- TextField("Name", text: $state.newPresetName)
|
|
|
- Text("Settings before change: \(displayString)")
|
|
|
- .foregroundColor(.secondary)
|
|
|
- .font(.caption)
|
|
|
- }
|
|
|
- settingsSection(header: "New target and duration")
|
|
|
-
|
|
|
- Section {
|
|
|
- Button("Save") {
|
|
|
- guard let selectedPreset = selectedPreset else { return }
|
|
|
- state.updatePreset(selectedPreset)
|
|
|
- isEditSheetPresented = false
|
|
|
- }
|
|
|
- .disabled(state.newPresetName.isEmpty)
|
|
|
-
|
|
|
- Button("Cancel") {
|
|
|
- // Reset the fields and close the sheet
|
|
|
- resetFields()
|
|
|
- isEditSheetPresented = false
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .onAppear {
|
|
|
- guard let selectedPreset = selectedPreset, let targetBottom = selectedPreset.targetBottom else { return }
|
|
|
- let computedPercentage = state.computePercentage(target: targetBottom)
|
|
|
- state.percentage = Double(truncating: computedPercentage as NSNumber)
|
|
|
- }
|
|
|
- .onDisappear {
|
|
|
- if isEditSheetPresented == false {
|
|
|
- resetFields()
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private func resetFields() {
|
|
|
- state.newPresetName = ""
|
|
|
- state.low = 0
|
|
|
- state.duration = 0
|
|
|
- state.percentage = 100 // Reset experimental slider if necessary
|
|
|
- }
|
|
|
-
|
|
|
- private func presetView(for preset: TempTarget) -> some View {
|
|
|
- var low = preset.targetBottom
|
|
|
- if state.units == .mmolL {
|
|
|
- low = low?.asMmolL
|
|
|
- }
|
|
|
-
|
|
|
- return HStack {
|
|
|
- VStack {
|
|
|
- HStack {
|
|
|
- Text(preset.displayName)
|
|
|
- Spacer()
|
|
|
- }
|
|
|
- HStack(spacing: 2) {
|
|
|
- if let lowValue = low,
|
|
|
- let formattedLow = formatter.string(from: lowValue as NSNumber)
|
|
|
- {
|
|
|
- Text(formattedLow)
|
|
|
- .foregroundColor(.secondary)
|
|
|
- .font(.caption)
|
|
|
- }
|
|
|
-
|
|
|
- Text(state.units.rawValue)
|
|
|
- .foregroundColor(.secondary)
|
|
|
- .font(.caption)
|
|
|
- Text("for")
|
|
|
- .foregroundColor(.secondary)
|
|
|
- .font(.caption)
|
|
|
- Text("\(formatter.string(from: preset.duration as NSNumber)!)")
|
|
|
- .foregroundColor(.secondary)
|
|
|
- .font(.caption)
|
|
|
- Text("min")
|
|
|
- .foregroundColor(.secondary)
|
|
|
- .font(.caption)
|
|
|
-
|
|
|
- Spacer()
|
|
|
- }.padding(.bottom, 2)
|
|
|
- }
|
|
|
- .contentShape(Rectangle())
|
|
|
- .onTapGesture {
|
|
|
- state.enactPreset(id: preset.id)
|
|
|
- }
|
|
|
- }
|
|
|
- } }
|
|
|
-}
|