metatext/Views/UIKit/Collection View Cells/AutocompleteItemCollectionViewCell.swift
Justin Mazzocchi 588154b050
wip
2021-02-15 11:17:06 -08:00

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]
}
}