2021-03-16 04:45:30 +01:00
|
|
|
//
|
|
|
|
// NavigationBarProgressView.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by sxiaojian on 2021/3/16.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class NavigationBarProgressView: UIView {
|
|
|
|
|
|
|
|
static let progressAnimationDuration: TimeInterval = 0.3
|
|
|
|
|
|
|
|
let sliderView: UIView = {
|
|
|
|
let view = UIView()
|
2021-04-06 10:42:45 +02:00
|
|
|
view.backgroundColor = Asset.Colors.brandBlue.color
|
2021-03-16 04:45:30 +01:00
|
|
|
view.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
return view
|
|
|
|
}()
|
|
|
|
|
|
|
|
var sliderTrailingAnchor: NSLayoutConstraint!
|
|
|
|
|
|
|
|
var progress: CGFloat = 0 {
|
|
|
|
willSet(value) {
|
|
|
|
sliderTrailingAnchor.constant = (1 - progress) * bounds.width
|
|
|
|
UIView.animate(withDuration: NavigationBarProgressView.progressAnimationDuration) {
|
|
|
|
self.setNeedsLayout()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override init(frame: CGRect) {
|
|
|
|
super.init(frame: frame)
|
|
|
|
_init()
|
|
|
|
}
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
super.init(coder: coder)
|
|
|
|
_init()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension NavigationBarProgressView {
|
|
|
|
func _init() {
|
|
|
|
self.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
self.backgroundColor = .clear
|
|
|
|
addSubview(sliderView)
|
|
|
|
sliderTrailingAnchor = trailingAnchor.constraint(equalTo: sliderView.trailingAnchor)
|
|
|
|
NSLayoutConstraint.activate([
|
|
|
|
sliderView.topAnchor.constraint(equalTo: topAnchor),
|
|
|
|
sliderView.leadingAnchor.constraint(equalTo: leadingAnchor),
|
|
|
|
sliderView.bottomAnchor.constraint(equalTo: bottomAnchor),
|
|
|
|
sliderTrailingAnchor
|
|
|
|
])
|
|
|
|
}
|
|
|
|
}
|