| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //
- // MinimedPumpManager+UI.swift
- // Loop
- //
- // Copyright © 2018 LoopKit Authors. All rights reserved.
- //
- import SwiftUI
- import UIKit
- import LoopKit
- import LoopKitUI
- import MinimedKit
- import RileyLinkKitUI
- extension MinimedPumpManager: PumpManagerUI {
-
- public static var onboardingImage: UIImage? {
- return UIImage.pumpImage(in: nil, isLargerModel: false, isSmallImage: true)
- }
- static public func setupViewController(initialSettings settings: PumpManagerSetupSettings, bluetoothProvider: BluetoothProvider, colorPalette: LoopUIColorPalette, allowDebugFeatures: Bool, allowedInsulinTypes: [InsulinType]) -> SetupUIResult<PumpManagerViewController, PumpManagerUI> {
- let navVC = MinimedPumpManagerSetupViewController.instantiateFromStoryboard()
- navVC.supportedInsulinTypes = allowedInsulinTypes
- let didConfirm: (InsulinType) -> Void = { [weak navVC] (confirmedType) in
- if let navVC = navVC {
- navVC.insulinType = confirmedType
- let nextViewController = navVC.storyboard?.instantiateViewController(identifier: "RileyLinkSetup") as! RileyLinkSetupTableViewController
- navVC.pushViewController(nextViewController, animated: true)
- }
- }
- let didCancel: () -> Void = { [weak navVC] in
- if let navVC = navVC {
- navVC.didCancel()
- }
- }
- let insulinSelectionView = InsulinTypeConfirmation(initialValue: .novolog, supportedInsulinTypes: allowedInsulinTypes, didConfirm: didConfirm, didCancel: didCancel)
- let rootVC = UIHostingController(rootView: insulinSelectionView)
- rootVC.title = "Insulin Type"
- navVC.pushViewController(rootVC, animated: false)
- navVC.navigationBar.backgroundColor = .secondarySystemBackground
- navVC.maxBasalRateUnitsPerHour = settings.maxBasalRateUnitsPerHour
- navVC.maxBolusUnits = settings.maxBolusUnits
- navVC.basalSchedule = settings.basalSchedule
- return .userInteractionRequired(navVC)
- }
- public func settingsViewController(bluetoothProvider: BluetoothProvider, colorPalette: LoopUIColorPalette, allowDebugFeatures: Bool, allowedInsulinTypes: [InsulinType]) -> PumpManagerViewController {
- return MinimedUICoordinator(pumpManager: self, colorPalette: colorPalette, allowDebugFeatures: allowDebugFeatures, allowedInsulinTypes: allowedInsulinTypes)
- }
-
- public func deliveryUncertaintyRecoveryViewController(colorPalette: LoopUIColorPalette, allowDebugFeatures: Bool) -> (UIViewController & CompletionNotifying) {
- return MinimedUICoordinator(pumpManager: self, colorPalette: colorPalette, allowDebugFeatures: allowDebugFeatures, allowedInsulinTypes: [])
- }
-
- public var smallImage: UIImage? {
- return state.smallPumpImage
- }
-
- public func hudProvider(bluetoothProvider: BluetoothProvider, colorPalette: LoopUIColorPalette, allowedInsulinTypes: [InsulinType]) -> HUDProvider? {
- return MinimedHUDProvider(pumpManager: self, bluetoothProvider: bluetoothProvider, colorPalette: colorPalette, allowedInsulinTypes: allowedInsulinTypes)
- }
-
- public static func createHUDView(rawValue: HUDProvider.HUDViewRawState) -> BaseHUDView? {
- return MinimedHUDProvider.createHUDView(rawValue: rawValue)
- }
- }
- // MARK: - PumpStatusIndicator
- extension MinimedPumpManager {
-
- public var pumpStatusHighlight: DeviceStatusHighlight? {
- return buildPumpStatusHighlight(for: state, recents: recents, andDate: dateGenerator())
- }
-
- public var pumpLifecycleProgress: DeviceLifecycleProgress? {
- return nil
- }
-
- public var pumpStatusBadge: DeviceStatusBadge? {
- return nil
- }
- }
|