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.
98 lines
2.8 KiB
Swift
98 lines
2.8 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import UIKit
|
|
import SessionUIKit
|
|
import SessionMessagingKit
|
|
import SessionUtilitiesKit
|
|
|
|
final class SessionTableViewTitleView: UIView {
|
|
private var oldSize: CGSize = .zero
|
|
|
|
override var intrinsicContentSize: CGSize {
|
|
return UIView.layoutFittingExpandedSize
|
|
}
|
|
|
|
// MARK: - UI Components
|
|
|
|
private lazy var titleLabel: UILabel = {
|
|
let result: UILabel = UILabel()
|
|
result.font = .boldSystemFont(ofSize: Values.mediumFontSize)
|
|
result.themeTextColor = .textPrimary
|
|
result.lineBreakMode = .byTruncatingTail
|
|
|
|
return result
|
|
}()
|
|
|
|
private lazy var subtitleLabel: UILabel = {
|
|
let result: UILabel = UILabel()
|
|
result.font = .systemFont(ofSize: 13)
|
|
result.themeTextColor = .textPrimary
|
|
result.lineBreakMode = .byTruncatingTail
|
|
|
|
return result
|
|
}()
|
|
|
|
private lazy var stackView: UIStackView = {
|
|
let result = UIStackView(arrangedSubviews: [ titleLabel, subtitleLabel ])
|
|
result.axis = .vertical
|
|
result.alignment = .center
|
|
|
|
return result
|
|
}()
|
|
|
|
// MARK: - Initialization
|
|
|
|
init() {
|
|
super.init(frame: .zero)
|
|
|
|
addSubview(stackView)
|
|
|
|
stackView.pin([ UIView.HorizontalEdge.trailing, UIView.VerticalEdge.top, UIView.VerticalEdge.bottom ], to: self)
|
|
stackView.pin(.leading, to: .leading, of: self, withInset: 0)
|
|
}
|
|
|
|
deinit {
|
|
NotificationCenter.default.removeObserver(self)
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
preconditionFailure("Use init() instead.")
|
|
}
|
|
|
|
// MARK: - Content
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
|
|
// There is an annoying issue where pushing seems to update the width of this
|
|
// view resulting in the content shifting to the right during
|
|
guard self.oldSize != .zero, self.oldSize != bounds.size else {
|
|
self.oldSize = bounds.size
|
|
return
|
|
}
|
|
|
|
let diff: CGFloat = (bounds.size.width - oldSize.width)
|
|
// self.stackViewTrailingConstraint.constant = -max(0, diff)
|
|
self.oldSize = bounds.size
|
|
}
|
|
|
|
public func update(title: String, subTitle: String?) {
|
|
guard Thread.isMainThread else {
|
|
DispatchQueue.main.async { [weak self] in
|
|
self?.update(title: title, subTitle: subTitle)
|
|
}
|
|
return
|
|
}
|
|
|
|
self.titleLabel.text = title
|
|
self.titleLabel.font = .boldSystemFont(
|
|
ofSize: (subTitle != nil ?
|
|
Values.mediumFontSize :
|
|
Values.veryLargeFontSize
|
|
)
|
|
)
|
|
|
|
self.subtitleLabel.text = subTitle
|
|
}
|
|
}
|