|
|
@ -9,9 +9,25 @@ extension ContextMenuVC {
|
|
|
|
private static let cornerRadius: CGFloat = 8
|
|
|
|
private static let cornerRadius: CGFloat = 8
|
|
|
|
|
|
|
|
|
|
|
|
private let cellViewModel: MessageViewModel
|
|
|
|
private let cellViewModel: MessageViewModel
|
|
|
|
|
|
|
|
private let dismissAction: () -> Void
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: - UI
|
|
|
|
// MARK: - UI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private lazy var dismissButton: UIButton = {
|
|
|
|
|
|
|
|
let result: UIButton = UIButton(type: .custom)
|
|
|
|
|
|
|
|
result.setImage(
|
|
|
|
|
|
|
|
UIImage(named: "small_chevron_left")?
|
|
|
|
|
|
|
|
.withRenderingMode(.alwaysTemplate),
|
|
|
|
|
|
|
|
for: .normal
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
result.addTarget(self, action: #selector(dismiss), for: UIControl.Event.touchUpInside)
|
|
|
|
|
|
|
|
result.themeTintColor = .white
|
|
|
|
|
|
|
|
result.set(.width, to: 20)
|
|
|
|
|
|
|
|
result.set(.height, to: 20)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
|
|
private lazy var messageSentDateLabel: UILabel = {
|
|
|
|
private lazy var messageSentDateLabel: UILabel = {
|
|
|
|
let result: UILabel = UILabel()
|
|
|
|
let result: UILabel = UILabel()
|
|
|
|
result.font = .systemFont(ofSize: Values.smallFontSize)
|
|
|
|
result.font = .systemFont(ofSize: Values.smallFontSize)
|
|
|
@ -58,8 +74,9 @@ extension ContextMenuVC {
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: - Lifecycle
|
|
|
|
// MARK: - Lifecycle
|
|
|
|
|
|
|
|
|
|
|
|
init(cellViewModel: MessageViewModel) {
|
|
|
|
init(cellViewModel: MessageViewModel, dismissAction: @escaping () -> Void) {
|
|
|
|
self.cellViewModel = cellViewModel
|
|
|
|
self.cellViewModel = cellViewModel
|
|
|
|
|
|
|
|
self.dismissAction = dismissAction
|
|
|
|
|
|
|
|
|
|
|
|
super.init(frame: CGRect.zero)
|
|
|
|
super.init(frame: CGRect.zero)
|
|
|
|
self.accessibilityLabel = "Message info"
|
|
|
|
self.accessibilityLabel = "Message info"
|
|
|
@ -67,20 +84,25 @@ extension ContextMenuVC {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
override init(frame: CGRect) {
|
|
|
|
override init(frame: CGRect) {
|
|
|
|
preconditionFailure("Use init(cellViewModel:) instead.")
|
|
|
|
preconditionFailure("Use init(cellViewModel:dismiss:) instead.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
required init?(coder: NSCoder) {
|
|
|
|
preconditionFailure("Use init(cellViewModel:) instead.")
|
|
|
|
preconditionFailure("Use init(cellViewModel:dismiss:) instead.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private func setUpViewHierarchy() {
|
|
|
|
private func setUpViewHierarchy() {
|
|
|
|
|
|
|
|
addSubview(dismissButton)
|
|
|
|
|
|
|
|
dismissButton.pin(.top, to: .top, of: self, withInset: Values.smallSpacing)
|
|
|
|
|
|
|
|
dismissButton.pin(.leading, to: .leading, of: self)
|
|
|
|
|
|
|
|
|
|
|
|
let backgroundView: UIView = UIView()
|
|
|
|
let backgroundView: UIView = UIView()
|
|
|
|
backgroundView.clipsToBounds = true
|
|
|
|
backgroundView.clipsToBounds = true
|
|
|
|
backgroundView.themeBackgroundColor = .contextMenu_background
|
|
|
|
backgroundView.themeBackgroundColor = .contextMenu_background
|
|
|
|
backgroundView.layer.cornerRadius = Self.cornerRadius
|
|
|
|
backgroundView.layer.cornerRadius = Self.cornerRadius
|
|
|
|
addSubview(backgroundView)
|
|
|
|
addSubview(backgroundView)
|
|
|
|
backgroundView.pin(to: self)
|
|
|
|
backgroundView.pin([ UIView.HorizontalEdge.trailing, UIView.VerticalEdge.top, UIView.VerticalEdge.bottom ], to: self)
|
|
|
|
|
|
|
|
backgroundView.pin(.leading, to: .trailing, of: dismissButton)
|
|
|
|
|
|
|
|
|
|
|
|
let stackView: UIStackView = UIStackView()
|
|
|
|
let stackView: UIStackView = UIStackView()
|
|
|
|
stackView.axis = .vertical
|
|
|
|
stackView.axis = .vertical
|
|
|
@ -130,5 +152,11 @@ extension ContextMenuVC {
|
|
|
|
stackView.addArrangedSubview(profileContainerView)
|
|
|
|
stackView.addArrangedSubview(profileContainerView)
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: - Interaction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@objc private func dismiss() {
|
|
|
|
|
|
|
|
dismissAction()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|