2020-10-30 07:11:24 +00:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import ViewModels
|
|
|
|
|
2021-01-29 06:22:13 +00:00
|
|
|
final class NotificationTableViewCell: UITableViewCell {
|
2020-10-30 07:11:24 +00:00
|
|
|
var viewModel: NotificationViewModel?
|
|
|
|
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
|
|
guard let viewModel = viewModel else { return }
|
|
|
|
|
|
|
|
contentConfiguration = NotificationContentConfiguration(viewModel: viewModel).updated(for: state)
|
2021-02-02 21:04:11 +00:00
|
|
|
accessibilityElements = [contentView]
|
2020-10-30 07:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override func layoutSubviews() {
|
|
|
|
super.layoutSubviews()
|
|
|
|
|
|
|
|
if UIDevice.current.userInterfaceIdiom == .phone {
|
|
|
|
separatorInset.left = 0
|
|
|
|
separatorInset.right = 0
|
|
|
|
} else {
|
|
|
|
separatorInset.left = layoutMargins.left
|
|
|
|
separatorInset.right = layoutMargins.right
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|