|
|
|
@ -56,13 +56,9 @@ class EmojiPickerCollectionView: UICollectionView {
|
|
|
|
|
|
|
|
|
|
delegate = self
|
|
|
|
|
dataSource = self
|
|
|
|
|
|
|
|
|
|
register(EmojiCell.self, forCellWithReuseIdentifier: EmojiCell.reuseIdentifier)
|
|
|
|
|
register(
|
|
|
|
|
EmojiSectionHeader.self,
|
|
|
|
|
forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader,
|
|
|
|
|
withReuseIdentifier: EmojiSectionHeader.reuseIdentifier
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
register(view: EmojiCell.self)
|
|
|
|
|
register(view: EmojiSectionHeader.self, ofKind: UICollectionView.elementKindSectionHeader)
|
|
|
|
|
|
|
|
|
|
themeBackgroundColor = .clear
|
|
|
|
|
|
|
|
|
@ -245,35 +241,20 @@ extension EmojiPickerCollectionView: UICollectionViewDataSource {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
|
|
|
|
|
let cell = dequeueReusableCell(withReuseIdentifier: EmojiCell.reuseIdentifier, for: indexPath)
|
|
|
|
|
|
|
|
|
|
guard let emojiCell = cell as? EmojiCell else {
|
|
|
|
|
Log.error("[EmojiPickerCollectionView] unexpected cell type")
|
|
|
|
|
return cell
|
|
|
|
|
}
|
|
|
|
|
let cell = dequeue(type: EmojiCell.self, for: indexPath)
|
|
|
|
|
|
|
|
|
|
guard let emoji = emojiForIndexPath(indexPath) else {
|
|
|
|
|
Log.error("[EmojiPickerCollectionView] unexpected indexPath")
|
|
|
|
|
return cell
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
emojiCell.configure(emoji: emoji)
|
|
|
|
|
cell.configure(emoji: emoji)
|
|
|
|
|
|
|
|
|
|
return cell
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
|
|
|
|
|
|
|
|
|
|
let supplementaryView = dequeueReusableSupplementaryView(
|
|
|
|
|
ofKind: kind,
|
|
|
|
|
withReuseIdentifier: EmojiSectionHeader.reuseIdentifier,
|
|
|
|
|
for: indexPath
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
guard let sectionHeader = supplementaryView as? EmojiSectionHeader else {
|
|
|
|
|
Log.error("[EmojiPickerCollectionView] unexpected supplementary view type")
|
|
|
|
|
return supplementaryView
|
|
|
|
|
}
|
|
|
|
|
let sectionHeader = dequeue(type: EmojiSectionHeader.self, ofKind: kind, for: indexPath)
|
|
|
|
|
|
|
|
|
|
sectionHeader.label.text = nameForSection(indexPath.section)
|
|
|
|
|
|
|
|
|
@ -296,8 +277,6 @@ extension EmojiPickerCollectionView: UICollectionViewDelegateFlowLayout {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class EmojiCell: UICollectionViewCell {
|
|
|
|
|
static let reuseIdentifier = "EmojiCell" // stringlint:disable
|
|
|
|
|
|
|
|
|
|
let emojiLabel = UILabel()
|
|
|
|
|
|
|
|
|
|
override init(frame: CGRect) {
|
|
|
|
@ -326,8 +305,6 @@ private class EmojiCell: UICollectionViewCell {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class EmojiSectionHeader: UICollectionReusableView {
|
|
|
|
|
static let reuseIdentifier = "EmojiSectionHeader" // stringlint:disable
|
|
|
|
|
|
|
|
|
|
let label = UILabel()
|
|
|
|
|
|
|
|
|
|
override init(frame: CGRect) {
|
|
|
|
|