2020-10-29 07:03:45 +01:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import ViewModels
|
|
|
|
|
2020-11-09 07:22:20 +01:00
|
|
|
final class ConversationListCell: UITableViewCell {
|
2020-10-29 07:03:45 +01:00
|
|
|
var viewModel: ConversationViewModel?
|
|
|
|
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
|
|
guard let viewModel = viewModel else { return }
|
|
|
|
|
|
|
|
contentConfiguration = ConversationContentConfiguration(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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|