Skip to content

Commit a3558d4

Browse files
Bharat Medirattaps2
Bharat Mediratta
authored andcommitted
Refactor HUD views into LoopUI framework (#284) (#330)
* Rough cut at moving HUD views into their own framework. * Move view code into the HUDViewKit framework directory * Remove HUDViewKit * Add GlucoseTrend and NSTimeInterval directly to WatchApp Extension so that it doesn't have to pull in HUDViewKit * Get all targets to compile with HUDViewKit 1. Make HKUnit extension internal and included it directly into all necessary targets to avoid a conflict with the same extension in LoopKit 2. Publicize any necessary HUDViewKit vars, funcs 3. Store the Int raw value for GlucoseTrend in WatchContext and create a computed property that returns it as a GlucoseTrend object to avoid the conflict where both Loop and WatchApp Extension have their own separate concept of GlucoseTrend. * Rename HUDViewKit to LoopUI * partway through moving layout * WIP * Resize stack view to fill container view * Embed LoopUI framework * Use NibLoadable for HUDView
1 parent 0b7afad commit a3558d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+898
-733
lines changed

Loop Status Extension/Base.lproj/MainInterface.storyboard

+4-274
Large diffs are not rendered by default.

Loop Status Extension/StatusExtensionContext.swift

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import Foundation
1111
import HealthKit
12+
import LoopUI
1213

1314
struct ReservoirContext {
1415
let startDate: Date

Loop Status Extension/StatusViewController.swift

+37-10
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,47 @@
66
// Copyright © 2016 LoopKit Authors. All rights reserved.
77
//
88

9-
import UIKit
10-
import NotificationCenter
11-
import HealthKit
129
import CoreData
10+
import HealthKit
11+
import LoopUI
12+
import NotificationCenter
13+
import UIKit
1314

1415
class StatusViewController: UIViewController, NCWidgetProviding {
15-
16-
@IBOutlet weak var loopCompletionHUD: LoopCompletionHUDView!
17-
@IBOutlet weak var glucoseHUD: GlucoseHUDView!
18-
@IBOutlet weak var basalRateHUD: BasalRateHUDView!
19-
@IBOutlet weak var reservoirVolumeHUD: ReservoirVolumeHUDView!
20-
@IBOutlet weak var batteryHUD: BatteryLevelHUDView!
16+
17+
@IBOutlet weak var hudView: HUDView!
2118
@IBOutlet weak var subtitleLabel: UILabel!
22-
19+
20+
var loopCompletionHUD: LoopCompletionHUDView! {
21+
get {
22+
return hudView.loopCompletionHUD
23+
}
24+
}
25+
26+
var glucoseHUD: GlucoseHUDView! {
27+
get {
28+
return hudView.glucoseHUD
29+
}
30+
}
31+
32+
var basalRateHUD: BasalRateHUDView! {
33+
get {
34+
return hudView.basalRateHUD
35+
}
36+
}
37+
38+
var reservoirVolumeHUD: ReservoirVolumeHUDView! {
39+
get {
40+
return hudView.reservoirVolumeHUD
41+
}
42+
}
43+
44+
var batteryHUD: BatteryLevelHUDView! {
45+
get {
46+
return hudView.batteryHUD
47+
}
48+
}
49+
2350
override func viewDidLoad() {
2451
super.viewDidLoad()
2552
subtitleLabel.alpha = 0

Loop.xcodeproj/project.pbxproj

+262-78
Large diffs are not rendered by default.

Loop/Base.lproj/Main.storyboard

+67-278
Large diffs are not rendered by default.

Loop/Managers/DeviceDataManager.swift

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import GlucoseKit
1414
import HealthKit
1515
import InsulinKit
1616
import LoopKit
17+
import LoopUI
1718
import MinimedKit
1819
import NightscoutUploadKit
1920
import RileyLinkKit

Loop/Managers/WatchDataManager.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ final class WatchDataManager: NSObject, WCSessionDelegate {
118118
context.maxBolus = maxBolus
119119

120120
if let trend = self.deviceDataManager.sensorInfo?.trendType {
121-
context.glucoseTrend = trend
121+
context.glucoseTrendRawValue = trend.rawValue
122122
}
123123

124124
completionHandler(context)

Loop/Models/Glucose.swift

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
//
88

99
import Foundation
10+
import LoopUI
1011
import xDripG5
1112

1213

1314
extension Glucose: SensorDisplayable {
14-
var isStateValid: Bool {
15+
public var isStateValid: Bool {
1516
return state == .ok && status == .ok
1617
}
1718

18-
var stateDescription: String {
19+
public var stateDescription: String {
1920
let status: String
2021
switch self.status {
2122
case .ok:
@@ -29,7 +30,7 @@ extension Glucose: SensorDisplayable {
2930
return String(format: "%1$@ %2$@", String(describing: state), status)
3031
}
3132

32-
var trendType: GlucoseTrend? {
33+
public var trendType: GlucoseTrend? {
3334
guard trend < Int(Int8.max) else {
3435
return nil
3536
}
@@ -52,7 +53,7 @@ extension Glucose: SensorDisplayable {
5253
}
5354
}
5455

55-
var isLocal: Bool {
56+
public var isLocal: Bool {
5657
return true
5758
}
5859
}

Loop/Models/GlucoseG4.swift

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import Foundation
1010
import G4ShareSpy
1111
import HealthKit
1212
import LoopKit
13+
import LoopUI
1314

1415

1516
extension GlucoseG4: GlucoseValue {
@@ -24,23 +25,23 @@ extension GlucoseG4: GlucoseValue {
2425

2526

2627
extension GlucoseG4: SensorDisplayable {
27-
var isStateValid: Bool {
28+
public var isStateValid: Bool {
2829
return glucose >= 20
2930
}
3031

31-
var stateDescription: String {
32+
public var stateDescription: String {
3233
if isStateValid {
3334
return NSLocalizedString("OK", comment: "Sensor state description for the valid state")
3435
} else {
3536
return NSLocalizedString("Needs Attention", comment: "Sensor state description for the non-valid state")
3637
}
3738
}
3839

39-
var trendType: GlucoseTrend? {
40+
public var trendType: GlucoseTrend? {
4041
return GlucoseTrend(rawValue: Int(trend))
4142
}
4243

43-
var isLocal: Bool {
44+
public var isLocal: Bool {
4445
return true
4546
}
4647
}

Loop/Models/MySentryPumpStatusMessageBody.swift

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
//
88

99
import LoopKit
10+
import LoopUI
1011
import MinimedKit
1112

1213

1314
extension MySentryPumpStatusMessageBody: SensorDisplayable {
14-
var isStateValid: Bool {
15+
public var isStateValid: Bool {
1516
switch glucose {
1617
case .active, .off:
1718
return true
@@ -20,7 +21,7 @@ extension MySentryPumpStatusMessageBody: SensorDisplayable {
2021
}
2122
}
2223

23-
var trendType: GlucoseTrend? {
24+
public var trendType: LoopUI.GlucoseTrend? {
2425
guard case .active = glucose else {
2526
return nil
2627
}
@@ -39,7 +40,7 @@ extension MySentryPumpStatusMessageBody: SensorDisplayable {
3940
}
4041
}
4142

42-
var isLocal: Bool {
43+
public var isLocal: Bool {
4344
return true
4445
}
4546

Loop/Models/ShareGlucose+GlucoseKit.swift

+14-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import Foundation
1010
import HealthKit
1111
import LoopKit
12+
import LoopUI
1213
import ShareClient
1314

1415

@@ -24,15 +25,25 @@ extension ShareGlucose: GlucoseValue {
2425

2526

2627
extension ShareGlucose: SensorDisplayable {
27-
var isStateValid: Bool {
28+
public var isStateValid: Bool {
2829
return glucose >= 20
2930
}
3031

31-
var trendType: GlucoseTrend? {
32+
public var trendType: GlucoseTrend? {
3233
return GlucoseTrend(rawValue: Int(trend))
3334
}
3435

35-
var isLocal: Bool {
36+
public var isLocal: Bool {
3637
return false
3738
}
3839
}
40+
41+
extension SensorDisplayable {
42+
public var stateDescription: String {
43+
if isStateValid {
44+
return NSLocalizedString("OK", comment: "Sensor state description for the valid state")
45+
} else {
46+
return NSLocalizedString("Needs Attention", comment: "Sensor state description for the non-valid state")
47+
}
48+
}
49+
}

Loop/View Controllers/StatusTableViewController.swift

+32-9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import GlucoseKit
1212
import HealthKit
1313
import InsulinKit
1414
import LoopKit
15+
import LoopUI
1516
import SwiftCharts
1617

1718

@@ -759,18 +760,28 @@ final class StatusTableViewController: UITableViewController, UIGestureRecognize
759760

760761
// MARK: - HUDs
761762

762-
@IBOutlet weak var loopCompletionHUD: LoopCompletionHUDView!
763-
764-
@IBOutlet weak var glucoseHUD: GlucoseHUDView! {
763+
@IBOutlet weak var hudView: HUDView! {
765764
didSet {
766765
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(openCGMApp(_:)))
767766
glucoseHUD.addGestureRecognizer(tapGestureRecognizer)
768-
767+
769768
if cgmAppURL != nil {
770769
glucoseHUD.accessibilityHint = NSLocalizedString("Launches CGM app", comment: "Glucose HUD accessibility hint")
771770
}
772771
}
773772
}
773+
774+
var loopCompletionHUD: LoopCompletionHUDView! {
775+
get {
776+
return hudView.loopCompletionHUD
777+
}
778+
}
779+
780+
var glucoseHUD: GlucoseHUDView! {
781+
get {
782+
return hudView.glucoseHUD
783+
}
784+
}
774785

775786
private var cgmAppURL: URL? {
776787
if let url = URL(string: "dexcomcgm://"), UIApplication.shared.canOpenURL(url) {
@@ -788,9 +799,21 @@ final class StatusTableViewController: UITableViewController, UIGestureRecognize
788799
}
789800
}
790801

791-
@IBOutlet weak var basalRateHUD: BasalRateHUDView!
792-
793-
@IBOutlet weak var reservoirVolumeHUD: ReservoirVolumeHUDView!
794-
795-
@IBOutlet weak var batteryLevelHUD: BatteryLevelHUDView!
802+
var basalRateHUD: BasalRateHUDView! {
803+
get {
804+
return hudView.basalRateHUD
805+
}
806+
}
807+
808+
var reservoirVolumeHUD: ReservoirVolumeHUDView! {
809+
get {
810+
return hudView.reservoirVolumeHUD
811+
}
812+
}
813+
814+
var batteryLevelHUD: BatteryLevelHUDView! {
815+
get {
816+
return hudView.batteryHUD
817+
}
818+
}
796819
}

Loop/Views/ButtonTableViewCell.xib

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="11542" systemVersion="16B2657" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
3+
<device id="retina4_7" orientation="portrait">
4+
<adaptation id="fullscreen"/>
5+
</device>
36
<dependencies>
47
<deployment identifier="iOS"/>
5-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
8+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11524"/>
69
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
10+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
711
</dependencies>
812
<objects>
913
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
@@ -12,11 +16,11 @@
1216
<rect key="frame" x="0.0" y="0.0" width="427" height="44"/>
1317
<autoresizingMask key="autoresizingMask"/>
1418
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QMd-B1-jne" id="T9r-tL-wAO">
15-
<rect key="frame" x="0.0" y="0.0" width="427" height="43.5"/>
19+
<rect key="frame" x="0.0" y="0.0" width="427" height="43"/>
1620
<autoresizingMask key="autoresizingMask"/>
1721
<subviews>
1822
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="oI5-48-SHZ">
19-
<rect key="frame" x="181.5" y="8" width="64" height="27"/>
23+
<rect key="frame" x="182" y="8" width="64" height="27"/>
2024
<constraints>
2125
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="64" id="hrG-HQ-FHS"/>
2226
</constraints>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}

Loop Status Extension/HKUnit.swift LoopUI/Extensions/HKUnit.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import HealthKit
1111
// Code in this extension is duplicated from:
1212
// https://github.com/LoopKit/LoopKit/blob/master/LoopKit/HKUnit.swift
1313
// to avoid pulling in the LoopKit extension since it's not extension-API safe.
14-
public extension HKUnit {
14+
extension HKUnit {
1515
// A formatting helper for determining the preferred decimal style for a given unit
1616
var preferredMinimumFractionDigits: Int {
1717
if self.unitString == "mg/dL" {

Loop/Extensions/NSNumberFormatter.swift LoopUI/Extensions/NSNumberFormatter.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import HealthKit
1111

1212

1313
extension NumberFormatter {
14-
static func glucoseFormatter(for unit: HKUnit) -> NumberFormatter {
14+
public static func glucoseFormatter(for unit: HKUnit) -> NumberFormatter {
1515
let numberFormatter = NumberFormatter()
1616
numberFormatter.numberStyle = .decimal
1717
numberFormatter.minimumFractionDigits = unit.preferredMinimumFractionDigits
File renamed without changes.

Loop/Extensions/UIColor.swift LoopUI/Extensions/UIColor.swift

+13-13
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@ import UIKit
1010

1111

1212
extension UIColor {
13-
@nonobjc static var tintColor: UIColor? = nil
13+
@nonobjc public static var tintColor: UIColor? = nil
1414

15-
@nonobjc static let secondaryLabelColor = UIColor.HIGGrayColor()
15+
@nonobjc public static let secondaryLabelColor = UIColor.HIGGrayColor()
1616

17-
@nonobjc static let cellBackgroundColor = UIColor(white: 239 / 255, alpha: 1)
17+
@nonobjc public static let cellBackgroundColor = UIColor(white: 239 / 255, alpha: 1)
1818

19-
@nonobjc static let gridColor = UIColor(white: 193 / 255, alpha: 1)
19+
@nonobjc public static let gridColor = UIColor(white: 193 / 255, alpha: 1)
2020

21-
@nonobjc static let glucoseTintColor = UIColor(red: 0 / 255, green: 176 / 255, blue: 255 / 255, alpha: 1)
21+
@nonobjc public static let glucoseTintColor = UIColor(red: 0 / 255, green: 176 / 255, blue: 255 / 255, alpha: 1)
2222

23-
@nonobjc static let IOBTintColor = UIColor.HIGOrangeColor()
23+
@nonobjc public static let IOBTintColor = UIColor.HIGOrangeColor()
2424

25-
@nonobjc static let COBTintColor = UIColor(red: 99 / 255, green: 218 / 255, blue: 56 / 255, alpha: 1)
25+
@nonobjc public static let COBTintColor = UIColor(red: 99 / 255, green: 218 / 255, blue: 56 / 255, alpha: 1)
2626

27-
@nonobjc static let doseTintColor = UIColor.HIGOrangeColor()
27+
@nonobjc public static let doseTintColor = UIColor.HIGOrangeColor()
2828

29-
@nonobjc static let freshColor = UIColor.HIGGreenColor()
29+
@nonobjc public static let freshColor = UIColor.HIGGreenColor()
3030

31-
@nonobjc static let agingColor = UIColor.HIGYellowColor()
31+
@nonobjc public static let agingColor = UIColor.HIGYellowColor()
3232

33-
@nonobjc static let staleColor = UIColor.HIGRedColor()
33+
@nonobjc public static let staleColor = UIColor.HIGRedColor()
3434

35-
@nonobjc static let unknownColor = UIColor(red: 198 / 255, green: 199 / 255, blue: 201 / 255, alpha: 1)
35+
@nonobjc public static let unknownColor = UIColor(red: 198 / 255, green: 199 / 255, blue: 201 / 255, alpha: 1)
3636

37-
@nonobjc static let deleteColor = UIColor.HIGRedColor()
37+
@nonobjc public static let deleteColor = UIColor.HIGRedColor()
3838

3939
// MARK: - HIG colors
4040
// See: https://developer.apple.com/ios/human-interface-guidelines/visual-design/color/

0 commit comments

Comments
 (0)