| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 |
- import SwiftUI
- import Swinject
- extension AlgorithmAdvancedSettings {
- struct RootView: BaseView {
- let resolver: Resolver
- @StateObject var state = StateModel()
- @State private var shouldDisplayHint: Bool = false
- @State var hintDetent = PresentationDetent.large
- @State var selectedVerboseHint: AnyView?
- @State var hintLabel: String?
- @State private var decimalPlaceholder: Decimal = 0.0
- @State private var booleanPlaceholder: Bool = false
- @Environment(\.colorScheme) var colorScheme
- @EnvironmentObject var appIcons: Icons
- @Environment(AppState.self) var appState
- var body: some View {
- List {
- Section(
- header: Text("DISCLAIMER"),
- content: {
- VStack(alignment: .leading) {
- Text(
- "The settings in this section typically do not require ANY modifications. Do not alter them without a solid understanding of what you are changing and the full impact it will have on the algorithm."
- ).bold()
- }
- }
- ).listRowBackground(Color.tabBar)
- SettingInputSection(
- decimalValue: $state.maxDailySafetyMultiplier,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Max Daily Safety Multiplier", comment: "Max Daily Safety Multiplier")
- }
- ),
- units: state.units,
- type: .decimal("maxDailySafetyMultiplier"),
- label: String(localized: "Max Daily Safety Multiplier", comment: "Max Daily Safety Multiplier"),
- miniHint: String(
- localized: "Limits temporary basal rates to this percentage of your largest basal rate.",
- comment: "Mini Hint for Max Daily Safety Multiplier"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 300%").bold()
- Text(
- "This setting restricts the maximum temporary basal rate Trio can set. At the default of 300%, it caps it at 3 times your highest programmed basal rate."
- )
- Text("It serves as a safety limit, ensuring no temporary basal rates exceed safe levels.")
- Text("Warning: Increasing this setting is not advised.").bold()
- }
- )
- SettingInputSection(
- decimalValue: $state.currentBasalSafetyMultiplier,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(
- localized:
- "Current Basal Safety Multiplier",
- comment: "Current Basal Safety Multiplier"
- )
- }
- ),
- units: state.units,
- type: .decimal("currentBasalSafetyMultiplier"),
- label: String(localized: "Current Basal Safety Multiplier", comment: "Current Basal Safety Multiplier"),
- miniHint: String(
- localized: "Limits temporary basal rates to this percentage of the current basal rate.",
- comment: "Mini Hint for Current Basal Safety Multiplier"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 400%").bold()
- Text(
- "This limits the automatic adjustment of the temporary basal rate to this percentage of the current hourly profile basal rate at the time of the loop cycle."
- )
- Text(
- "This prevents excessive dosing, especially during times of variable insulin sensitivity, enhancing safety."
- )
- Text("Warning: Increasing this setting is not advised.").bold()
- }
- )
- SettingInputSection(
- decimalValue: $state.insulinActionCurve,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Duration of Insulin Action", comment: "Duration of Insulin Action")
- }
- ),
- units: state.units,
- type: .decimal("dia"),
- label: String(localized: "Duration of Insulin Action", comment: "Duration of Insulin Action"),
- miniHint: String(
- localized: "Number of hours insulin is active in your body.",
- comment: "Mini Hint for Duration of Insulin Action"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 10 hours").bold()
- Text(
- "The Duration of Insulin Action (DIA) defines how long your insulin continues to lower glucose readings after a dose."
- )
- Text(
- "This helps the system accurately track Insulin on Board (IOB), avoiding over- or under-corrections by considering the tail end of insulin's effect."
- )
- Text(
- "Tip: It is better to use Custom Peak Time rather than adjust your Duration of Insulin Action (DIA)."
- )
- }
- )
- SettingInputSection(
- decimalValue: $state.insulinPeakTime,
- booleanValue: $state.useCustomPeakTime,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Use Custom Peak Time", comment: "Use Custom Peak Time")
- }
- ),
- units: state.units,
- type: .conditionalDecimal("insulinPeakTime"),
- label: String(localized: "Use Custom Peak Time", comment: "Use Custom Peak Time"),
- conditionalLabel: String(localized: "Insulin Peak Time", comment: "Insulin Peak Time"),
- miniHint: String(
- localized: "Set a custom time for peak insulin effect.",
- comment: "Mini Hint for Insulin Peak Time"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: Set by Insulin Type").bold()
- Text(
- "Insulin Peak Time defines when insulin is most effective in lowering glucose, set in minutes after dosing."
- )
- Text(
- "This peak informs the system when to expect the most potent glucose-lowering effect, helping it predict glucose trends more accurately."
- )
- Text("System-Determined Defaults:").bold()
- Text("Ultra-Rapid: 55 minutes (permitted range 35-100 minutes)")
- Text("Rapid-Acting: 75 minutes (permitted range 50-120 minutes)")
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.skipNeutralTemps,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Skip Neutral Temps", comment: "Skip Neutral Temps")
- }
- ),
- units: state.units,
- type: .boolean,
- label: String(localized: "Skip Neutral Temps", comment: "Skip Neutral Temps"),
- miniHint: String(
- localized: "Skip neutral temporary basal rates to reduce MDT pump alerts.",
- comment: "Mini Hint for Skip Neutral Temps"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "When Skip Neutral Temps is enabled, Trio will not set neutral basal rates shortly before the hour, minimizing hourly pump alerts on MDT pumps. This can help light sleepers avoid alerts but will delay basal adjustments. This will also only come into effect if SMB's are disabled for whatever reason."
- )
- Text(
- "For most users, leaving this OFF is recommended to ensure consistent basal delivery and loop calculation. If this option is effective, loops will be skipped during the last 5 minutes of the hour."
- )
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.unsuspendIfNoTemp,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Unsuspend If No Temp", comment: "Unsuspend If No Temp")
- }
- ),
- units: state.units,
- type: .boolean,
- label: String(localized: "Unsuspend If No Temp", comment: "Unsuspend If No Temp"),
- miniHint: String(
- localized: "Resume pump automatically after suspension.",
- comment: "Mini Hint for Unsuspend If No Temp"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "Enabling Unsuspend If No Temp allows Trio to resume your pump if you forget, as long as a zero temp basal was set first. This feature ensures insulin delivery restarts if you forget to manually unsuspend, adding a safeguard for pump reconnections."
- )
- Text("Note: Applies only to pumps with on-pump suspend options")
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.suspendZerosIOB,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Suspend Zeros IOB", comment: "Suspend Zeros IOB")
- }
- ),
- units: state.units,
- type: .boolean,
- label: String(localized: "Suspend Zeros IOB", comment: "Suspend Zeros IOB"),
- miniHint: String(
- localized: "Clear temporary basal rates and reset IOB when suspended.",
- comment: "Mini Hint for Suspend Zeros IOB"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "When Suspend Zeros IOB is enabled, any active temporary basal rates during a pump suspension are reset, with new 0 U/hr temporary basal rates added to counteract those done during suspension."
- )
- Text(
- "This prevents lingering insulin effects when your pump is suspended, ensuring safer management of insulin on board."
- )
- Text("Note: Applies only to pumps with on-pump suspend options.")
- }
- )
- SettingInputSection(
- decimalValue: $state.smbDeliveryRatio,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "SMB Delivery Ratio", comment: "SMB Delivery Ratio")
- }
- ),
- units: state.units,
- type: .decimal("smbDeliveryRatio"),
- label: String(localized: "SMB Delivery Ratio", comment: "SMB Delivery Ratio"),
- miniHint: String(localized: "Percentage of calculated insulin required that is given as SMB."),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 50%").bold()
- Text(
- "Once the total insulin required is calculated, this safety limit specifies what percentage of the insulin required can be delivered as an SMB."
- )
- Text(
- "Due to SMBs potentially occurring every 5 minutes with each loop cycle, it is important to set this value to a reasonable level that allows Trio to safely zero temp should dosing needs suddenly change. Increase this value with caution."
- )
- Text("Note: Allowed range is 30 - 70%")
- }
- )
- SettingInputSection(
- decimalValue: $state.smbInterval,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "SMB Interval", comment: "SMB Interval")
- }
- ),
- units: state.units,
- type: .decimal("smbInterval"),
- label: String(localized: "SMB Interval", comment: "SMB Interval"),
- miniHint: String(localized: "Minimum minutes since the last SMB or manual bolus to allow an automated SMB."),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 3 min").bold()
- Text(
- "This is the minimum number of minutes since the last SMB or manual bolus before Trio will permit an automated SMB."
- )
- }
- )
- SettingInputSection(
- decimalValue: $state.min5mCarbimpact,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Min 5m Carb Impact", comment: "Min 5m Carb Impact")
- }
- ),
- units: state.units,
- type: .decimal("min5mCarbimpact"),
- label: String(localized: "Min 5m Carb Impact", comment: "Min 5m Carb Impact"),
- miniHint: String(localized: "Default impact of carb absorption over a 5 minute interval."),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text(
- "Min 5m Carb Impact sets the expected glucose rise from carbs over 5 minutes when absorption isn't obvious from glucose data."
- )
- Text(
- "The default is an expected \(state.units == .mgdL ? "8" : 8.formattedAsMmolL) \(state.units.rawValue)/5min. This affects how fast COB is decayed in situations when carb absorption is not visible in BG deviations. The default of \(state.units == .mgdL ? "8" : 8.formattedAsMmolL) \(state.units.rawValue)/5min corresponds to a minimum carb absorption rate of 24 g/hr at a CSF of \(state.units == .mgdL ? "4" : 4.formattedAsMmolL) \(state.units.rawValue)/g."
- )
- Text(
- "This setting helps the system estimate how much glucose your body is absorbing, even when it's not immediately visible in your glucose data, ensuring more accurate insulin dosing during carb absorption."
- )
- }
- )
- SettingInputSection(
- decimalValue: $state.remainingCarbsFraction,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Remaining Carbs Percentage", comment: "Remaining Carbs Percentage")
- }
- ),
- units: state.units,
- type: .decimal("remainingCarbsFraction"),
- label: String(localized: "Remaining Carbs Percentage", comment: "Remaining Carbs Percentage"),
- miniHint: String(
- localized: "Percentage of carbs still available if no absorption is detected.",
- comment: "Mini Hint for Remaining Carbs Percentage"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 100%").bold()
- Text(
- "Remaining Carbs Percentage estimates carbs still absorbing over 4 hours if glucose data doesn't show clear absorption."
- )
- Text(
- "This fallback setting prevents under-dosing by spreading a portion of the entered carbs over time, balancing insulin needs with undetected carb impact."
- )
- }
- )
- SettingInputSection(
- decimalValue: $state.remainingCarbsCap,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Remaining Carbs Cap", comment: "Remaining Carbs Cap")
- }
- ),
- units: state.units,
- type: .decimal("remainingCarbsCap"),
- label: String(localized: "Remaining Carbs Cap", comment: "Remaining Carbs Cap"),
- miniHint: String(
- localized: "Maximum amount of carbs still available if no absorption is detected.",
- comment: "Mini hint for Remaining Carbs Cap"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 90 g").bold()
- Text(
- "The Remaining Carbs Cap defines the upper limit for how many carbs the system will assume are absorbing over 4 hours, even when there's no clear sign of absorption from your glucose readings."
- )
- Text(
- "This cap prevents the system from overestimating how much insulin is needed when carb absorption isn't visible, offering a safeguard for accurate dosing."
- )
- }
- )
- SettingInputSection(
- decimalValue: $state.noisyCGMTargetMultiplier,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = String(localized: "Noisy CGM Target Multiplier", comment: "Noisy CGM Target Multiplier")
- }
- ),
- units: state.units,
- type: .decimal("noisyCGMTargetMultiplier"),
- label: String(localized: "Noisy CGM Target Increase", comment: "Noisy CGM Target Increase"),
- miniHint: String(
- localized: "Percentage increase of glucose target when CGM is inconsistent.",
- comment: "Mini Hint for Noisy CGM Target Increase"
- ),
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 130%").bold()
- Text(
- "The Noisy CGM Target Increase raises your glucose target when the system detects noisy or raw CGM data. By default, the target is increased to 130% of your set target glucose to account for the less reliable glucose readings."
- )
- Text(
- "This helps reduce the risk of incorrect insulin dosing based on inaccurate sensor data, ensuring safer insulin adjustments during periods of poor CGM accuracy."
- )
- Text("Note: A CGM is considered noisy when it provides inconsistent readings.")
- }
- )
- }
- .listSectionSpacing(sectionSpacing)
- .sheet(isPresented: $shouldDisplayHint) {
- SettingInputHintView(
- hintDetent: $hintDetent,
- shouldDisplayHint: $shouldDisplayHint,
- hintLabel: hintLabel ?? "",
- hintText: selectedVerboseHint ?? AnyView(EmptyView()),
- sheetTitle: String(localized: "Help", comment: "Help sheet title")
- )
- }
- .scrollContentBackground(.hidden)
- .background(appState.trioBackgroundColor(for: colorScheme))
- .onAppear(perform: configureView)
- .navigationTitle("Additionals")
- .navigationBarTitleDisplayMode(.automatic)
- .onDisappear {
- state.saveIfChanged()
- }
- }
- }
- }
|