Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

return clock icon when isClockOffset is true - fix for main branch #46

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions OmniKitUI/PumpManager/OmniPodPumpManager+UI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,24 @@ extension OmnipodPumpManager: PumpManagerUI {

}

public enum OmniKitStatusBadge: DeviceStatusBadge {
case timeSyncNeeded

public var image: UIImage? {
switch self {
case .timeSyncNeeded:
return UIImage(systemName: "clock.fill")
}
}

public var state: DeviceStatusBadgeState {
switch self {
case .timeSyncNeeded:
return .warning
}
}
}

// MARK: - PumpStatusIndicator
extension OmnipodPumpManager {
public var pumpStatusHighlight: DeviceStatusHighlight? {
Expand All @@ -58,7 +76,10 @@ extension OmnipodPumpManager {
}

public var pumpStatusBadge: DeviceStatusBadge? {
return nil
if isClockOffset {
return OmniKitStatusBadge.timeSyncNeeded
} else {
return nil
}
}

}