| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- import SwiftUI
- import Swinject
- extension UserInterfaceSettings {
- 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
- @State private var displayPickerLowThreshold: Bool = false
- @State private var displayPickerHighThreshold: Bool = false
- @AppStorage("colorSchemePreference") private var colorSchemePreference: ColorSchemeOption = .systemDefault
- @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
- )
- }
- private var glucoseFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 0
- if state.units == .mmolL {
- formatter.maximumFractionDigits = 1
- }
- formatter.roundingMode = .halfUp
- return formatter
- }
- private var carbsFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 0
- return formatter
- }
- var body: some View {
- Form {
- Section(
- header: Text("General Appearance"),
- content: {
- VStack {
- Picker(
- selection: $colorSchemePreference,
- label: Text("Trio Color Scheme")
- ) {
- ForEach(ColorSchemeOption.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }.padding(.top)
- HStack(alignment: .top) {
- Text(
- "Choose between Light, Dark, or System Default for the app color scheme"
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Color Scheme Preference"
- selectedVerboseHint =
- AnyView(Text("""
- Set the app color scheme using the following options
- System Default: Follows the phone's current color scheme setting at that time
- Light: Always in Light mode
- Dark: Always in Dark mode
- """))
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }
- ).listRowBackground(Color.chart)
- Section {
- VStack {
- Picker(
- selection: $state.glucoseColorScheme,
- label: Text("Glucose Color Scheme")
- ) {
- ForEach(GlucoseColorScheme.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }.padding(.top)
- HStack(alignment: .top) {
- Text(
- "Choose between Static or Dynamic coloring for glucose readings"
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Glucose Color Scheme"
- selectedVerboseHint =
- AnyView(
- Text(
- """
- Set the color scheme for glucose readings on the main glucose graph, live activities, and bolus calculatorusing the following options:
- Static: Below-Range Target readings will be in RED, In-Range will be GREEN, Above-Range will be YELLOW
- Dynamic: Readings on Target will be GREEN. As readings approach and exceed below target, they become more RED. As readings approach and exceed above targer, they become more PURPLE.
- """
- )
- )
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }.listRowBackground(Color.chart)
- Section(
- header: Text("Home View Settings"),
- content: {
- VStack {
- Toggle("Show X-Axis Grid Lines", isOn: $state.xGridLines)
- Toggle("Show Y-Axis Grid Lines", isOn: $state.yGridLines)
- HStack(alignment: .top) {
- Text(
- "Display the grid lines behind the glucose graph"
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Show Main Chart X- and Y-Axis Grid Lines"
- selectedVerboseHint =
- AnyView(Text("""
- Choose whether or not to display one or both X- and Y-Axis grid lines.
- """))
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.vertical)
- }
- ).listRowBackground(Color.chart)
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.rulerMarks,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Show Low and High Thresholds"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Show Low and High Thresholds",
- miniHint: "Display the Low and High glucose Thresholds set below",
- verboseHint: Text("""
- This setting displays the upper and lower values for your glucose target range.
- This range is for display and statistical purposes only and does not influence insulin dosing.
- """)
- )
- if state.rulerMarks {
- Section {
- VStack {
- VStack {
- HStack {
- Text("Low Threshold")
- Spacer()
- Group {
- Text(state.units == .mgdL ? state.low.description : state.low.asMmolL.description)
- .foregroundColor(!displayPickerLowThreshold ? .primary : .accentColor)
- Text(state.units == .mgdL ? " mg/dL" : " mmol/L").foregroundColor(.secondary)
- }
- }
- .onTapGesture {
- displayPickerLowThreshold.toggle()
- }
- }
- .padding(.top)
- if displayPickerLowThreshold {
- let setting = PickerSettingsProvider.shared.settings.low
- Picker(selection: $state.low, label: Text("")) {
- ForEach(
- PickerSettingsProvider.shared.generatePickerValues(from: setting, units: state.units),
- id: \.self
- ) { value in
- let displayValue = state.units == .mgdL ? value : value.asMmolL
- Text("\(displayValue.description)").tag(value)
- }
- }
- .pickerStyle(WheelPickerStyle())
- .frame(maxWidth: .infinity)
- }
- VStack {
- HStack {
- Text("High Threshold")
- Spacer()
- Group {
- Text(state.units == .mgdL ? state.high.description : state.high.asMmolL.description)
- .foregroundColor(!displayPickerHighThreshold ? .primary : .accentColor)
- Text(state.units == .mgdL ? " mg/dL" : " mmol/L").foregroundColor(.secondary)
- }
- }
- .onTapGesture {
- displayPickerHighThreshold.toggle()
- }
- }
- .padding(.top)
- if displayPickerHighThreshold {
- let setting = PickerSettingsProvider.shared.settings.high
- Picker(selection: $state.high, label: Text("")) {
- ForEach(
- PickerSettingsProvider.shared.generatePickerValues(from: setting, units: state.units),
- id: \.self
- ) { value in
- let displayValue = state.units == .mgdL ? value : value.asMmolL
- Text("\(displayValue.description)").tag(value)
- }
- }
- .pickerStyle(WheelPickerStyle())
- .frame(maxWidth: .infinity)
- }
- HStack(alignment: .top) {
- Text(
- """
- Set low and high glucose values for the main screen glucose graph and statistics
- Low Default: 70
- High Default: 180
- """
- )
- .lineLimit(nil)
- .font(.footnote)
- .foregroundColor(.secondary)
- Spacer()
- Button(
- action: {
- hintLabel = "Low and High Thresholds"
- selectedVerboseHint =
- AnyView(Text("""
- Default values are based on internationally accepted Time in Range values of 70-180 mg/dL (5.5-10 mmol/L)
- Set the values used in the main screen glucose graph and to determine Time in Range for Statistics.
- Note: These values are not used to calculate insulin dosing.
- """))
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }.listRowBackground(Color.chart)
- }
- Section {
- VStack {
- Picker(
- selection: $state.forecastDisplayType,
- label: Text("Forecast Display Type")
- ) {
- ForEach(ForecastDisplayType.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }.padding(.top)
- HStack(alignment: .top) {
- Text(
- """
- Choose between the OpenAPS colored "Lines" or the "Cone" of Uncertainty for the Forecast Lines
- Default: Cone
- """
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Forecast Display Type"
- selectedVerboseHint =
- AnyView(Text("""
- Default: Cone
- This setting allows you to choose between the following two options for the Forecast lines (previously: Prediction Lines).
- Lines: Uses the IOB, COB, UAM, and ZT forecast lines from OpenAPS
- Cone: Uses a combined range of all possible forecasts from the OpenAPS lines and provides you with a range of possible forecasts. This option has shown to reduce confusion and stress around algorithm forecasts by providing a less concerning visual representation.
- """))
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }.listRowBackground(Color.chart)
- SettingInputSection(
- decimalValue: $state.hours,
- booleanValue: $booleanPlaceholder,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "X-Axis Interval Step"
- }
- ),
- units: state.units,
- type: .decimal("hours"),
- label: "X-Axis Interval Step",
- miniHint: "Determines how many hours are shown in the main graph",
- verboseHint: Text("""
- Default: 6 hours
- This setting determines how many hours are shown in each view of the main graph.
- The default setting of 6 hours uses 2, 4, 6, 12, and 24 hour views.
- A setting of 4 would use 1.3, 2, 4, 8, and 16 hour views.
- A setting of 9 would use 3, 4.5, 9, 18, and 36 hour views.
- """)
- )
- Section {
- VStack {
- Picker(
- selection: $state.totalInsulinDisplayType,
- label: Text("Total Insulin Display Type")
- ) {
- ForEach(TotalInsulinDisplayType.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }.padding(.top)
- HStack(alignment: .top) {
- Text(
- "Choose between Total Daily Dose (TDD) or Total Insulin in Scope (TINS) to be displayed above the main glucose graph"
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Total Insulin Display Type"
- selectedVerboseHint =
- AnyView(Text("""
- Choose between Total Daily Dose (TDD) or Total Insulin in Scope (TINS) to be displayed above the main glucose graph.
- Total Daily Dose: Displays the last 24 hours of total insulin administered, both basal and bolus.
- Total Insulin in Scope: Displays the total insulin administered since midnight, both basal and bolus.
- """))
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }.listRowBackground(Color.chart)
- // TODO: this needs to be a picker: mmol/L or %
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.overrideHbA1cUnit,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Override HbA1c Unit"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Override HbA1c Unit",
- miniHint: "Display HbA1c in mmol/mol or %",
- verboseHint: Text(
- "Choose between displaying the HbA1c value in the statistics view as a percentage (Target of <6.5%) or mmol/mol (Target of <48 mmol/mol)"
- ),
- headerText: "Trio Statistics"
- )
- // TODO: this needs to be a picker: choose bar chart or progress bar
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.oneDimensionalGraph,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Standing / Laying TIR Chart"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Standing / Laying TIR Chart",
- miniHint: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr.",
- verboseHint: Text("Standing / Laying TIR Chart… bla bla bla")
- )
- SettingInputSection(
- decimalValue: $state.carbsRequiredThreshold,
- booleanValue: $state.showCarbsRequiredBadge,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Show Carbs Required Badge"
- }
- ),
- units: state.units,
- type: .conditionalDecimal("carbsRequiredThreshold"),
- label: "Show Carbs Required Badge",
- conditionalLabel: "Carbs Required Threshold",
- miniHint: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr.",
- verboseHint: Text("Show Carbs Required Badge… bla bla bla"),
- headerText: "Carbs Required Badge"
- )
- }
- .sheet(isPresented: $shouldDisplayHint) {
- SettingInputHintView(
- hintDetent: $hintDetent,
- shouldDisplayHint: $shouldDisplayHint,
- hintLabel: hintLabel ?? "",
- hintText: selectedVerboseHint ?? AnyView(EmptyView()),
- sheetTitle: "Help"
- )
- }
- .scrollContentBackground(.hidden).background(color)
- .onAppear(perform: configureView)
- .navigationBarTitle("User Interface")
- .navigationBarTitleDisplayMode(.automatic)
- }
- }
- }
|