Preserve article selection when articles are downloaded (for iPad only)
This commit is contained in:
parent
86a302f787
commit
3ab1412dc6
|
@ -883,7 +883,11 @@ private extension AppCoordinator {
|
|||
func replaceArticles(with unsortedArticles: Set<Article>) {
|
||||
let sortedArticles = Array(unsortedArticles).sortedByDate(sortDirection)
|
||||
if articles != sortedArticles {
|
||||
let article = currentArticle
|
||||
articles = sortedArticles
|
||||
if let articleID = article?.articleID, let index = row(for: articleID) {
|
||||
currentArticleIndexPath = IndexPath(row: index, section: 0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -475,15 +475,13 @@ private extension MasterTimelineViewController {
|
|||
}
|
||||
|
||||
func performBlockAndRestoreSelection(_ block: (() -> Void)) {
|
||||
let articleID: String? = {
|
||||
if let indexPath = tableView.indexPathForSelectedRow, indexPath.row < coordinator.articles.count {
|
||||
return coordinator.articles[indexPath.row].articleID
|
||||
}
|
||||
return nil
|
||||
}()
|
||||
|
||||
guard traitCollection.userInterfaceIdiom == .pad else {
|
||||
block()
|
||||
return
|
||||
}
|
||||
|
||||
let articleID = coordinator.currentArticle?.articleID
|
||||
block()
|
||||
|
||||
if let articleID = articleID, let index = coordinator.indexesForArticleIDs(Set([articleID])).first {
|
||||
let indexPath = IndexPath(row: index, section: 0)
|
||||
tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
|
||||
|
|
Loading…
Reference in New Issue