mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 00:01:00 +00:00
41 lines
1.3 KiB
Swift
41 lines
1.3 KiB
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Combine
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
final class AttachmentUploadView: UIView {
|
|
let progressView = UIProgressView(progressViewStyle: .default)
|
|
private var progressCancellable: AnyCancellable?
|
|
|
|
var attachmentUpload: CompositionViewModel.AttachmentUpload? {
|
|
didSet {
|
|
if let attachmentUpload = attachmentUpload {
|
|
progressCancellable = attachmentUpload.progress.publisher(for: \.fractionCompleted)
|
|
.receive(on: DispatchQueue.main)
|
|
.sink { [weak self] in self?.progressView.progress = Float($0) }
|
|
isHidden = false
|
|
} else {
|
|
isHidden = true
|
|
}
|
|
}
|
|
}
|
|
|
|
init() {
|
|
super.init(frame: .zero)
|
|
|
|
addSubview(progressView)
|
|
progressView.translatesAutoresizingMaskIntoConstraints = false
|
|
|
|
NSLayoutConstraint.activate([
|
|
progressView.leadingAnchor.constraint(equalTo: layoutMarginsGuide.leadingAnchor),
|
|
progressView.trailingAnchor.constraint(equalTo: layoutMarginsGuide.trailingAnchor),
|
|
progressView.centerYAnchor.constraint(equalTo: centerYAnchor)
|
|
])
|
|
}
|
|
|
|
@available(*, unavailable)
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
}
|