mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 16:21:00 +00:00
24 lines
839 B
Swift
24 lines
839 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()
|
||
|
|
||
|
backgroundConfiguration.backgroundColor = state.isHighlighted || state.isSelected ? nil : .clear
|
||
|
|
||
|
self.backgroundConfiguration = backgroundConfiguration
|
||
|
|
||
|
accessibilityElements = [contentView]
|
||
|
}
|
||
|
}
|