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.
87 lines
3.1 KiB
Swift
87 lines
3.1 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import UIKit
|
|
import SessionUIKit
|
|
import SessionMessagingKit
|
|
|
|
final class InfoMessageCell: MessageCell {
|
|
private static let iconSize: CGFloat = 16
|
|
private static let inset = Values.mediumSpacing
|
|
|
|
// MARK: - UI
|
|
|
|
private lazy var iconImageViewWidthConstraint = iconImageView.set(.width, to: InfoMessageCell.iconSize)
|
|
private lazy var iconImageViewHeightConstraint = iconImageView.set(.height, to: InfoMessageCell.iconSize)
|
|
|
|
private lazy var iconImageView: UIImageView = UIImageView()
|
|
|
|
private lazy var label: UILabel = {
|
|
let result: UILabel = UILabel()
|
|
result.numberOfLines = 0
|
|
result.lineBreakMode = .byWordWrapping
|
|
result.font = .boldSystemFont(ofSize: Values.verySmallFontSize)
|
|
result.textColor = Colors.text
|
|
result.textAlignment = .center
|
|
|
|
return result
|
|
}()
|
|
|
|
private lazy var stackView: UIStackView = {
|
|
let result: UIStackView = UIStackView(arrangedSubviews: [ iconImageView, label ])
|
|
result.axis = .vertical
|
|
result.alignment = .center
|
|
result.spacing = Values.smallSpacing
|
|
|
|
return result
|
|
}()
|
|
|
|
// MARK: - Lifecycle
|
|
|
|
override func setUpViewHierarchy() {
|
|
super.setUpViewHierarchy()
|
|
|
|
iconImageViewWidthConstraint.isActive = true
|
|
iconImageViewHeightConstraint.isActive = true
|
|
addSubview(stackView)
|
|
|
|
stackView.pin(.left, to: .left, of: self, withInset: InfoMessageCell.inset)
|
|
stackView.pin(.top, to: .top, of: self, withInset: InfoMessageCell.inset)
|
|
stackView.pin(.right, to: .right, of: self, withInset: -InfoMessageCell.inset)
|
|
stackView.pin(.bottom, to: .bottom, of: self, withInset: -InfoMessageCell.inset)
|
|
}
|
|
|
|
// MARK: - Updating
|
|
|
|
override func update(with cellViewModel: MessageCell.ViewModel, mediaCache: NSCache<NSString, AnyObject>, playbackInfo: ConversationViewModel.PlaybackInfo?, lastSearchText: String?) {
|
|
guard cellViewModel.variant.isInfoMessage else { return }
|
|
|
|
self.viewModel = cellViewModel
|
|
|
|
let icon: UIImage? = {
|
|
switch cellViewModel.variant {
|
|
case .infoDisappearingMessagesUpdate:
|
|
return (cellViewModel.threadHasDisappearingMessagesEnabled ?
|
|
UIImage(named: "ic_timer") :
|
|
UIImage(named: "ic_timer_disabled")
|
|
)
|
|
|
|
case .infoMediaSavedNotification: return UIImage(named: "ic_download")
|
|
|
|
default: return nil
|
|
}
|
|
}()
|
|
|
|
if let icon = icon {
|
|
iconImageView.image = icon.withTint(Colors.text)
|
|
}
|
|
|
|
iconImageViewWidthConstraint.constant = (icon != nil) ? InfoMessageCell.iconSize : 0
|
|
iconImageViewHeightConstraint.constant = (icon != nil) ? InfoMessageCell.iconSize : 0
|
|
|
|
self.label.text = cellViewModel.body
|
|
}
|
|
|
|
override func dynamicUpdate(with cellViewModel: MessageCell.ViewModel, playbackInfo: ConversationViewModel.PlaybackInfo?) {
|
|
}
|
|
}
|