metatext-app-ios-iphone-ipad/Views/Status/StatusListCell.swift

27 lines
851 B
Swift
Raw Normal View History

2020-09-14 09:20:25 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
2020-11-09 07:22:20 +01:00
final class StatusListCell: UITableViewCell {
2020-09-14 09:20:25 +02:00
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()
2020-10-06 02:33:58 +02:00
if viewModel?.configuration.hasReplyFollowing ?? false {
separatorInset.right = .greatestFiniteMagnitude
} else {
separatorInset.right = UIDevice.current.userInterfaceIdiom == .phone ? 0 : layoutMargins.right
}
2020-09-14 09:20:25 +02:00
separatorInset.left = UIDevice.current.userInterfaceIdiom == .phone ? 0 : layoutMargins.left
}
}