forked from zelo72/mastodon-ios
56 lines
2.2 KiB
Swift
56 lines
2.2 KiB
Swift
//
|
|
// StatusProvider+UITableViewDataSourcePrefetching.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-10.
|
|
//
|
|
|
|
import UIKit
|
|
import CoreData
|
|
import CoreDataStack
|
|
|
|
extension StatusTableViewCellDelegate where Self: StatusProvider {
|
|
func handleTableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) {
|
|
// prefetch reply status
|
|
guard let activeMastodonAuthenticationBox = context.authenticationService.activeMastodonAuthenticationBox.value else { return }
|
|
let domain = activeMastodonAuthenticationBox.domain
|
|
|
|
var statusObjectIDs: [NSManagedObjectID] = []
|
|
for item in items(indexPaths: indexPaths) {
|
|
switch item {
|
|
case .homeTimelineIndex(let objectID, _):
|
|
let homeTimelineIndex = managedObjectContext.object(with: objectID) as! HomeTimelineIndex
|
|
statusObjectIDs.append(homeTimelineIndex.status.objectID)
|
|
case .status(let objectID, _):
|
|
statusObjectIDs.append(objectID)
|
|
default:
|
|
continue
|
|
}
|
|
}
|
|
|
|
let backgroundManagedObjectContext = context.backgroundManagedObjectContext
|
|
backgroundManagedObjectContext.perform { [weak self] in
|
|
guard let self = self else { return }
|
|
for objectID in statusObjectIDs {
|
|
let status = backgroundManagedObjectContext.object(with: objectID) as! Status
|
|
|
|
// fetch in-reply info if needs
|
|
if let replyToID = status.inReplyToID, status.replyTo == nil {
|
|
self.context.statusPrefetchingService.prefetchReplyTo(
|
|
domain: domain,
|
|
statusObjectID: status.objectID,
|
|
statusID: status.id,
|
|
replyToStatusID: replyToID,
|
|
authorizationBox: activeMastodonAuthenticationBox
|
|
)
|
|
}
|
|
|
|
// self.context.statusContentCacheService.prefetch(
|
|
// content: (status.reblog ?? status).content,
|
|
// emojiDict: (status.reblog ?? status).emojiDict
|
|
// )
|
|
}
|
|
}
|
|
}
|
|
}
|