| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import Foundation
- import SwiftUI
- import Swinject
- struct ReviewInsulinActionView: BaseView {
- var resolver: any Swinject.Resolver
- @ObservedObject var state: NightscoutConfig.StateModel
- @State private var shouldDisplayHint: Bool = false
- @State private var hintDetent = PresentationDetent.large
- @State private var selectedVerboseHint: AnyView?
- @State private var hintLabel: String?
- @State private var decimalPlaceholder: Decimal = 0.0
- @State private var booleanPlaceholder: Bool = false
- @Environment(\.colorScheme) var colorScheme
- 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
- )
- }
- var body: some View {
- List {
- SettingInputSection(
- decimalValue: $state.importedInsulinActionCurve,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Duration of Insulin Action"
- }
- ),
- units: state.units,
- type: .decimal("dia"),
- label: "Duration of Insulin Action",
- miniHint: """
- Number of hours insulin is active in your body
- Default: 6 hours
- """,
- verboseHint: VStack {
- Text("Default: 6 hours").bold()
- Text("""
- Number of hours insulin will contribute to IOB after dosing.
- """)
- Text("It is better to use Custom Peak Timing rather than adjust your Duration of Insulin Action (DIA)")
- .italic()
- },
- headerText: "Review imported DIA"
- )
- }
- .sheet(isPresented: $shouldDisplayHint) {
- SettingInputHintView(
- hintDetent: $hintDetent,
- shouldDisplayHint: $shouldDisplayHint,
- hintLabel: hintLabel ?? "",
- hintText: selectedVerboseHint ?? AnyView(EmptyView()),
- sheetTitle: "Help"
- )
- }
- .scrollContentBackground(.hidden).background(color)
- .onAppear(perform: configureView)
- .navigationTitle("Duration of Insulin Action")
- .navigationBarTitleDisplayMode(.automatic)
- .onDisappear {
- state.saveReviewedInsulinAction()
- }
- }
- }
|