mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-06 00:39:31 +00:00
26 lines
775 B
Swift
26 lines
775 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
final class NotificationListCell: UITableViewCell {
|
|
var viewModel: NotificationViewModel?
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
guard let viewModel = viewModel else { return }
|
|
|
|
contentConfiguration = NotificationContentConfiguration(viewModel: viewModel).updated(for: state)
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|