mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.6 KiB
Swift
86 lines
2.6 KiB
Swift
1 year ago
|
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
import SessionSnodeKit
|
||
|
|
||
|
class DisappearingMessageTimerView: UIView {
|
||
|
private var initialDurationSeconds: Int32 = 0
|
||
|
private var expirationTimestampMs: Int64 = 0
|
||
|
|
||
|
// MARK: - Animation
|
||
|
private var animationTimer: Timer?
|
||
|
private var progress: Int = 12 // 0 == about to expire, 12 == just started countdown.
|
||
|
|
||
|
// MARK: - UI
|
||
|
private var iconImageView: UIImageView = {
|
||
|
let result: UIImageView = UIImageView()
|
||
|
result.set(.width, to: 9)
|
||
|
result.set(.height, to: 9)
|
||
|
return result
|
||
|
}()
|
||
|
|
||
|
// MARK: - Lifecycle
|
||
|
|
||
|
init() {
|
||
|
super.init(frame: CGRect.zero)
|
||
|
|
||
|
self.addSubview(iconImageView)
|
||
|
iconImageView.pin(to: self)
|
||
|
}
|
||
|
|
||
|
override init(frame: CGRect) {
|
||
|
preconditionFailure("Use init(viewItem:textColor:) instead.")
|
||
|
}
|
||
|
|
||
|
required init?(coder: NSCoder) {
|
||
|
preconditionFailure("Use init(viewItem:textColor:) instead.")
|
||
|
}
|
||
|
|
||
|
public func configure(expirationTimestampMs: Int64, initialDurationSeconds: Int32) {
|
||
|
self.expirationTimestampMs = expirationTimestampMs
|
||
|
self.initialDurationSeconds = initialDurationSeconds
|
||
|
|
||
|
self.updateProgress()
|
||
|
self.startAnimation()
|
||
|
}
|
||
|
|
||
|
@objc private func updateProgress() {
|
||
|
guard self.expirationTimestampMs > 0 else {
|
||
|
self.progress = 12
|
||
|
return
|
||
|
}
|
||
|
|
||
|
let timestampMs: Int64 = SnodeAPI.currentOffsetTimestampMs()
|
||
|
let secondsLeft: Double = max(Double(self.expirationTimestampMs - timestampMs) / 1000, 0)
|
||
|
let progressRatio: Double = self.initialDurationSeconds > 0 ? secondsLeft / Double(self.initialDurationSeconds) : 0
|
||
|
|
||
|
self.progress = Int(round(min(progressRatio, 1) * 12))
|
||
|
self.updateIcon()
|
||
|
}
|
||
|
|
||
|
private func updateIcon() {
|
||
|
let imageName: String = "disappearing_message_\(String(format: "%02d", 5 * self.progress))"
|
||
|
self.iconImageView.image = UIImage(named: imageName)?.withRenderingMode(.alwaysTemplate)
|
||
|
}
|
||
|
|
||
|
private func startAnimation() {
|
||
|
self.clearAnimation()
|
||
|
self.animationTimer = Timer.weakScheduledTimer(
|
||
|
withTimeInterval: 0.1,
|
||
|
target: self,
|
||
|
selector: #selector(updateProgress),
|
||
|
userInfo: nil,
|
||
|
repeats: true
|
||
|
)
|
||
|
}
|
||
|
|
||
|
private func clearAnimation() {
|
||
|
self.animationTimer?.invalidate()
|
||
|
self.animationTimer = nil
|
||
|
}
|
||
|
|
||
|
public func prepareForReuse() {
|
||
|
self.clearAnimation()
|
||
|
}
|
||
|
}
|