| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- import Charts
- import SwiftUI
- import Swinject
- extension ISFEditor {
- struct RootView: BaseView {
- let resolver: Resolver
- @State var state = StateModel()
- @State private var refreshUI = UUID()
- @State private var now = Date()
- @Namespace private var bottomID
- @Environment(\.colorScheme) var colorScheme
- @Environment(AppState.self) var appState
- private var numberFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = state.units == .mmolL ? 1 : 0
- return formatter
- }
- var saveButton: some View {
- ZStack {
- let shouldDisableButton = state.items.isEmpty || !state.hasChanges
- Rectangle()
- .frame(width: UIScreen.main.bounds.width, height: 65)
- .foregroundStyle(colorScheme == .dark ? Color.bgDarkerDarkBlue : Color.white)
- .background(.thinMaterial)
- .opacity(0.8)
- .clipShape(Rectangle())
- Group {
- HStack {
- HStack {
- if state.shouldDisplaySaving {
- ProgressView().padding(.trailing, 10)
- }
- Button {
- let impactHeavy = UIImpactFeedbackGenerator(style: .heavy)
- impactHeavy.impactOccurred()
- state.save()
- // deactivate saving display after 1.25 seconds
- DispatchQueue.main.asyncAfter(deadline: .now() + 1.25) {
- state.shouldDisplaySaving = false
- }
- } label: {
- HStack {
- if state.shouldDisplaySaving {
- ProgressView().padding(.trailing, 10)
- }
- Text(state.shouldDisplaySaving ? "Saving..." : "Save")
- }
- .frame(width: UIScreen.main.bounds.width * 0.9, alignment: .center)
- .padding(10)
- }
- }
- .frame(width: UIScreen.main.bounds.width * 0.9, alignment: .center)
- .disabled(shouldDisableButton)
- .background(shouldDisableButton ? Color(.systemGray4) : Color(.systemBlue))
- .tint(.white)
- .clipShape(RoundedRectangle(cornerRadius: 8))
- }
- }.padding(5)
- }
- }
- var body: some View {
- ScrollViewReader { proxy in
- VStack(spacing: 0) {
- ScrollView {
- LazyVStack {
- VStack(alignment: .leading, spacing: 0) {
- // Chart visualization
- if !state.items.isEmpty {
- isfChart
- .frame(height: 180)
- .padding()
- .background(Color.chart.opacity(0.65))
- .clipShape(
- .rect(
- topLeadingRadius: 10,
- bottomLeadingRadius: 0,
- bottomTrailingRadius: 0,
- topTrailingRadius: 10
- )
- )
- .padding(.horizontal)
- .padding(.top)
- }
- // ISF list
- TherapySettingEditorView(
- items: $state.therapyItems,
- unit: state.units == .mgdL ? .mgdLPerUnit : .mmolLPerUnit,
- timeOptions: state.timeValues,
- valueOptions: state.rateValues,
- validateOnDelete: state.validate,
- onItemAdded: {
- withAnimation {
- proxy.scrollTo(bottomID, anchor: .bottom)
- }
- }
- )
- .padding(.horizontal)
- HStack {
- Image(systemName: "hand.draw.fill")
- .padding(.leading)
- Text("Swipe to delete a single entry. Tap on it, to edit its time or value.")
- .padding(.trailing)
- }
- .font(.subheadline)
- .fontWeight(.light)
- .foregroundStyle(.secondary)
- .padding()
- }
- }
- }
- saveButton
- }
- .background(appState.trioBackgroundColor(for: colorScheme))
- .onAppear(perform: configureView)
- .navigationTitle("Insulin Sensitivities")
- .navigationBarTitleDisplayMode(.automatic)
- .onAppear {
- state.validate()
- state.therapyItems = state.getTherapyItems()
- }
- .onChange(of: state.therapyItems) { _, newItems in
- state.updateFromTherapyItems(newItems)
- refreshUI = UUID()
- }
- }
- }
- // Chart for visualizing ISF profile
- private var isfChart: some View {
- Chart {
- ForEach(Array(state.items.enumerated()), id: \.element.id) { index, item in
- let displayValue = state.rateValues[item.rateIndex]
- let startDate = Calendar.current
- .startOfDay(for: now)
- .addingTimeInterval(state.timeValues[item.timeIndex])
- var offset: TimeInterval {
- if state.items.count > index + 1 {
- return state.timeValues[state.items[index + 1].timeIndex]
- } else {
- return state.timeValues.last! + 30 * 60
- }
- }
- let endDate = Calendar.current.startOfDay(for: now).addingTimeInterval(offset)
- RectangleMark(
- xStart: .value("start", startDate),
- xEnd: .value("end", endDate),
- yStart: .value("rate-start", displayValue),
- yEnd: .value("rate-end", 0)
- ).foregroundStyle(
- .linearGradient(
- colors: [
- Color.cyan.opacity(0.6),
- Color.cyan.opacity(0.1)
- ],
- startPoint: .bottom,
- endPoint: .top
- )
- ).alignsMarkStylesWithPlotArea()
- LineMark(x: .value("End Date", startDate), y: .value("ISF", displayValue))
- .lineStyle(.init(lineWidth: 1)).foregroundStyle(Color.cyan)
- LineMark(x: .value("Start Date", endDate), y: .value("ISF", displayValue))
- .lineStyle(.init(lineWidth: 1)).foregroundStyle(Color.cyan)
- }
- }
- .id(refreshUI) // Force chart update
- .chartXAxis {
- AxisMarks(values: .automatic(desiredCount: 6)) { _ in
- AxisValueLabel(format: .dateTime.hour())
- AxisGridLine(centered: true, stroke: StrokeStyle(lineWidth: 1, dash: [2, 4]))
- }
- }
- .chartXScale(
- domain: Calendar.current.startOfDay(for: now) ... Calendar.current.startOfDay(for: now)
- .addingTimeInterval(60 * 60 * 24)
- )
- .chartYAxis {
- AxisMarks(values: .automatic(desiredCount: 4)) { _ in
- AxisValueLabel()
- AxisGridLine(centered: true, stroke: StrokeStyle(lineWidth: 1, dash: [2, 4]))
- }
- }
- }
- }
- }
|