| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import SwiftUI
- import Swinject
- extension NotificationsConfig {
- struct RootView: BaseView {
- let resolver: Resolver
- @StateObject var state = StateModel()
- 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("Glucose")) {
- Toggle("Show glucose on the app badge", isOn: $state.glucoseBadge)
- Toggle("Hide glucose badge when older than 20 minutes", isOn: $state.tooOldGlucose)
- Toggle("Always Notify Glucose", isOn: $state.glucoseNotificationsAlways)
- Toggle("Also play alert sound", isOn: $state.useAlarmSound)
- Toggle("Also add source info", isOn: $state.addSourceInfoToGlucoseNotifications)
- HStack {
- Text("Low")
- Spacer()
- DecimalTextField("0", value: $state.lowGlucose, formatter: glucoseFormatter)
- Text(state.units.rawValue).foregroundColor(.secondary)
- }
- HStack {
- Text("High")
- Spacer()
- DecimalTextField("0", value: $state.highGlucose, formatter: glucoseFormatter)
- Text(state.units.rawValue).foregroundColor(.secondary)
- }
- }
- Section(header: Text("Other")) {
- HStack {
- Text("Carbs Required Threshold")
- Spacer()
- DecimalTextField("0", value: $state.carbsRequiredThreshold, formatter: carbsFormatter)
- Text("g").foregroundColor(.secondary)
- }
- }
- }
- .onAppear(perform: configureView)
- .navigationBarTitle("Notifications")
- .navigationBarTitleDisplayMode(.automatic)
- }
- }
- }
|