30 lines
778 B
Swift
30 lines
778 B
Swift
/*
|
|
Copyright 2019-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import UIKit
|
|
import Reusable
|
|
|
|
final class EditHistoryCell: UITableViewCell, NibReusable, Themable {
|
|
|
|
// MARK: - Properties
|
|
|
|
@IBOutlet private weak var timestampLabel: UILabel!
|
|
@IBOutlet private weak var messageLabel: UILabel!
|
|
|
|
// MARK: - Public
|
|
|
|
func fill(with timeString: String, and attributedMessage: NSAttributedString) {
|
|
self.timestampLabel.text = timeString
|
|
self.messageLabel.attributedText = attributedMessage
|
|
}
|
|
|
|
func update(theme: Theme) {
|
|
self.backgroundColor = theme.backgroundColor
|
|
self.timestampLabel.textColor = theme.textSecondaryColor
|
|
}
|
|
}
|