2020-09-23 03:00:56 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import ViewModels
|
|
|
|
|
2020-11-09 07:22:20 +01:00
|
|
|
final class AccountListCell: UITableViewCell {
|
2020-09-23 03:00:56 +02:00
|
|
|
var viewModel: AccountViewModel?
|
|
|
|
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
|
|
guard let viewModel = viewModel else { return }
|
|
|
|
|
|
|
|
contentConfiguration = AccountContentConfiguration(viewModel: viewModel).updated(for: state)
|
|
|
|
}
|
|
|
|
|
|
|
|
override func layoutSubviews() {
|
|
|
|
super.layoutSubviews()
|
|
|
|
|
2020-10-04 10:39:54 +02:00
|
|
|
if UIDevice.current.userInterfaceIdiom == .phone {
|
|
|
|
separatorInset.left = 0
|
|
|
|
separatorInset.right = 0
|
|
|
|
} else {
|
|
|
|
separatorInset.left = layoutMargins.left
|
|
|
|
separatorInset.right = layoutMargins.right
|
|
|
|
}
|
2020-09-23 03:00:56 +02:00
|
|
|
}
|
|
|
|
}
|