| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import SwiftUI
- import Swinject
- extension StatConfig {
- 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 {
- Toggle("Display Chart X - Grid lines", isOn: $state.xGridLines)
- Toggle("Display Chart Y - Grid lines", isOn: $state.yGridLines)
- Toggle("Display Chart Threshold lines for Low and High", isOn: $state.rulerMarks)
- Toggle("Standing / Laying TIR Chart", isOn: $state.oneDimensionalGraph)
- Toggle("Enable total insulin in scope", isOn: $state.tins)
- } header: { Text("Home Chart settings ") }
- Section {
- HStack {
- Text("Low")
- Spacer()
- DecimalTextField("0", value: $state.low, formatter: glucoseFormatter)
- Text(state.units.rawValue).foregroundColor(.secondary)
- }
- HStack {
- Text("High")
- Spacer()
- DecimalTextField("0", value: $state.high, formatter: glucoseFormatter)
- Text(state.units.rawValue).foregroundColor(.secondary)
- }
- Toggle("Override HbA1c Unit", isOn: $state.overrideHbA1cUnit)
- } header: { Text("Statistics settings ") }
- Section {
- Toggle("Skip Bolus screen after carbs", isOn: $state.skipBolusScreenAfterCarbs)
- Toggle("Display and allow Fat and Protein entries", isOn: $state.useFPUconversion)
- } header: { Text("Add Meal View settings ") }
- Section {
- Picker(
- selection: $state.historyLayout,
- label: Text("History Layout")
- ) {
- ForEach(HistoryLayout.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }
- } header: { Text("History Settings") }
-
- Section {
- Picker(
- selection: $state.lockScreenView,
- label: Text("Lock screen widget")
- ) {
- ForEach(LockScreenView.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }
- } header: { Text("Lock screen widget") }
- }
- .onAppear(perform: configureView)
- .navigationBarTitle("UI/UX")
- .navigationBarTitleDisplayMode(.automatic)
- .navigationBarItems(trailing: Button("Close", action: state.hideModal))
- }
- }
- }
|