fix: disable cell frame cache for notification list due to data source not stable
This commit is contained in:
parent
11180ae62d
commit
ff4e20950d
|
@ -192,33 +192,34 @@ extension NotificationViewController {
|
||||||
extension NotificationViewController: StatusTableViewControllerAspect { }
|
extension NotificationViewController: StatusTableViewControllerAspect { }
|
||||||
|
|
||||||
// MARK: - TableViewCellHeightCacheableContainer
|
// MARK: - TableViewCellHeightCacheableContainer
|
||||||
extension NotificationViewController: TableViewCellHeightCacheableContainer {
|
//extension NotificationViewController: TableViewCellHeightCacheableContainer {
|
||||||
var cellFrameCache: NSCache<NSNumber, NSValue> {
|
// var cellFrameCache: NSCache<NSNumber, NSValue> {
|
||||||
viewModel.cellFrameCache
|
// viewModel.cellFrameCache
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
func cacheTableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
|
// func cacheTableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
|
||||||
guard let diffableDataSource = viewModel.diffableDataSource else { return }
|
// guard let diffableDataSource = viewModel.diffableDataSource else { return }
|
||||||
guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return }
|
// guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return }
|
||||||
let key = item.hashValue
|
// let key = item.hashValue
|
||||||
let frame = cell.frame
|
// let frame = cell.frame
|
||||||
viewModel.cellFrameCache.setObject(NSValue(cgRect: frame), forKey: NSNumber(value: key))
|
// viewModel.cellFrameCache.setObject(NSValue(cgRect: frame), forKey: NSNumber(value: key))
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
|
// func handleTableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
|
||||||
|
// guard let diffableDataSource = viewModel.diffableDataSource else { return UITableView.automaticDimension }
|
||||||
|
// guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return UITableView.automaticDimension }
|
||||||
|
// guard let frame = viewModel.cellFrameCache.object(forKey: NSNumber(value: item.hashValue))?.cgRectValue else {
|
||||||
|
// if case .bottomLoader = item {
|
||||||
|
// return TimelineLoaderTableViewCell.cellHeight
|
||||||
|
// } else {
|
||||||
|
// return UITableView.automaticDimension
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// return ceil(frame.height)
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
func handleTableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
|
|
||||||
guard let diffableDataSource = viewModel.diffableDataSource else { return UITableView.automaticDimension }
|
|
||||||
guard let item = diffableDataSource.itemIdentifier(for: indexPath) else { return UITableView.automaticDimension }
|
|
||||||
guard let frame = viewModel.cellFrameCache.object(forKey: NSNumber(value: item.hashValue))?.cgRectValue else {
|
|
||||||
if case .bottomLoader = item {
|
|
||||||
return TimelineLoaderTableViewCell.cellHeight
|
|
||||||
} else {
|
|
||||||
return UITableView.automaticDimension
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ceil(frame.height)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// MARK: - UITableViewDelegate
|
// MARK: - UITableViewDelegate
|
||||||
|
|
||||||
extension NotificationViewController: UITableViewDelegate {
|
extension NotificationViewController: UITableViewDelegate {
|
||||||
|
|
Loading…
Reference in New Issue