| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- import ActivityKit
- import Combine
- import SwiftUI
- import Swinject
- extension GlucoseNotificationSettings {
- 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 displayPickerLowGlucose: Bool = false
- @State private var displayPickerHighGlucose: Bool = false
- 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
- }
- @Environment(\.colorScheme) var colorScheme
- @Environment(AppState.self) var appState
- var body: some View {
- List {
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.useAlarmSound,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Play Alarm Sound"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Play Alarm Sound",
- miniHint: "Alarm with every Trio notification.",
- verboseHint: VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "This will cause a sound to be triggered by Trio notifications for Carbs Required, and Glucose Low/High Alarms."
- )
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.notificationsPump,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Always Notify Pump"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Always Notify Pump",
- miniHint: "Always Notify Pump Warnings.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: ON").bold()
- Text(
- "With iOS Trio Notifications enabled, you can let Trio display most Pump Notifications in iOS Notification Center as a Banner, List and on the Lock Screen. It allows you to refer to Trio Information at a glance and troubleshoot any informational issue. Set iOS Notifications Banner Style to Persistent to display banners in the app until dismissed."
- )
- Text("If iOS Trio Notifications is disabled, Trio will display these messages in-app as a banner only.")
- Text("An example of a Pump Warning is 'Pod Expiration Reminder'")
- },
- headerText: "Trio Information Notifications"
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.notificationsCgm,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Always Notify CGM"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Always Notify CGM",
- miniHint: "Always Notify CGM Warnings.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: ON").bold()
- Text(
- "With iOS Trio Notifications enabled, you can let Trio display most CGM Notifications in iOS Notification Center as a Banner, List and on the Lock Screen. It allows you to refer to Trio Information at a glance and troubleshoot any informational issue. Set iOS Notifications Banner Style to Persistent to display banners in the app until dismissed."
- )
- Text("If iOS Trio Notifications is disabled, Trio will display these messages in-app as a banner only.")
- Text("An example of a CGM Warning is 'Unable to open the app'")
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.notificationsCarb,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Always Notify Carb"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Always Notify Carb",
- miniHint: "Always Notify Carb Warnings.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: ON").bold()
- Text(
- "With iOS Trio Notifications enabled, you can let Trio display most Carb Notifications in iOS Notification Center as a Banner, List and on the Lock Screen. It allows you to refer to Trio Information at a glance and troubleshoot any informational issue. Set iOS Notifications Banner Style to Persistent to display banners in the app until dismissed."
- )
- Text("If iOS Trio Notifications is disabled, Trio will display these messages in-app as a banner only.")
- Text("An example of a Carb Warning is 'Carbs required: 30 g'")
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.notificationsAlgorithm,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Always Notify Algorithm"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Always Notify Algorithm",
- miniHint: "Always Notify Algorithm Warnings.",
- verboseHint:
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: ON").bold()
- Text(
- "With iOS Trio Notifications enabled, you can let Trio display most Algorithm Notifications in iOS Notification Center as a Banner, List and on the Lock Screen. It allows you to refer to Trio Information at a glance and troubleshoot any informational issue. Set iOS Notifications Banner Style to Persistent to display banners in the app until dismissed."
- )
- Text("If iOS Trio Notifications is disabled, Trio will display these messages in-app as a banner only.")
- Text(
- "An example of an Algorithm Warning is 'Error: Invalid glucose: Not enough glucose data'"
- )
- }
- )
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.glucoseBadge,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Show Glucose App Badge"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Show Glucose App Badge",
- miniHint: "Show your current glucose on Trio app icon.",
- verboseHint: VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text(
- "This will add your current glucose on the top right of your Trio icon as a red notification badge. Changing setting takes effect on next Glucose reading."
- )
- },
- headerText: "Various Glucose Notifications"
- )
- Section {
- VStack {
- Picker(
- selection: $state.glucoseNotificationsOption,
- label: Text("Glucose Notifications")
- ) {
- ForEach(GlucoseNotificationsOption.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }.padding(.top)
- HStack(alignment: .center) {
- Text(
- "Choose glucose notifications option. See hint for more details."
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Glucose Notifications"
- selectedVerboseHint =
- AnyView(
- VStack(alignment: .leading, spacing: 10) {
- Text(
- "Set the Glucose Notifications Option. Descriptions for each option found below."
- )
- VStack(alignment: .leading, spacing: 5) {
- Text("Disabled:").bold()
- Text("No Glucose Notificatitons will be triggered.")
- }
- VStack(alignment: .leading, spacing: 5) {
- Text("Always:").bold()
- Text(
- "A notification will be triggered every time your glucose is updated in Trio."
- )
- }
- VStack(alignment: .leading, spacing: 5) {
- Text("Only Alarm Limits:").bold()
- Text(
- "A notification will be triggered only when glucose levels are below the LOW limit or above the HIGH limit, as specified in Glucose Alarm Limits below."
- )
- }
- }
- )
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }.listRowBackground(Color.chart)
- if state.glucoseNotificationsOption != GlucoseNotificationsOption.disabled {
- self.lowAndHighGlucoseAlertSection
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.addSourceInfoToGlucoseNotifications,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Add Glucose Source to Alarm"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Add Glucose Source to Alarm",
- miniHint: "Source of the glucose reading will be added to the notification.",
- verboseHint: VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- Text("The source of the glucose reading will be added to the notification.")
- }
- )
- }
- }
- .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("Trio Notifications")
- .navigationBarTitleDisplayMode(.automatic)
- }
- var lowAndHighGlucoseAlertSection: some View {
- Section {
- VStack {
- VStack {
- HStack {
- Text("Low Glucose Alarm Limit")
- Spacer()
- Group {
- Text(
- state.units == .mgdL ? state.lowGlucose.description : state.lowGlucose.formattedAsMmolL
- )
- .foregroundColor(!displayPickerLowGlucose ? .primary : .accentColor)
- Text(state.units == .mgdL ? " mg/dL" : " mmol/L").foregroundColor(.secondary)
- }
- }
- .onTapGesture {
- displayPickerLowGlucose.toggle()
- }
- }
- .padding(.top)
- if displayPickerLowGlucose {
- let setting = PickerSettingsProvider.shared.settings.lowGlucose
- Picker(selection: $state.lowGlucose, label: Text("")) {
- ForEach(
- PickerSettingsProvider.shared.generatePickerValues(from: setting, units: state.units),
- id: \.self
- ) { value in
- let displayValue = state.units == .mgdL ? value.description : value.formattedAsMmolL
- Text(displayValue).tag(value)
- }
- }
- .pickerStyle(WheelPickerStyle())
- .frame(maxWidth: .infinity)
- }
- VStack {
- HStack {
- Text("High Glucose Alarm Limit")
- Spacer()
- Group {
- Text(
- state.units == .mgdL ? state.highGlucose.description : state.highGlucose.formattedAsMmolL
- )
- .foregroundColor(!displayPickerHighGlucose ? .primary : .accentColor)
- Text(state.units == .mgdL ? " mg/dL" : " mmol/L").foregroundColor(.secondary)
- }
- }
- .onTapGesture {
- displayPickerHighGlucose.toggle()
- }
- }
- .padding(.top)
- if displayPickerHighGlucose {
- let setting = PickerSettingsProvider.shared.settings.highGlucose
- Picker(selection: $state.highGlucose, label: Text("")) {
- ForEach(
- PickerSettingsProvider.shared.generatePickerValues(from: setting, units: state.units),
- id: \.self
- ) { value in
- let displayValue = state.units == .mgdL ? value.description : value.formattedAsMmolL
- Text(displayValue).tag(value)
- }
- }
- .pickerStyle(WheelPickerStyle())
- .frame(maxWidth: .infinity)
- }
- HStack(alignment: .center) {
- Text(
- "Sets the lower and upper limit for glucose alarms."
- )
- .lineLimit(nil)
- .font(.footnote)
- .foregroundColor(.secondary)
- Spacer()
- Button(
- action: {
- hintLabel = "Low and High Glucose Alarm Limits"
- selectedVerboseHint =
- AnyView(VStack(alignment: .leading, spacing: 10) {
- let low: Decimal = 70
- let high: Decimal = 180
- let labelLow = (state.units == .mgdL ? low.description : low.formattedAsMmolL) + " " +
- state.units.rawValue
- let labelHigh = (state.units == .mgdL ? high.description : high.formattedAsMmolL) + " " +
- state.units.rawValue
- Text("Low Default: " + labelLow).bold()
- Text("High Default: " + labelHigh).bold()
- VStack(alignment: .leading, spacing: 10) {
- Text(
- "These two settings determine the range outside of which you will be notified via push notifications."
- )
- Text(
- "If your CGM readings are below the Low value or above the High value, you will receive a glucose alarm."
- )
- }
- })
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- }.listRowBackground(Color.chart)
- }
- }
- }
|