129 lines
3.0 KiB
Swift
129 lines
3.0 KiB
Swift
|
//
|
||
|
// SidebarStatusBarView.swift
|
||
|
// Evergreen
|
||
|
//
|
||
|
// Created by Brent Simmons on 9/17/16.
|
||
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
import RSCore
|
||
|
import Data
|
||
|
import RSWeb
|
||
|
import Account
|
||
|
|
||
|
final class SidebarStatusBarView: NSView {
|
||
|
|
||
|
@IBOutlet var progressIndicator: NSProgressIndicator!
|
||
|
@IBOutlet var progressLabel: NSTextField!
|
||
|
|
||
|
private var isAnimatingProgress = false {
|
||
|
didSet {
|
||
|
progressIndicator.isHidden = !isAnimatingProgress
|
||
|
progressLabel.isHidden = !isAnimatingProgress
|
||
|
}
|
||
|
}
|
||
|
|
||
|
override var isFlipped: Bool {
|
||
|
get {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
override func awakeFromNib() {
|
||
|
|
||
|
progressIndicator.isHidden = true
|
||
|
progressLabel.isHidden = true
|
||
|
|
||
|
let progressLabelFontSize = progressLabel.font?.pointSize ?? 13.0
|
||
|
progressLabel.font = NSFont.monospacedDigitSystemFont(ofSize: progressLabelFontSize, weight: NSFont.Weight.regular)
|
||
|
progressLabel.stringValue = ""
|
||
|
|
||
|
NotificationCenter.default.addObserver(self, selector: #selector(progressDidChange(_:)), name: .AccountRefreshProgressDidChange, object: nil)
|
||
|
}
|
||
|
|
||
|
// MARK: Notifications
|
||
|
|
||
|
@objc dynamic func progressDidChange(_ notification: Notification) {
|
||
|
|
||
|
let progress = AccountManager.shared.combinedRefreshProgress
|
||
|
updateProgressIndicator(progress)
|
||
|
updateProgressLabel(progress)
|
||
|
}
|
||
|
|
||
|
// MARK: Drawing
|
||
|
|
||
|
// private let lineColor = NSColor(calibratedWhite: 0.57, alpha: 1.0)
|
||
|
//
|
||
|
// override func draw(_ dirtyRect: NSRect) {
|
||
|
//
|
||
|
// let path = NSBezierPath()
|
||
|
// path.lineWidth = 1.0
|
||
|
// path.move(to: NSPoint(x: NSMinX(bounds), y: NSMinY(bounds) + 0.5))
|
||
|
// path.line(to: NSPoint(x: NSMaxX(bounds), y: NSMinY(bounds) + 0.5))
|
||
|
// lineColor.set()
|
||
|
// path.stroke()
|
||
|
// }
|
||
|
}
|
||
|
|
||
|
private extension SidebarStatusBarView {
|
||
|
|
||
|
// MARK: Progress
|
||
|
|
||
|
func stopProgressIfNeeded() {
|
||
|
|
||
|
if !isAnimatingProgress {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
progressIndicator.stopAnimation(self)
|
||
|
isAnimatingProgress = false
|
||
|
progressIndicator.needsDisplay = true
|
||
|
}
|
||
|
|
||
|
func startProgressIfNeeded() {
|
||
|
|
||
|
if isAnimatingProgress {
|
||
|
return
|
||
|
}
|
||
|
isAnimatingProgress = true
|
||
|
progressIndicator.startAnimation(self)
|
||
|
}
|
||
|
|
||
|
func updateProgressIndicator(_ progress: CombinedRefreshProgress) {
|
||
|
|
||
|
if progress.isComplete {
|
||
|
stopProgressIfNeeded()
|
||
|
return
|
||
|
}
|
||
|
|
||
|
startProgressIfNeeded()
|
||
|
|
||
|
let maxValue = Double(progress.numberOfTasks)
|
||
|
if progressIndicator.maxValue != maxValue {
|
||
|
progressIndicator.maxValue = maxValue
|
||
|
}
|
||
|
|
||
|
let doubleValue = Double(progress.numberCompleted)
|
||
|
if progressIndicator.doubleValue != doubleValue {
|
||
|
progressIndicator.doubleValue = doubleValue
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func updateProgressLabel(_ progress: CombinedRefreshProgress) {
|
||
|
|
||
|
if progress.isComplete {
|
||
|
progressLabel.stringValue = ""
|
||
|
return
|
||
|
}
|
||
|
|
||
|
let numberOfTasks = progress.numberOfTasks
|
||
|
let numberCompleted = progress.numberCompleted
|
||
|
|
||
|
let formatString = NSLocalizedString("%@ of %@", comment: "Status bar progress")
|
||
|
let s = NSString(format: formatString as NSString, NSNumber(value: numberCompleted), NSNumber(value: numberOfTasks))
|
||
|
|
||
|
progressLabel.stringValue = s as String
|
||
|
}
|
||
|
}
|