| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- import SwiftUI
- import Swinject
- extension Calibrations {
- struct RootView: BaseView {
- let resolver: Resolver
- @StateObject var state = StateModel()
- private var formatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 2
- return formatter
- }
- private var dateFormatter: DateFormatter {
- let formatter = DateFormatter()
- formatter.timeStyle = .short
- formatter.dateStyle = .short
- return formatter
- }
- var body: some View {
- GeometryReader { geo in
- Form {
- Section(header: Text("Add calibration")) {
- HStack {
- Text("Meter glucose")
- Spacer()
- DecimalTextField(
- "0",
- value: $state.newCalibration,
- formatter: formatter,
- autofocus: false,
- cleanInput: true
- )
- Text(state.units.rawValue).foregroundColor(.secondary)
- }
- Button {
- state.addCalibration()
- }
- label: { Text("Add") }
- .disabled(state.newCalibration <= 0)
- }
- Section(header: Text("Info")) {
- HStack {
- Text("Slope")
- Spacer()
- Text(formatter.string(from: state.slope as NSNumber)!)
- }
- HStack {
- Text("Intercept")
- Spacer()
- Text(formatter.string(from: state.intercept as NSNumber)!)
- }
- }
- Section(header: Text("Remove")) {
- Button {
- state.removeLast()
- }
- label: { Text("Remove Last") }
- .disabled(state.calibrations.isEmpty)
- Button {
- state.removeAll()
- }
- label: { Text("Remove All") }
- .disabled(state.calibrations.isEmpty)
- List {
- ForEach(state.items) { item in
- HStack {
- Text(dateFormatter.string(from: item.calibration.date))
- Spacer()
- VStack(alignment: .leading) {
- Text("raw: \(item.calibration.x)")
- .font(.caption2)
- .foregroundColor(.secondary)
- Text("value: \(item.calibration.y)")
- .font(.caption2)
- .foregroundColor(.secondary)
- }
- }
- }.onDelete(perform: delete)
- }
- }
- if state.calibrations.isNotEmpty {
- Section(header: Text("Chart")) {
- CalibrationsChart().environmentObject(state)
- .frame(minHeight: geo.size.width)
- }
- }
- }
- }
- .onAppear(perform: configureView)
- .navigationTitle("Calibrations")
- .navigationBarItems(trailing: EditButton().disabled(state.calibrations.isEmpty))
- .navigationBarTitleDisplayMode(.automatic)
- }
- private func delete(at offsets: IndexSet) {
- state.removeAtIndex(offsets[offsets.startIndex])
- }
- }
- }
|