mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-25 09:41:00 +00:00
19 lines
718 B
Swift
19 lines
718 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
final class NewStatusDataSource: UICollectionViewDiffableDataSource<Int, Composition.Id> {
|
|
init(collectionView: UICollectionView, viewModelProvider: @escaping (IndexPath) -> CompositionViewModel) {
|
|
let registration = UICollectionView.CellRegistration<CompositionListCell, CompositionViewModel> {
|
|
$0.viewModel = $2
|
|
}
|
|
|
|
super.init(collectionView: collectionView) { collectionView, indexPath, _ in
|
|
collectionView.dequeueConfiguredReusableCell(
|
|
using: registration,
|
|
for: indexPath,
|
|
item: viewModelProvider(indexPath))
|
|
}
|
|
}
|
|
}
|