metatext-app-ios-iphone-ipad/Views/UIKit/Collection View Cells/EmojiCollectionViewCell.swift

25 lines
767 B
Swift
Raw Normal View History

2021-01-15 11:13:10 +01:00
// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class EmojiCollectionViewCell: UICollectionViewCell {
var viewModel: EmojiViewModel?
2021-01-15 11:13:10 +01:00
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
2021-01-15 11:13:10 +01:00
contentConfiguration = EmojiContentConfiguration(viewModel: viewModel)
2021-02-15 09:47:30 +01:00
2021-02-15 20:17:06 +01:00
var backgroundConfiguration = UIBackgroundConfiguration.listPlainCell().updated(for: state)
if !state.isHighlighted && !state.isSelected {
backgroundConfiguration.backgroundColor = .clear
}
2021-02-15 09:47:30 +01:00
backgroundConfiguration.cornerRadius = .defaultCornerRadius
self.backgroundConfiguration = backgroundConfiguration
2021-01-15 11:13:10 +01:00
}
}