| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061 |
- import Algorithms
- import SwiftDate
- import SwiftUI
- private enum PredictionType: Hashable {
- case iob
- case cob
- case zt
- case uam
- }
- struct DotInfo {
- let rect: CGRect
- let value: Decimal
- }
- typealias GlucoseYRange = (minValue: Int, minY: CGFloat, maxValue: Int, maxY: CGFloat)
- struct MainChartView: View {
- private enum Config {
- static let endID = "End"
- static let basalHeight: CGFloat = 80
- static let topYPadding: CGFloat = 20
- static let bottomYPadding: CGFloat = 80
- static let minAdditionalWidth: CGFloat = 150
- static let maxGlucose = 270
- static let minGlucose = 45
- static let yLinesCount = 5
- static let glucoseScale: CGFloat = 2 // default 2
- static let bolusSize: CGFloat = 8
- static let bolusScale: CGFloat = 2.5
- static let carbsSize: CGFloat = 10
- static let carbsScale: CGFloat = 0.3
- }
- @Binding var glucose: [BloodGlucose]
- @Binding var suggestion: Suggestion?
- @Binding var tempBasals: [PumpHistoryEvent]
- @Binding var boluses: [PumpHistoryEvent]
- @Binding var suspensions: [PumpHistoryEvent]
- @Binding var hours: Int
- @Binding var maxBasal: Decimal
- @Binding var autotunedBasalProfile: [BasalProfileEntry]
- @Binding var basalProfile: [BasalProfileEntry]
- @Binding var tempTargets: [TempTarget]
- @Binding var carbs: [CarbsEntry]
- @Binding var timerDate: Date
- @Binding var units: GlucoseUnits
- @Binding var smooth: Bool
- @Binding var highGlucose: Decimal
- @Binding var lowGlucose: Decimal
- @Binding var screenHours: Int
- @Binding var displayXgridLines: Bool
- @Binding var displayYgridLines: Bool
- @Binding var thresholdLines: Bool
- @State var didAppearTrigger = false
- @State private var glucoseDots: [CGRect] = []
- @State private var unSmoothedGlucoseDots: [CGRect] = []
- @State private var predictionDots: [PredictionType: [CGRect]] = [:]
- @State private var bolusDots: [DotInfo] = []
- @State private var bolusPath = Path()
- @State private var tempBasalPath = Path()
- @State private var regularBasalPath = Path()
- @State private var tempTargetsPath = Path()
- @State private var suspensionsPath = Path()
- @State private var carbsDots: [DotInfo] = []
- @State private var carbsPath = Path()
- @State private var fpuDots: [DotInfo] = []
- @State private var fpuPath = Path()
- @State private var glucoseYRange: GlucoseYRange = (0, 0, 0, 0)
- @State private var offset: CGFloat = 0
- @State private var cachedMaxBasalRate: Decimal?
- private let calculationQueue = DispatchQueue(label: "MainChartView.calculationQueue")
- private var dateFormatter: DateFormatter {
- let formatter = DateFormatter()
- formatter.timeStyle = .short
- return formatter
- }
- private var date24Formatter: DateFormatter {
- let formatter = DateFormatter()
- formatter.locale = Locale(identifier: "en_US_POSIX")
- formatter.setLocalizedDateFormatFromTemplate("HH")
- return formatter
- }
- private var glucoseFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 1
- return formatter
- }
- private var bolusFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.minimumIntegerDigits = 0
- formatter.maximumFractionDigits = 2
- formatter.decimalSeparator = "."
- return formatter
- }
- private var carbsFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 0
- return formatter
- }
- private var fpuFormatter: NumberFormatter {
- let formatter = NumberFormatter()
- formatter.numberStyle = .decimal
- formatter.maximumFractionDigits = 1
- formatter.decimalSeparator = "."
- formatter.minimumIntegerDigits = 0
- return formatter
- }
- @Environment(\.horizontalSizeClass) var hSizeClass
- @Environment(\.verticalSizeClass) var vSizeClass
- // MARK: - Views
- var body: some View {
- GeometryReader { geo in
- ZStack(alignment: .leading) {
- yGridView(fullSize: geo.size)
- mainScrollView(fullSize: geo.size)
- glucoseLabelsView(fullSize: geo.size)
- }
- .onChange(of: hSizeClass) { _ in
- update(fullSize: geo.size)
- }
- .onChange(of: vSizeClass) { _ in
- update(fullSize: geo.size)
- }
- .onChange(of: screenHours) { _ in
- update(fullSize: geo.size)
- // scroll.scrollTo(Config.endID, anchor: .trailing)
- }
- .onReceive(
- Foundation.NotificationCenter.default
- .publisher(for: UIDevice.orientationDidChangeNotification)
- ) { _ in
- update(fullSize: geo.size)
- }
- }
- }
- private func mainScrollView(fullSize: CGSize) -> some View {
- ScrollView(.horizontal, showsIndicators: false) {
- ScrollViewReader { scroll in
- ZStack(alignment: .top) {
- tempTargetsView(fullSize: fullSize).drawingGroup()
- basalView(fullSize: fullSize).drawingGroup()
- mainView(fullSize: fullSize).id(Config.endID)
- .drawingGroup()
- .onChange(of: glucose) { _ in
- scroll.scrollTo(Config.endID, anchor: .trailing)
- }
- .onChange(of: suggestion) { _ in
- scroll.scrollTo(Config.endID, anchor: .trailing)
- }
- .onChange(of: tempBasals) { _ in
- scroll.scrollTo(Config.endID, anchor: .trailing)
- }
- .onAppear {
- // add trigger to the end of main queue
- DispatchQueue.main.async {
- scroll.scrollTo(Config.endID, anchor: .trailing)
- didAppearTrigger = true
- }
- }
- }
- }
- }
- }
- private func yGridView(fullSize: CGSize) -> some View {
- let useColour = displayYgridLines ? Color.secondary : Color.clear
- return ZStack {
- Path { path in
- let range = glucoseYRange
- let step = (range.maxY - range.minY) / CGFloat(Config.yLinesCount)
- for line in 0 ... Config.yLinesCount {
- path.move(to: CGPoint(x: 0, y: range.minY + CGFloat(line) * step))
- path.addLine(to: CGPoint(x: fullSize.width, y: range.minY + CGFloat(line) * step))
- }
- }.stroke(useColour, lineWidth: 0.15)
- // horizontal limits
- if thresholdLines {
- let range = glucoseYRange
- let topstep = (range.maxY - range.minY) / CGFloat(range.maxValue - range.minValue) *
- (CGFloat(range.maxValue) - CGFloat(highGlucose))
- if CGFloat(range.maxValue) > CGFloat(highGlucose) {
- Path { path in
- path.move(to: CGPoint(x: 0, y: range.minY + topstep))
- path.addLine(to: CGPoint(x: fullSize.width, y: range.minY + topstep))
- }.stroke(Color.loopYellow, lineWidth: 0.5) // .StrokeStyle(lineWidth: 0.5, dash: [5])
- }
- let yrange = glucoseYRange
- let bottomstep = (yrange.maxY - yrange.minY) / CGFloat(yrange.maxValue - yrange.minValue) *
- (CGFloat(yrange.maxValue) - CGFloat(lowGlucose))
- if CGFloat(yrange.minValue) < CGFloat(lowGlucose) {
- Path { path in
- path.move(to: CGPoint(x: 0, y: yrange.minY + bottomstep))
- path.addLine(to: CGPoint(x: fullSize.width, y: yrange.minY + bottomstep))
- }.stroke(Color.loopRed, lineWidth: 0.5)
- }
- }
- }
- }
- private func glucoseLabelsView(fullSize: CGSize) -> some View {
- ForEach(0 ..< Config.yLinesCount + 1, id: \.self) { line -> AnyView in
- let range = glucoseYRange
- let yStep = (range.maxY - range.minY) / CGFloat(Config.yLinesCount)
- let valueStep = Double(range.maxValue - range.minValue) / Double(Config.yLinesCount)
- let value = round(Double(range.maxValue) - Double(line) * valueStep) *
- (units == .mmolL ? Double(GlucoseUnits.exchangeRate) : 1)
- return Text(glucoseFormatter.string(from: value as NSNumber)!)
- .position(CGPoint(x: fullSize.width - 12, y: range.minY + CGFloat(line) * yStep))
- .font(.caption2)
- .asAny()
- }
- }
- private func basalView(fullSize: CGSize) -> some View {
- ZStack {
- tempBasalPath.fill(Color.basal.opacity(0.5))
- tempBasalPath.stroke(Color.insulin, lineWidth: 1)
- regularBasalPath.stroke(Color.insulin, style: StrokeStyle(lineWidth: 0.7, dash: [4]))
- suspensionsPath.stroke(Color.loopGray.opacity(0.7), style: StrokeStyle(lineWidth: 0.7)).scaleEffect(x: 1, y: -1)
- suspensionsPath.fill(Color.loopGray.opacity(0.2)).scaleEffect(x: 1, y: -1)
- }
- .scaleEffect(x: 1, y: -1)
- .frame(width: fullGlucoseWidth(viewWidth: fullSize.width) + additionalWidth(viewWidth: fullSize.width))
- .frame(maxHeight: Config.basalHeight)
- .background(Color.secondary.opacity(0.1))
- .onChange(of: tempBasals) { _ in
- calculateBasalPoints(fullSize: fullSize)
- }
- .onChange(of: suspensions) { _ in
- calculateSuspensions(fullSize: fullSize)
- }
- .onChange(of: maxBasal) { _ in
- calculateBasalPoints(fullSize: fullSize)
- }
- .onChange(of: autotunedBasalProfile) { _ in
- calculateBasalPoints(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- calculateBasalPoints(fullSize: fullSize)
- }
- }
- private func mainView(fullSize: CGSize) -> some View {
- Group {
- VStack {
- ZStack {
- xGridView(fullSize: fullSize)
- carbsView(fullSize: fullSize)
- fpuView(fullSize: fullSize)
- bolusView(fullSize: fullSize)
- if smooth { unSmoothedGlucoseView(fullSize: fullSize) }
- glucoseView(fullSize: fullSize)
- predictionsView(fullSize: fullSize)
- }
- timeLabelsView(fullSize: fullSize)
- }
- }
- .frame(width: fullGlucoseWidth(viewWidth: fullSize.width) + additionalWidth(viewWidth: fullSize.width))
- }
- @Environment(\.colorScheme) var colorScheme
- private func xGridView(fullSize: CGSize) -> some View {
- let useColour = displayXgridLines ? Color.secondary : Color.clear
- return ZStack {
- Path { path in
- for hour in 0 ..< hours + hours {
- let x = firstHourPosition(viewWidth: fullSize.width) +
- oneSecondStep(viewWidth: fullSize.width) *
- CGFloat(hour) * CGFloat(1.hours.timeInterval)
- path.move(to: CGPoint(x: x, y: 0))
- path.addLine(to: CGPoint(x: x, y: fullSize.height - 20))
- }
- }
- .stroke(useColour, lineWidth: 0.15)
- Path { path in // vertical timeline
- let x = timeToXCoordinate(timerDate.timeIntervalSince1970, fullSize: fullSize)
- path.move(to: CGPoint(x: x, y: 0))
- path.addLine(to: CGPoint(x: x, y: fullSize.height - 20))
- }
- .stroke(
- colorScheme == .dark ? Color.white : Color.black,
- style: StrokeStyle(lineWidth: 0.5, dash: [5])
- )
- }
- }
- private func timeLabelsView(fullSize: CGSize) -> some View {
- let format = screenHours > 6 ? date24Formatter : dateFormatter
- return ZStack {
- // X time labels
- ForEach(0 ..< hours + hours) { hour in
- Text(format.string(from: firstHourDate().addingTimeInterval(hour.hours.timeInterval)))
- .font(.caption)
- .position(
- x: firstHourPosition(viewWidth: fullSize.width) +
- oneSecondStep(viewWidth: fullSize.width) *
- CGFloat(hour) * CGFloat(1.hours.timeInterval),
- y: 10.0
- )
- .foregroundColor(.secondary)
- }
- }.frame(maxHeight: 20)
- }
- private func glucoseView(fullSize: CGSize) -> some View {
- Path { path in
- for rect in glucoseDots {
- path.addEllipse(in: rect)
- }
- }
- .fill(Color.loopGreen)
- .onChange(of: glucose) { _ in
- update(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- update(fullSize: fullSize)
- }
- .onReceive(Foundation.NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
- update(fullSize: fullSize)
- }
- }
- private func unSmoothedGlucoseView(fullSize: CGSize) -> some View {
- Path { path in
- var lines: [CGPoint] = []
- for rect in unSmoothedGlucoseDots {
- lines.append(CGPoint(x: rect.midX, y: rect.midY))
- path.addEllipse(in: rect)
- }
- path.addLines(lines)
- }
- .stroke(Color.loopGray, lineWidth: 0.5)
- .onChange(of: glucose) { _ in
- update(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- update(fullSize: fullSize)
- }
- .onReceive(Foundation.NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)) { _ in
- update(fullSize: fullSize)
- }
- }
- private func bolusView(fullSize: CGSize) -> some View {
- ZStack {
- bolusPath
- .fill(Color.insulin)
- bolusPath
- .stroke(Color.primary, lineWidth: 0.5)
- ForEach(bolusDots, id: \.rect.minX) { info -> AnyView in
- let position = CGPoint(x: info.rect.midX, y: info.rect.maxY + 8)
- return Text(bolusFormatter.string(from: info.value as NSNumber)!).font(.caption2)
- .position(position)
- .asAny()
- }
- }
- .onChange(of: boluses) { _ in
- calculateBolusDots(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- calculateBolusDots(fullSize: fullSize)
- }
- }
- private func carbsView(fullSize: CGSize) -> some View {
- ZStack {
- carbsPath
- .fill(Color.loopYellow)
- carbsPath
- .stroke(Color.primary, lineWidth: 0.5)
- ForEach(carbsDots, id: \.rect.minX) { info -> AnyView in
- let position = CGPoint(x: info.rect.midX, y: info.rect.minY - 8)
- return Text(carbsFormatter.string(from: info.value as NSNumber)!).font(.caption2)
- .position(position)
- .asAny()
- }
- }
- .onChange(of: carbs) { _ in
- calculateCarbsDots(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- calculateCarbsDots(fullSize: fullSize)
- }
- }
- private func fpuView(fullSize: CGSize) -> some View {
- ZStack {
- fpuPath
- .fill(Color.red)
- fpuPath
- .stroke(Color.primary, lineWidth: 0.5)
- ForEach(fpuDots, id: \.rect.minX) { info -> AnyView in
- let position = CGPoint(x: info.rect.midX, y: info.rect.minY - 8)
- return Text(fpuFormatter.string(from: info.value as NSNumber)!).font(.caption2)
- .position(position)
- .asAny()
- }
- }
- .onChange(of: carbs) { _ in
- calculateFPUsDots(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- calculateFPUsDots(fullSize: fullSize)
- }
- }
- private func tempTargetsView(fullSize: CGSize) -> some View {
- ZStack {
- tempTargetsPath
- .fill(Color.tempBasal.opacity(0.5))
- tempTargetsPath
- .stroke(Color.basal.opacity(0.5), lineWidth: 1)
- }
- .onChange(of: glucose) { _ in
- calculateTempTargetsRects(fullSize: fullSize)
- }
- .onChange(of: tempTargets) { _ in
- calculateTempTargetsRects(fullSize: fullSize)
- }
- .onChange(of: didAppearTrigger) { _ in
- calculateTempTargetsRects(fullSize: fullSize)
- }
- }
- private func predictionsView(fullSize: CGSize) -> some View {
- Group {
- Path { path in
- for rect in predictionDots[.iob] ?? [] {
- path.addEllipse(in: rect)
- }
- }.fill(Color.insulin)
- Path { path in
- for rect in predictionDots[.cob] ?? [] {
- path.addEllipse(in: rect)
- }
- }.fill(Color.loopYellow)
- Path { path in
- for rect in predictionDots[.zt] ?? [] {
- path.addEllipse(in: rect)
- }
- }.fill(Color.zt)
- Path { path in
- for rect in predictionDots[.uam] ?? [] {
- path.addEllipse(in: rect)
- }
- }.fill(Color.uam)
- }
- .onChange(of: suggestion) { _ in
- update(fullSize: fullSize)
- }
- }
- }
- // MARK: - Calculations
- extension MainChartView {
- private func update(fullSize: CGSize) {
- calculatePredictionDots(fullSize: fullSize, type: .iob)
- calculatePredictionDots(fullSize: fullSize, type: .cob)
- calculatePredictionDots(fullSize: fullSize, type: .zt)
- calculatePredictionDots(fullSize: fullSize, type: .uam)
- calculateGlucoseDots(fullSize: fullSize)
- calculateUnSmoothedGlucoseDots(fullSize: fullSize)
- calculateBolusDots(fullSize: fullSize)
- calculateCarbsDots(fullSize: fullSize)
- calculateFPUsDots(fullSize: fullSize)
- calculateTempTargetsRects(fullSize: fullSize)
- calculateBasalPoints(fullSize: fullSize)
- calculateSuspensions(fullSize: fullSize)
- }
- private func calculateGlucoseDots(fullSize: CGSize) {
- calculationQueue.async {
- let dots = glucose.concurrentMap { value -> CGRect in
- let position = glucoseToCoordinate(value, fullSize: fullSize)
- return CGRect(x: position.x - 2, y: position.y - 2, width: 4, height: 4)
- }
- let range = self.getGlucoseYRange(fullSize: fullSize)
- DispatchQueue.main.async {
- glucoseYRange = range
- glucoseDots = dots
- }
- }
- }
- private func calculateUnSmoothedGlucoseDots(fullSize: CGSize) {
- calculationQueue.async {
- let dots = glucose.concurrentMap { value -> CGRect in
- let position = UnSmoothedGlucoseToCoordinate(value, fullSize: fullSize)
- return CGRect(x: position.x - 2, y: position.y - 2, width: 4, height: 4)
- }
- let range = self.getGlucoseYRange(fullSize: fullSize)
- DispatchQueue.main.async {
- glucoseYRange = range
- unSmoothedGlucoseDots = dots
- }
- }
- }
- private func calculateBolusDots(fullSize: CGSize) {
- calculationQueue.async {
- let dots = boluses.map { value -> DotInfo in
- let center = timeToInterpolatedPoint(value.timestamp.timeIntervalSince1970, fullSize: fullSize)
- let size = Config.bolusSize + CGFloat(value.amount ?? 0) * Config.bolusScale
- let rect = CGRect(x: center.x - size / 2, y: center.y - size / 2, width: size, height: size)
- return DotInfo(rect: rect, value: value.amount ?? 0)
- }
- let path = Path { path in
- for dot in dots {
- path.addEllipse(in: dot.rect)
- }
- }
- DispatchQueue.main.async {
- bolusDots = dots
- bolusPath = path
- }
- }
- }
- private func calculateCarbsDots(fullSize: CGSize) {
- calculationQueue.async {
- let realCarbs = carbs.filter { !($0.isFPU ?? false) }
- let dots = realCarbs.map { value -> DotInfo in
- let center = timeToInterpolatedPoint(value.createdAt.timeIntervalSince1970, fullSize: fullSize)
- let size = Config.carbsSize + CGFloat(value.carbs) * Config.carbsScale
- let rect = CGRect(x: center.x - size / 2, y: center.y - size / 2, width: size, height: size)
- return DotInfo(rect: rect, value: value.carbs)
- }
- let path = Path { path in
- for dot in dots {
- path.addEllipse(in: dot.rect)
- }
- }
- DispatchQueue.main.async {
- carbsDots = dots
- carbsPath = path
- }
- }
- }
- private func calculateFPUsDots(fullSize: CGSize) {
- calculationQueue.async {
- let fpus = carbs.filter { $0.isFPU ?? false }
- let dots = fpus.map { value -> DotInfo in
- let center = timeToInterpolatedPoint(value.createdAt.timeIntervalSince1970, fullSize: fullSize)
- let size = Config.carbsSize + CGFloat(value.carbs) * Config.carbsScale
- let rect = CGRect(x: center.x - size / 2, y: center.y - size / 2, width: size, height: size)
- return DotInfo(rect: rect, value: value.carbs)
- }
- let path = Path { path in
- for dot in dots {
- path.addEllipse(in: dot.rect)
- }
- }
- DispatchQueue.main.async {
- fpuDots = dots
- fpuPath = path
- }
- }
- }
- private func calculatePredictionDots(fullSize: CGSize, type: PredictionType) {
- calculationQueue.async {
- let values: [Int] = { () -> [Int] in
- switch type {
- case .iob:
- return suggestion?.predictions?.iob ?? []
- case .cob:
- return suggestion?.predictions?.cob ?? []
- case .zt:
- return suggestion?.predictions?.zt ?? []
- case .uam:
- return suggestion?.predictions?.uam ?? []
- }
- }()
- var index = 0
- let dots = values.map { value -> CGRect in
- let position = predictionToCoordinate(value, fullSize: fullSize, index: index)
- index += 1
- return CGRect(x: position.x - 2, y: position.y - 2, width: 4, height: 4)
- }
- DispatchQueue.main.async {
- predictionDots[type] = dots
- }
- }
- }
- private func calculateBasalPoints(fullSize: CGSize) {
- calculationQueue.async {
- self.cachedMaxBasalRate = nil
- let dayAgoTime = Date().addingTimeInterval(-1.days.timeInterval).timeIntervalSince1970
- let firstTempTime = (tempBasals.first?.timestamp ?? Date()).timeIntervalSince1970
- var lastTimeEnd = firstTempTime
- let firstRegularBasalPoints = findRegularBasalPoints(
- timeBegin: dayAgoTime,
- timeEnd: firstTempTime,
- fullSize: fullSize,
- autotuned: false
- )
- let tempBasalPoints = firstRegularBasalPoints + tempBasals.chunks(ofCount: 2).map { chunk -> [CGPoint] in
- let chunk = Array(chunk)
- guard chunk.count == 2, chunk[0].type == .tempBasal, chunk[1].type == .tempBasalDuration else { return [] }
- let timeBegin = chunk[0].timestamp.timeIntervalSince1970
- let timeEnd = timeBegin + (chunk[1].durationMin ?? 0).minutes.timeInterval
- let rateCost = Config.basalHeight / CGFloat(maxBasalRate())
- let x0 = timeToXCoordinate(timeBegin, fullSize: fullSize)
- let y0 = Config.basalHeight - CGFloat(chunk[0].rate ?? 0) * rateCost
- let regularPoints = findRegularBasalPoints(
- timeBegin: lastTimeEnd,
- timeEnd: timeBegin,
- fullSize: fullSize,
- autotuned: false
- )
- lastTimeEnd = timeEnd
- return regularPoints + [CGPoint(x: x0, y: y0)]
- }.flatMap { $0 }
- let tempBasalPath = Path { path in
- var yPoint: CGFloat = Config.basalHeight
- path.move(to: CGPoint(x: 0, y: yPoint))
- for point in tempBasalPoints {
- path.addLine(to: CGPoint(x: point.x, y: yPoint))
- path.addLine(to: point)
- yPoint = point.y
- }
- let lastPoint = lastBasalPoint(fullSize: fullSize)
- path.addLine(to: CGPoint(x: lastPoint.x, y: yPoint))
- path.addLine(to: CGPoint(x: lastPoint.x, y: Config.basalHeight))
- path.addLine(to: CGPoint(x: 0, y: Config.basalHeight))
- }
- let adjustForOptionalExtraHours = screenHours > 12 ? screenHours - 12 : 0
- let endDateTime = dayAgoTime + min(max(screenHours - adjustForOptionalExtraHours, 12), 24).hours
- .timeInterval + min(max(screenHours - adjustForOptionalExtraHours, 12), 24).hours
- .timeInterval
- let autotunedBasalPoints = findRegularBasalPoints(
- timeBegin: dayAgoTime,
- timeEnd: endDateTime,
- fullSize: fullSize,
- autotuned: true
- )
- let autotunedBasalPath = Path { path in
- var yPoint: CGFloat = Config.basalHeight
- path.move(to: CGPoint(x: -50, y: yPoint))
- for point in autotunedBasalPoints {
- path.addLine(to: CGPoint(x: point.x, y: yPoint))
- path.addLine(to: point)
- yPoint = point.y
- }
- path.addLine(to: CGPoint(x: timeToXCoordinate(endDateTime, fullSize: fullSize), y: yPoint))
- }
- DispatchQueue.main.async {
- self.tempBasalPath = tempBasalPath
- self.regularBasalPath = autotunedBasalPath
- }
- }
- }
- private func calculateSuspensions(fullSize: CGSize) {
- calculationQueue.async {
- var rects = suspensions.windows(ofCount: 2).map { window -> CGRect? in
- let window = Array(window)
- guard window[0].type == .pumpSuspend, window[1].type == .pumpResume else { return nil }
- let x0 = self.timeToXCoordinate(window[0].timestamp.timeIntervalSince1970, fullSize: fullSize)
- let x1 = self.timeToXCoordinate(window[1].timestamp.timeIntervalSince1970, fullSize: fullSize)
- return CGRect(x: x0, y: 0, width: x1 - x0, height: Config.basalHeight * 0.7)
- }
- let firstRec = self.suspensions.first.flatMap { event -> CGRect? in
- guard event.type == .pumpResume else { return nil }
- let tbrTime = self.tempBasals.last { $0.timestamp < event.timestamp }
- .map { $0.timestamp.timeIntervalSince1970 + TimeInterval($0.durationMin ?? 0) * 60 } ?? Date()
- .addingTimeInterval(-1.days.timeInterval).timeIntervalSince1970
- let x0 = self.timeToXCoordinate(tbrTime, fullSize: fullSize)
- let x1 = self.timeToXCoordinate(event.timestamp.timeIntervalSince1970, fullSize: fullSize)
- return CGRect(
- x: x0,
- y: 0,
- width: x1 - x0,
- height: Config.basalHeight * 0.7
- )
- }
- let lastRec = self.suspensions.last.flatMap { event -> CGRect? in
- guard event.type == .pumpSuspend else { return nil }
- let tbrTimeX = self.tempBasals.first { $0.timestamp > event.timestamp }
- .map { self.timeToXCoordinate($0.timestamp.timeIntervalSince1970, fullSize: fullSize) }
- let x0 = self.timeToXCoordinate(event.timestamp.timeIntervalSince1970, fullSize: fullSize)
- let x1 = tbrTimeX ?? self.fullGlucoseWidth(viewWidth: fullSize.width) + self
- .additionalWidth(viewWidth: fullSize.width)
- return CGRect(x: x0, y: 0, width: x1 - x0, height: Config.basalHeight * 0.7)
- }
- rects.append(firstRec)
- rects.append(lastRec)
- let path = Path { path in
- path.addRects(rects.compactMap { $0 })
- }
- DispatchQueue.main.async {
- suspensionsPath = path
- }
- }
- }
- private func maxBasalRate() -> Decimal {
- if let cached = cachedMaxBasalRate {
- return cached
- }
- let maxRegularBasalRate = max(
- basalProfile.map(\.rate).max() ?? maxBasal,
- autotunedBasalProfile.map(\.rate).max() ?? maxBasal
- )
- var maxTempBasalRate = tempBasals.compactMap(\.rate).max() ?? maxRegularBasalRate
- if maxTempBasalRate == 0 {
- maxTempBasalRate = maxRegularBasalRate
- }
- cachedMaxBasalRate = max(maxTempBasalRate, maxRegularBasalRate)
- return cachedMaxBasalRate ?? maxBasal
- }
- private func calculateTempTargetsRects(fullSize: CGSize) {
- calculationQueue.async {
- var rects = tempTargets.map { tempTarget -> CGRect in
- let x0 = timeToXCoordinate(tempTarget.createdAt.timeIntervalSince1970, fullSize: fullSize)
- let y0 = glucoseToYCoordinate(Int(tempTarget.targetTop ?? 0), fullSize: fullSize)
- let x1 = timeToXCoordinate(
- tempTarget.createdAt.timeIntervalSince1970 + Int(tempTarget.duration).minutes.timeInterval,
- fullSize: fullSize
- )
- let y1 = glucoseToYCoordinate(Int(tempTarget.targetBottom ?? 0), fullSize: fullSize)
- return CGRect(
- x: x0,
- y: y0 - 3,
- width: x1 - x0,
- height: y1 - y0 + 6
- )
- }
- if rects.count > 1 {
- rects = rects.reduce([]) { result, rect -> [CGRect] in
- guard var last = result.last else { return [rect] }
- if last.origin.x + last.width > rect.origin.x {
- last.size.width = rect.origin.x - last.origin.x
- }
- var res = Array(result.dropLast())
- res.append(contentsOf: [last, rect])
- return res
- }
- }
- let path = Path { path in
- path.addRects(rects)
- }
- DispatchQueue.main.async {
- tempTargetsPath = path
- }
- }
- }
- private func findRegularBasalPoints(
- timeBegin: TimeInterval,
- timeEnd: TimeInterval,
- fullSize: CGSize,
- autotuned: Bool
- ) -> [CGPoint] {
- guard timeBegin < timeEnd else {
- return []
- }
- let beginDate = Date(timeIntervalSince1970: timeBegin)
- let calendar = Calendar.current
- let startOfDay = calendar.startOfDay(for: beginDate)
- let profile = autotuned ? autotunedBasalProfile : basalProfile
- let basalNormalized = profile.map {
- (
- time: startOfDay.addingTimeInterval($0.minutes.minutes.timeInterval).timeIntervalSince1970,
- rate: $0.rate
- )
- } + profile.map {
- (
- time: startOfDay.addingTimeInterval($0.minutes.minutes.timeInterval + 1.days.timeInterval).timeIntervalSince1970,
- rate: $0.rate
- )
- } + profile.map {
- (
- time: startOfDay.addingTimeInterval($0.minutes.minutes.timeInterval + 2.days.timeInterval).timeIntervalSince1970,
- rate: $0.rate
- )
- }
- let basalTruncatedPoints = basalNormalized.windows(ofCount: 2)
- .compactMap { window -> CGPoint? in
- let window = Array(window)
- if window[0].time < timeBegin, window[1].time < timeBegin {
- return nil
- }
- let rateCost = Config.basalHeight / CGFloat(maxBasalRate())
- if window[0].time < timeBegin, window[1].time >= timeBegin {
- let x = timeToXCoordinate(timeBegin, fullSize: fullSize)
- let y = Config.basalHeight - CGFloat(window[0].rate) * rateCost
- return CGPoint(x: x, y: y)
- }
- if window[0].time >= timeBegin, window[0].time < timeEnd {
- let x = timeToXCoordinate(window[0].time, fullSize: fullSize)
- let y = Config.basalHeight - CGFloat(window[0].rate) * rateCost
- return CGPoint(x: x, y: y)
- }
- return nil
- }
- return basalTruncatedPoints
- }
- private func lastBasalPoint(fullSize: CGSize) -> CGPoint {
- let lastBasal = Array(tempBasals.suffix(2))
- guard lastBasal.count == 2 else {
- return CGPoint(x: timeToXCoordinate(Date().timeIntervalSince1970, fullSize: fullSize), y: Config.basalHeight)
- }
- let endBasalTime = lastBasal[0].timestamp.timeIntervalSince1970 + (lastBasal[1].durationMin?.minutes.timeInterval ?? 0)
- let rateCost = Config.basalHeight / CGFloat(maxBasalRate())
- let x = timeToXCoordinate(endBasalTime, fullSize: fullSize)
- let y = Config.basalHeight - CGFloat(lastBasal[0].rate ?? 0) * rateCost
- return CGPoint(x: x, y: y)
- }
- private func fullGlucoseWidth(viewWidth: CGFloat) -> CGFloat {
- viewWidth * CGFloat(hours) / CGFloat(min(max(screenHours, 2), 24))
- }
- private func additionalWidth(viewWidth: CGFloat) -> CGFloat {
- guard let predictions = suggestion?.predictions,
- let deliveredAt = suggestion?.deliverAt,
- let last = glucose.last
- else {
- return Config.minAdditionalWidth
- }
- let iob = predictions.iob?.count ?? 0
- let zt = predictions.zt?.count ?? 0
- let cob = predictions.cob?.count ?? 0
- let uam = predictions.uam?.count ?? 0
- let max = [iob, zt, cob, uam].max() ?? 0
- let lastDeltaTime = last.dateString.timeIntervalSince(deliveredAt)
- let additionalTime = CGFloat(TimeInterval(max) * 5.minutes.timeInterval - lastDeltaTime)
- let oneSecondWidth = oneSecondStep(viewWidth: viewWidth)
- return Swift.min(Swift.max(additionalTime * oneSecondWidth, Config.minAdditionalWidth), 275)
- }
- private func oneSecondStep(viewWidth: CGFloat) -> CGFloat {
- viewWidth / (CGFloat(min(max(screenHours, 2), 24)) * CGFloat(1.hours.timeInterval))
- }
- private func maxPredValue() -> Int? {
- [
- suggestion?.predictions?.cob ?? [],
- suggestion?.predictions?.iob ?? [],
- suggestion?.predictions?.zt ?? [],
- suggestion?.predictions?.uam ?? []
- ]
- .flatMap { $0 }
- .max()
- }
- private func minPredValue() -> Int? {
- [
- suggestion?.predictions?.cob ?? [],
- suggestion?.predictions?.iob ?? [],
- suggestion?.predictions?.zt ?? [],
- suggestion?.predictions?.uam ?? []
- ]
- .flatMap { $0 }
- .min()
- }
- private func maxTargetValue() -> Int? {
- tempTargets.map { $0.targetTop ?? 0 }.filter { $0 > 0 }.max().map(Int.init)
- }
- private func minTargetValue() -> Int? {
- tempTargets.map { $0.targetBottom ?? 0 }.filter { $0 > 0 }.min().map(Int.init)
- }
- private func glucoseToCoordinate(_ glucoseEntry: BloodGlucose, fullSize: CGSize) -> CGPoint {
- let x = timeToXCoordinate(glucoseEntry.dateString.timeIntervalSince1970, fullSize: fullSize)
- let y = glucoseToYCoordinate(glucoseEntry.glucose ?? 0, fullSize: fullSize)
- return CGPoint(x: x, y: y)
- }
- private func UnSmoothedGlucoseToCoordinate(_ glucoseEntry: BloodGlucose, fullSize: CGSize) -> CGPoint {
- let x = timeToXCoordinate(glucoseEntry.dateString.timeIntervalSince1970, fullSize: fullSize)
- let glucoseValue: Decimal = glucoseEntry.unfiltered ?? Decimal(glucoseEntry.glucose ?? 0)
- let y = glucoseToYCoordinate(Int(glucoseValue), fullSize: fullSize)
- return CGPoint(x: x, y: y)
- }
- private func predictionToCoordinate(_ pred: Int, fullSize: CGSize, index: Int) -> CGPoint {
- guard let deliveredAt = suggestion?.deliverAt else {
- return .zero
- }
- let predTime = deliveredAt.timeIntervalSince1970 + TimeInterval(index) * 5.minutes.timeInterval
- let x = timeToXCoordinate(predTime, fullSize: fullSize)
- let y = glucoseToYCoordinate(pred, fullSize: fullSize)
- return CGPoint(x: x, y: y)
- }
- private func timeToXCoordinate(_ time: TimeInterval, fullSize: CGSize) -> CGFloat {
- let xOffset = -Date().addingTimeInterval(-1.days.timeInterval).timeIntervalSince1970
- let stepXFraction = fullGlucoseWidth(viewWidth: fullSize.width) / CGFloat(hours.hours.timeInterval)
- let x = CGFloat(time + xOffset) * stepXFraction
- return x
- }
- private func glucoseToYCoordinate(_ glucoseValue: Int, fullSize: CGSize) -> CGFloat {
- let topYPaddint = Config.topYPadding + Config.basalHeight
- let bottomYPadding = Config.bottomYPadding
- let (minValue, maxValue) = minMaxYValues()
- let stepYFraction = (fullSize.height - topYPaddint - bottomYPadding) / CGFloat(maxValue - minValue)
- let yOffset = CGFloat(minValue) * stepYFraction
- let y = fullSize.height - CGFloat(glucoseValue) * stepYFraction + yOffset - bottomYPadding
- return y
- }
- private func timeToInterpolatedPoint(_ time: TimeInterval, fullSize: CGSize) -> CGPoint {
- var nextIndex = 0
- for (index, value) in glucose.enumerated() {
- if value.dateString.timeIntervalSince1970 > time {
- nextIndex = index
- break
- }
- }
- let x = timeToXCoordinate(time, fullSize: fullSize)
- guard nextIndex > 0 else {
- let lastY = glucoseToYCoordinate(glucose.last?.glucose ?? 0, fullSize: fullSize)
- return CGPoint(x: x, y: lastY)
- }
- let prevX = timeToXCoordinate(glucose[nextIndex - 1].dateString.timeIntervalSince1970, fullSize: fullSize)
- let prevY = glucoseToYCoordinate(glucose[nextIndex - 1].glucose ?? 0, fullSize: fullSize)
- let nextX = timeToXCoordinate(glucose[nextIndex].dateString.timeIntervalSince1970, fullSize: fullSize)
- let nextY = glucoseToYCoordinate(glucose[nextIndex].glucose ?? 0, fullSize: fullSize)
- let delta = nextX - prevX
- let fraction = (x - prevX) / delta
- return pointInLine(CGPoint(x: prevX, y: prevY), CGPoint(x: nextX, y: nextY), fraction)
- }
- private func minMaxYValues() -> (min: Int, max: Int) {
- var maxValue = glucose.compactMap(\.glucose).max() ?? Config.maxGlucose
- if let maxPredValue = maxPredValue() {
- maxValue = max(maxValue, maxPredValue)
- }
- if let maxTargetValue = maxTargetValue() {
- maxValue = max(maxValue, maxTargetValue)
- }
- var minValue = glucose.compactMap(\.glucose).min() ?? Config.minGlucose
- if let minPredValue = minPredValue() {
- minValue = min(minValue, minPredValue)
- }
- if let minTargetValue = minTargetValue() {
- minValue = min(minValue, minTargetValue)
- }
- if minValue == maxValue {
- minValue = Config.minGlucose
- maxValue = Config.maxGlucose
- }
- // fix the grah y-axis as long as the min and max BG values are within set borders
- if minValue > Config.minGlucose {
- minValue = Config.minGlucose
- }
- if maxValue < Config.maxGlucose {
- maxValue = Config.maxGlucose
- }
- return (min: minValue, max: maxValue)
- }
- private func getGlucoseYRange(fullSize: CGSize) -> GlucoseYRange {
- let topYPaddint = Config.topYPadding + Config.basalHeight
- let bottomYPadding = Config.bottomYPadding
- let (minValue, maxValue) = minMaxYValues()
- let stepYFraction = (fullSize.height - topYPaddint - bottomYPadding) / CGFloat(maxValue - minValue)
- let yOffset = CGFloat(minValue) * stepYFraction
- let maxY = fullSize.height - CGFloat(minValue) * stepYFraction + yOffset - bottomYPadding
- let minY = fullSize.height - CGFloat(maxValue) * stepYFraction + yOffset - bottomYPadding
- return (minValue: minValue, minY: minY, maxValue: maxValue, maxY: maxY)
- }
- private func firstHourDate() -> Date {
- let firstDate = Date().addingTimeInterval(-1.days.timeInterval)
- return firstDate.dateTruncated(from: .minute)!
- }
- private func firstHourPosition(viewWidth: CGFloat) -> CGFloat {
- let firstDate = Date().addingTimeInterval(-1.days.timeInterval)
- let firstHour = firstHourDate()
- let lastDeltaTime = firstHour.timeIntervalSince(firstDate)
- let oneSecondWidth = oneSecondStep(viewWidth: viewWidth)
- return oneSecondWidth * CGFloat(lastDeltaTime)
- }
- }
|