| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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
- }
- @Environment(\.colorScheme) var colorScheme
- var color: LinearGradient {
- colorScheme == .dark ? LinearGradient(
- gradient: Gradient(colors: [
- Color("Background_1"),
- Color("Background_1"),
- Color("Background_2")
- // Color("Background_1")
- ]),
- startPoint: .top,
- endPoint: .bottom
- )
- :
- LinearGradient(
- gradient: Gradient(colors: [Color.gray.opacity(0.1)]),
- startPoint: .top,
- endPoint: .bottom
- )
- }
- var body: some View {
- Form {
- Section(header: Text("Glucose")) {
- Toggle("Show glucose on the app badge", isOn: $state.glucoseBadge)
- 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)
- }
- }
- if #available(iOS 16.2, *) {
- Section(
- header: Text("Live Activity"),
- footer: Text(
- "Live activity displays blood glucose live on the lock screen and on the dynamic island (if available)"
- )
- ) {
- Toggle("Show live activity", isOn: $state.useLiveActivity)
- }
- }
- }.scrollContentBackground(.hidden).background(color)
- .onAppear(perform: configureView)
- .navigationBarTitle("Notifications")
- .navigationBarTitleDisplayMode(.automatic)
- }
- }
- }
|