2021-04-02 10:24:00 +02:00
|
|
|
//
|
|
|
|
// SearchResultSection.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by sxiaojian on 2021/4/6.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import MastodonSDK
|
|
|
|
import UIKit
|
2021-04-07 13:49:33 +02:00
|
|
|
import CoreData
|
|
|
|
import CoreDataStack
|
2021-04-02 10:24:00 +02:00
|
|
|
|
|
|
|
enum SearchResultSection: Equatable, Hashable {
|
|
|
|
case account
|
2021-04-07 15:01:32 +02:00
|
|
|
case hashtag
|
2021-04-07 13:49:33 +02:00
|
|
|
case mixed
|
2021-04-06 09:25:04 +02:00
|
|
|
case bottomLoader
|
2021-04-02 10:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extension SearchResultSection {
|
|
|
|
static func tableViewDiffableDataSource(
|
2021-04-07 13:49:33 +02:00
|
|
|
for tableView: UITableView,
|
|
|
|
dependency: NeedsDependency
|
2021-04-02 10:24:00 +02:00
|
|
|
) -> UITableViewDiffableDataSource<SearchResultSection, SearchResultItem> {
|
|
|
|
UITableViewDiffableDataSource(tableView: tableView) { (tableView, indexPath, result) -> UITableViewCell? in
|
|
|
|
switch result {
|
|
|
|
case .account(let account):
|
2021-04-06 09:25:04 +02:00
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: SearchingTableViewCell.self), for: indexPath) as! SearchingTableViewCell
|
2021-04-02 10:24:00 +02:00
|
|
|
cell.config(with: account)
|
2021-04-06 09:25:04 +02:00
|
|
|
return cell
|
2021-04-07 15:01:32 +02:00
|
|
|
case .hashtag(let tag):
|
2021-04-06 09:25:04 +02:00
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: SearchingTableViewCell.self), for: indexPath) as! SearchingTableViewCell
|
2021-04-02 10:24:00 +02:00
|
|
|
cell.config(with: tag)
|
2021-04-06 09:25:04 +02:00
|
|
|
return cell
|
2021-04-07 15:01:32 +02:00
|
|
|
case .hashtagObjectID(let hashtagObjectID):
|
2021-04-07 13:49:33 +02:00
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: SearchingTableViewCell.self), for: indexPath) as! SearchingTableViewCell
|
2021-04-07 15:01:32 +02:00
|
|
|
let tag = dependency.context.managedObjectContext.object(with: hashtagObjectID) as! Tag
|
2021-04-07 13:49:33 +02:00
|
|
|
cell.config(with: tag)
|
|
|
|
return cell
|
|
|
|
case .accountObjectID(let accountObjectID):
|
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: SearchingTableViewCell.self), for: indexPath) as! SearchingTableViewCell
|
|
|
|
let user = dependency.context.managedObjectContext.object(with: accountObjectID) as! MastodonUser
|
|
|
|
cell.config(with: user)
|
|
|
|
return cell
|
2021-04-06 09:25:04 +02:00
|
|
|
case .bottomLoader:
|
2021-04-16 07:45:54 +02:00
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: TimelineBottomLoaderTableViewCell.self)) as! TimelineBottomLoaderTableViewCell
|
2021-04-06 09:25:04 +02:00
|
|
|
cell.startAnimating()
|
|
|
|
return cell
|
2021-04-02 10:24:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|