| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- import SwiftUI
- import Swinject
- extension DynamicSettings {
- 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
- private var conversionFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 1
- return formatter
- }
- @Environment(\.colorScheme) var colorScheme
- @Environment(AppState.self) var appState
- private var formatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- return formatter
- }
- private var glucoseFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- if state.units == .mmolL {
- formatter.maximumFractionDigits = 1
- } else { formatter.maximumFractionDigits = 0 }
- formatter.roundingMode = .halfUp
- return formatter
- }
- var body: some View {
- List {
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.useNewFormula,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Activate Dynamic Sensitivity (Dynamic ISF)"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Activate Dynamic ISF",
- miniHint: "Dynamically adjust insulin sensitivity using Dynamic Ratio rather than Autosens Ratio.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "Enabling this feature allows Trio to calculate a new Insulin Sensitivity Factor with each loop cycle by considering your current glucose, the weighted total daily dose of insulin, the set adjustment factor, and a few other data points. This helps tailor your insulin response more accurately in real time."
- )
- Text(
- "Dynamic ISF produces a Dynamic Ratio, replacing the Autosens Ratio, determining how much your profile ISF will be adjusted every loop cycle, ensuring it stays within safe limits set by your Autosens Min/Max settings. It provides more precise insulin dosing by responding to changes in insulin needs throughout the day."
- )
- Text(
- "You can influence the adjustments made by Dynamic ISF primarily by adjusting Autosens Max, Autosens Min, and Adjustment Factor. Other settings also influence Dynamic ISF's response, such as Glucose Target, Profile ISF, Peak Insulin Time, and Weighted Average of TDD."
- )
- Text(
- "Warning: Before adjusting these settings, make sure you are fully aware of the impact those changes will have."
- )
- .bold()
- },
- headerText: "Dynamic Settings"
- )
- if state.useNewFormula {
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.enableDynamicCR,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Activate Dynamic CR (Carb Ratio)"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Activate Dynamic CR (Carb Ratio)",
- miniHint: "Dynamically adjust your Carb Ratio (CR).",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "Dynamic CR adjusts your carb ratio based on your Dynamic Ratio, adapting automatically to changes in insulin sensitivity."
- )
- Text(
- "When Dynamic Ratio increases, indicating you need more insulin, the carb ratio value is decreased to make your insulin dosing more effective."
- )
- Text(
- "When Dynamic Ratio decreases, indicating you need less insulin, the carb ratio value is increased to avoid over-delivery."
- )
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.sigmoid,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Use Sigmoid Formula"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Use Sigmoid Formula",
- miniHint: "Adjust insulin sensitivity using a sigmoid-shaped curve.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "Turning on the Sigmoid Formula setting alters how your Dynamic Ratio, and thus your New ISF and New Carb Ratio, are calculated using a sigmoid curve rather than the default logarithmic function."
- )
- Text(
- "The curve's steepness is influenced by the Adjustment Factor, while the Autosens Min/Max settings determine the limits of the ratio adjustment, which can also influence the steepness of the sigmoid curve."
- )
- Text(
- "When using the Sigmoid Formula, the weighted Total Daily Dose has a much lower impact on the dynamic adjustments to sensitivity."
- )
- Text("Careful tuning is essential to avoid overly aggressive insulin changes.")
- Text("It is not recommended to set Autosens Max above 150% to maintain safe insulin dosing.")
- Text(
- "There has been no empirical data analysis to support the use of the Sigmoid Formula for dynamic sensitivity determination."
- ).bold()
- }
- )
- if !state.sigmoid {
- SettingInputSection(
- decimalValue: $state.adjustmentFactor,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Adjustment Factor (AF)"
- }
- ),
- // TODO?: include conditional links to Desmos logarithmic graphs based on which .glucose setting is used
- units: state.units,
- type: .decimal("adjustmentFactor"),
- label: "Adjustment Factor (AF)",
- miniHint: "ALter the rate of Dynamic ISF (Sensitivity) adjustments.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 80%").bold()
- Text(
- "The Adjustment Factor (AF) allows you to control how quickly and effectively Dynamic ISF responds to changes in glucose levels."
- )
- Text(
- "Adjusting this value not only can adjust how quickly your sensitivity will respond to changing glucose readings, but also at what glucose readings you reach your Autosens Max/Min limits."
- )
- Text(
- "Increasing this setting can make ISF adjustments quicker, but will also change the glucose value that coincides with the ISF used at your Autosens Max and Autosens Min limits. Likewise, decreasing this setting can make ISF adjustments slower and will also change the glucose value that coincides with the ISF used when it reaches the Autosens Max and Autosens Min limits. It is best to utilize the Desmos graphs from TrioDocs.org to optimize all Dynamic Settings."
- )
- }
- )
- } else {
- SettingInputSection(
- decimalValue: $state.adjustmentFactorSigmoid,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Sigmoid Adjustment Factor"
- }
- ),
- units: state.units,
- type: .decimal("adjustmentFactorSigmoid"),
- label: "Sigmoid Adjustment Factor",
- miniHint: "Alter the rate of dynamic sensitivity adjustments for Sigmoid.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 50%").bold()
- Text(
- "The Sigmoid Adjustment Factor (AF) allows you to control how quickly Sigmoid Dynamic ISF responds to changes in glucose levels and at what glucose value you will reach your Autosens Max and Autosens Min limits."
- )
- Text(
- "Sigmoid Adjustment Factor influences both how fast your ISF values will change and how quickly you will reach your Autosens Max and Min limits set. Increasing Sigmoid Adjustment Factor increases the rate of change of your ISF and reduces the range of glucose values between your Autosens Max and Min limits."
- )
- Text(
- "This setting allows for a more responsive system, but the effects are restricted by the Autosens Min/Max settings."
- )
- Text(
- "Due to how the curve is calculated when using the Sigmoid Formula, increasing this setting has a different impact on the steepness of the curve than in the standard logarithmic Dynamic ISF calculation. Use caution when adjusting this setting."
- )
- }
- )
- }
- SettingInputSection(
- decimalValue: $state.weightPercentage,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Weighted Average of TDD"
- }
- ),
- units: state.units,
- type: .decimal("weightPercentage"),
- label: "Weighted Average of TDD",
- miniHint: "Weight of 24-hr TDD against 10-day TDD.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: 35%").bold()
- Text(
- "This setting adjusts how much weight is given to your recent total daily insulin dose when calculating Dynamic ISF and Dynamic CR."
- )
- Text(
- "At the default setting, 35% of the calculation is based on the last 24 hours of insulin use, with the remaining 65% considering the last 10 days of data."
- )
- Text("Setting this to 100% means only the past 24 hours will be used.")
- Text("A lower value smooths out these variations for more stability.")
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.tddAdjBasal,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Adjust Basal"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Adjust Basal",
- miniHint: "Use Dynamic Ratio to adjust basal rates.",
- verboseHint: VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "Turn this setting on to give basal adjustments more agility. Keep this setting off if your basal needs are not highly variable."
- )
- Text(
- "Enabling Adjust Basal replaces the standard Autosens Ratio calculation with its own Autosens Ratio calculated as such:"
- )
- Text("Autosens Ratio =\n(Weighted Average of TDD) ÷ (10-day Average of TDD)")
- Text("New Basal Profile =\n(Current Basal Profile) × (Autosens Ratio)")
- }
- )
- SettingInputSection(
- decimalValue: $state.threshold_setting,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Minimum Safety Threshold"
- }
- ),
- units: state.units,
- type: .decimal("threshold_setting"),
- label: "Minimum Safety Threshold",
- miniHint: "Increase the safety threshold used to suspend insulin delivery.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: Set by Algorithm").bold()
- Text(
- "Minimum Threshold Setting is, by default, determined by your set Glucose Target. This threshold automatically suspends insulin delivery if your glucose levels are forecasted to fall below this value. It’s designed to protect against hypoglycemia, particularly during sleep or other vulnerable times."
- )
- Text(
- "Trio will use the larger of the default setting calculation below and the value entered here."
- )
- VStack(alignment: .leading, spacing: 10) {
- VStack(alignment: .leading, spacing: 5) {
- Text("The default setting is based on this calculation:").bold()
- Text("TargetGlucose - 0.5 × (TargetGlucose - 40)")
- }
- VStack(alignment: .leading, spacing: 5) {
- Text(
- "If your glucose target is 110 mg/dL, Trio will use a safety threshold of 75 mg/dL, unless you set Minimum Safety Threshold (mg/dL) to something > 75."
- )
- Text("110 - 0.5 × (110 - 40) = 75")
- }
- Text("This setting is limited to values between 60 - 120 mg/dL (3.3 - 6.6 mmol/L)")
- Text(
- "Note: Basal may be resumed if there is negative IOB and glucose is rising faster than the forecast."
- )
- }
- }
- )
- }
- }
- .listSectionSpacing(sectionSpacing)
- .sheet(isPresented: $shouldDisplayHint) {
- SettingInputHintView(
- hintDetent: $hintDetent,
- shouldDisplayHint: $shouldDisplayHint,
- hintLabel: hintLabel ?? "",
- hintText: selectedVerboseHint ?? AnyView(EmptyView()),
- sheetTitle: "Help"
- )
- }
- .scrollContentBackground(.hidden).background(appState.trioBackgroundColor(for: colorScheme))
- .onAppear(perform: configureView)
- .navigationBarTitle("Dynamic Settings")
- .navigationBarTitleDisplayMode(.automatic)
- }
- }
- }
|