mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-25 17:50:59 +00:00
149 lines
5.4 KiB
Swift
149 lines
5.4 KiB
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import SwiftUI
|
|
import Combine
|
|
|
|
class StatusListViewController: UITableViewController {
|
|
private let viewModel: StatusListViewModel
|
|
private var cancellables = Set<AnyCancellable>()
|
|
private var cellHeightCaches = [CGFloat: [String: CGFloat]]()
|
|
|
|
private lazy var dataSource: UITableViewDiffableDataSource<Int, String> = {
|
|
UITableViewDiffableDataSource(tableView: tableView) { [weak self] tableView, indexPath, statusID in
|
|
guard
|
|
let self = self,
|
|
let cell = tableView.dequeueReusableCell(
|
|
withIdentifier: String(describing: StatusTableViewCell.self),
|
|
for: indexPath) as? StatusTableViewCell
|
|
else { return nil }
|
|
|
|
cell.viewModel = self.viewModel.statusViewModel(id: statusID)
|
|
cell.delegate = self
|
|
|
|
return cell
|
|
}
|
|
}()
|
|
|
|
init(viewModel: StatusListViewModel) {
|
|
self.viewModel = viewModel
|
|
|
|
super.init(style: .plain)
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
for cellClass in [StatusTableViewCell.self] {
|
|
let classString = String(describing: cellClass)
|
|
tableView.register(
|
|
UINib(nibName: classString, bundle: nil),
|
|
forCellReuseIdentifier: classString)
|
|
}
|
|
|
|
tableView.dataSource = dataSource
|
|
tableView.cellLayoutMarginsFollowReadableWidth = true
|
|
tableView.separatorInset = .zero
|
|
|
|
viewModel.$statusIDs
|
|
.sink { [weak self] in
|
|
guard let self = self else { return }
|
|
|
|
var offsetFromNavigationBar: CGFloat?
|
|
|
|
if
|
|
let id = self.viewModel.maintainScrollPositionOfStatusID,
|
|
let indexPath = self.dataSource.indexPath(for: id),
|
|
let navigationBar = self.navigationController?.navigationBar {
|
|
let navigationBarMaxY = self.tableView.convert(navigationBar.bounds, from: navigationBar).maxY
|
|
offsetFromNavigationBar = self.tableView.rectForRow(at: indexPath).origin.y - navigationBarMaxY
|
|
}
|
|
|
|
self.dataSource.apply($0.snapshot(), animatingDifferences: false) {
|
|
if
|
|
let id = self.viewModel.maintainScrollPositionOfStatusID,
|
|
let indexPath = self.dataSource.indexPath(for: id),
|
|
let offsetFromNavigationBar = offsetFromNavigationBar {
|
|
self.tableView.scrollToRow(at: indexPath, at: .top, animated: false)
|
|
self.tableView.contentOffset.y -= offsetFromNavigationBar
|
|
}
|
|
}
|
|
}
|
|
.store(in: &cancellables)
|
|
}
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
super.viewWillAppear(animated)
|
|
|
|
viewModel.request()
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView,
|
|
willDisplay cell: UITableViewCell,
|
|
forRowAt indexPath: IndexPath) {
|
|
guard let item = dataSource.itemIdentifier(for: indexPath) else { return }
|
|
|
|
var heightCache = cellHeightCaches[tableView.frame.width] ?? [String: CGFloat]()
|
|
|
|
heightCache[item] = cell.frame.height
|
|
cellHeightCaches[tableView.frame.width] = heightCache
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
|
|
guard let item = dataSource.itemIdentifier(for: indexPath) else { return UITableView.automaticDimension }
|
|
|
|
return cellHeightCaches[tableView.frame.width]?[item] ?? UITableView.automaticDimension
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool {
|
|
guard let id = dataSource.itemIdentifier(for: indexPath) else { return true }
|
|
|
|
return id != viewModel.contextParentID
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
|
guard
|
|
let id = dataSource.itemIdentifier(for: indexPath),
|
|
let contextViewModel = viewModel.contextViewModel(id: id)
|
|
else { return }
|
|
|
|
navigationController?.pushViewController(
|
|
StatusListViewController(viewModel: contextViewModel),
|
|
animated: true)
|
|
}
|
|
}
|
|
|
|
extension StatusListViewController: StatusTableViewCellDelegate {
|
|
func statusTableViewCellDidHaveShareButtonTapped(_ cell: StatusTableViewCell) {
|
|
guard let url = cell.viewModel?.sharingURL else { return }
|
|
|
|
share(url: url)
|
|
}
|
|
}
|
|
|
|
private extension StatusListViewController {
|
|
func share(url: URL) {
|
|
let activityViewController = UIActivityViewController(activityItems: [url], applicationActivities: nil)
|
|
|
|
present(activityViewController, animated: true, completion: nil)
|
|
}
|
|
}
|
|
|
|
private extension Array where Element: Sequence, Element.Element: Hashable {
|
|
func snapshot() -> NSDiffableDataSourceSnapshot<Int, Element.Element> {
|
|
var snapshot = NSDiffableDataSourceSnapshot<Int, Element.Element>()
|
|
|
|
let sections = [Int](0..<count)
|
|
|
|
snapshot.appendSections(sections)
|
|
|
|
for section in sections {
|
|
snapshot.appendItems(self[section].map { $0 }, toSection: section)
|
|
}
|
|
|
|
return snapshot
|
|
}
|
|
}
|