27 lines
831 B
Swift
27 lines
831 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
class StatusListCell: UITableViewCell {
|
|
var viewModel: StatusViewModel?
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
guard let viewModel = viewModel else { return }
|
|
|
|
contentConfiguration = StatusContentConfiguration(viewModel: viewModel).updated(for: state)
|
|
}
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
|
|
if viewModel?.hasReplyFollowing ?? false {
|
|
separatorInset.right = .greatestFiniteMagnitude
|
|
} else {
|
|
separatorInset.right = UIDevice.current.userInterfaceIdiom == .phone ? 0 : layoutMargins.right
|
|
}
|
|
|
|
separatorInset.left = UIDevice.current.userInterfaceIdiom == .phone ? 0 : layoutMargins.left
|
|
}
|
|
}
|