26 lines
880 B
Swift
26 lines
880 B
Swift
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
final class AutocompleteItemCollectionViewCell: SeparatorConfiguredCollectionViewListCell {
|
|
var item: AutocompleteItem?
|
|
var identityContext: IdentityContext?
|
|
|
|
override func updateConfiguration(using state: UICellConfigurationState) {
|
|
guard let item = item, let identityContext = identityContext else { return }
|
|
|
|
contentConfiguration = AutocompleteItemContentConfiguration(item: item, identityContext: identityContext)
|
|
|
|
var backgroundConfiguration = UIBackgroundConfiguration.listPlainCell().updated(for: state)
|
|
|
|
if !state.isHighlighted && !state.isSelected {
|
|
backgroundConfiguration.backgroundColor = .clear
|
|
}
|
|
|
|
self.backgroundConfiguration = backgroundConfiguration
|
|
|
|
accessibilityElements = [contentView]
|
|
}
|
|
}
|