| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- import SwiftUI
- import Swinject
- extension Calibrations {
- struct RootView: BaseView {
- let resolver: Resolver
- @StateObject var state = StateModel()
- @Environment(\.colorScheme) var colorScheme
- var color: LinearGradient {
- colorScheme == .dark ? LinearGradient(
- gradient: Gradient(colors: [
- Color.bgDarkBlue,
- Color.bgDarkerDarkBlue
- ]),
- startPoint: .top,
- endPoint: .bottom
- )
- :
- LinearGradient(
- gradient: Gradient(colors: [Color.gray.opacity(0.1)]),
- startPoint: .top,
- endPoint: .bottom
- )
- }
- 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()
- TextFieldWithToolBar(text: $state.newCalibration, placeholder: "0", numberFormatter: formatter)
- Text(state.units.rawValue).foregroundColor(.secondary)
- }
- Button {
- state.addCalibration()
- }
- label: { Text("Add") }
- .disabled(state.newCalibration <= 0)
- }.listRowBackground(Color.chart)
- 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)!)
- }
- }.listRowBackground(Color.chart)
- 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)
- }
- }.listRowBackground(Color.chart)
- if state.calibrations.isNotEmpty {
- Section(header: Text("Chart")) {
- CalibrationsChart().environmentObject(state)
- .frame(minHeight: geo.size.width)
- }.listRowBackground(Color.chart)
- }
- }
- }
- .scrollContentBackground(.hidden).background(color)
- .dynamicTypeSize(...DynamicTypeSize.xxLarge)
- .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])
- }
- }
- }
|