metatext/View Controllers/TableViewController.swift

447 lines
17 KiB
Swift
Raw Normal View History

2020-08-21 02:29:01 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
2020-10-20 06:41:10 +00:00
import AVKit
2020-08-21 02:29:01 +00:00
import Combine
2021-01-11 22:45:30 +00:00
import Mastodon
2020-09-15 01:39:35 +00:00
import SafariServices
2020-09-05 02:31:43 +00:00
import SwiftUI
2020-09-01 07:33:49 +00:00
import ViewModels
2020-08-21 02:29:01 +00:00
2021-01-10 05:56:15 +00:00
// swiftlint:disable file_length
2020-09-27 01:44:33 +00:00
class TableViewController: UITableViewController {
2020-10-22 22:16:06 +00:00
var transitionViewTag = -1
2020-09-23 01:00:56 +00:00
private let viewModel: CollectionViewModel
2021-01-10 05:56:15 +00:00
private let rootViewModel: RootViewModel
2020-10-07 00:31:29 +00:00
private let identification: Identification
2020-08-28 22:39:17 +00:00
private let loadingTableFooterView = LoadingTableFooterView()
2020-09-26 06:37:30 +00:00
private let webfingerIndicatorView = WebfingerIndicatorView()
2020-08-21 02:29:01 +00:00
private var cancellables = Set<AnyCancellable>()
2020-10-15 07:44:01 +00:00
private var cellHeightCaches = [CGFloat: [CollectionItem: CGFloat]]()
2021-01-08 06:11:33 +00:00
private var shouldKeepPlayingVideoAfterDismissal = false
2020-08-21 02:29:01 +00:00
2020-10-07 21:06:26 +00:00
private lazy var dataSource: TableViewDataSource = {
.init(tableView: tableView, viewModelProvider: viewModel.viewModel(indexPath:))
2020-08-21 02:29:01 +00:00
}()
2021-01-10 05:56:15 +00:00
init(viewModel: CollectionViewModel, rootViewModel: RootViewModel, identification: Identification) {
2020-08-21 02:29:01 +00:00
self.viewModel = viewModel
2021-01-10 05:56:15 +00:00
self.rootViewModel = rootViewModel
2020-10-07 00:31:29 +00:00
self.identification = identification
2020-08-21 02:29:01 +00:00
super.init(style: .plain)
}
2020-08-28 22:39:17 +00:00
@available(*, unavailable)
2020-08-21 02:29:01 +00:00
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
super.viewDidLoad()
tableView.dataSource = dataSource
2020-08-28 22:39:17 +00:00
tableView.prefetchDataSource = self
2020-08-21 02:29:01 +00:00
tableView.cellLayoutMarginsFollowReadableWidth = true
2020-08-28 22:39:17 +00:00
tableView.tableFooterView = UIView()
2020-12-11 02:51:08 +00:00
tableView.contentInset.bottom = Self.bottomInset
2020-08-21 02:29:01 +00:00
2020-09-26 06:37:30 +00:00
view.addSubview(webfingerIndicatorView)
webfingerIndicatorView.translatesAutoresizingMaskIntoConstraints = false
2020-09-14 23:32:34 +00:00
2020-09-26 06:37:30 +00:00
NSLayoutConstraint.activate([
webfingerIndicatorView.centerXAnchor.constraint(equalTo: view.safeAreaLayoutGuide.centerXAnchor),
webfingerIndicatorView.centerYAnchor.constraint(equalTo: view.safeAreaLayoutGuide.centerYAnchor)
])
2020-08-28 22:39:17 +00:00
2020-09-26 06:37:30 +00:00
setupViewModelBindings()
2020-08-21 02:29:01 +00:00
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
2020-10-05 22:50:05 +00:00
viewModel.request(maxId: nil, minId: nil)
2020-08-21 02:29:01 +00:00
}
2020-10-05 01:25:02 +00:00
override func scrollViewDidScroll(_ scrollView: UIScrollView) {
guard scrollView.isDragging else { return }
let up = scrollView.panGestureRecognizer.translation(in: scrollView.superview).y > 0
for loadMoreView in visibleLoadMoreViews {
loadMoreView.directionChanged(up: up)
}
}
override func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
for loadMoreView in visibleLoadMoreViews {
loadMoreView.finalizeDirectionChange()
}
}
2020-08-21 02:29:01 +00:00
override func tableView(_ tableView: UITableView,
willDisplay cell: UITableViewCell,
forRowAt indexPath: IndexPath) {
guard let item = dataSource.itemIdentifier(for: indexPath) else { return }
2020-10-15 07:44:01 +00:00
var heightCache = cellHeightCaches[tableView.frame.width] ?? [CollectionItem: CGFloat]()
2020-08-21 02:29:01 +00:00
heightCache[item] = cell.frame.height
cellHeightCaches[tableView.frame.width] = heightCache
2021-01-16 05:54:38 +00:00
paginateIfLastIndexPathPresent(indexPaths: [indexPath])
2020-08-21 02:29:01 +00:00
}
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 {
2020-10-05 07:50:59 +00:00
viewModel.canSelect(indexPath: indexPath)
2020-08-21 02:29:01 +00:00
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
2020-10-05 01:25:02 +00:00
tableView.deselectRow(at: indexPath, animated: true)
2020-10-05 07:50:59 +00:00
viewModel.select(indexPath: indexPath)
2020-08-21 02:29:01 +00:00
}
2020-08-28 22:39:17 +00:00
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
sizeTableHeaderFooterViews()
}
}
2020-09-27 01:44:33 +00:00
extension TableViewController: UITableViewDataSourcePrefetching {
2020-08-28 22:39:17 +00:00
func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) {
2021-01-16 05:54:38 +00:00
paginateIfLastIndexPathPresent(indexPaths: indexPaths)
2020-08-28 22:39:17 +00:00
}
2020-08-21 02:29:01 +00:00
}
2020-09-27 05:54:06 +00:00
extension TableViewController {
2021-01-10 05:56:15 +00:00
func report(reportViewModel: ReportViewModel) {
let reportViewController = ReportViewController(viewModel: reportViewModel)
let navigationController = UINavigationController(rootViewController: reportViewController)
present(navigationController, animated: true)
}
2020-09-27 05:54:06 +00:00
func sizeTableHeaderFooterViews() {
// https://useyourloaf.com/blog/variable-height-table-view-header/
if let headerView = tableView.tableHeaderView {
let size = headerView.systemLayoutSizeFitting(
CGSize(width: tableView.frame.width, height: .greatestFiniteMagnitude),
withHorizontalFittingPriority: .required,
verticalFittingPriority: .fittingSizeLevel)
if headerView.frame.size.height != size.height {
headerView.frame.size.height = size.height
tableView.tableHeaderView = headerView
tableView.layoutIfNeeded()
}
view.insertSubview(webfingerIndicatorView, aboveSubview: headerView)
}
if let footerView = tableView.tableFooterView {
let size = footerView.systemLayoutSizeFitting(
CGSize(width: tableView.frame.width, height: .greatestFiniteMagnitude),
withHorizontalFittingPriority: .required,
verticalFittingPriority: .fittingSizeLevel)
if footerView.frame.size.height != size.height {
footerView.frame.size.height = size.height
tableView.tableFooterView = footerView
tableView.layoutIfNeeded()
}
}
}
}
2020-10-20 06:41:10 +00:00
extension TableViewController: AVPlayerViewControllerDelegate {
func playerViewController(
_ playerViewController: AVPlayerViewController,
willEndFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator) {
try? AVAudioSession.sharedInstance().setCategory(.ambient, mode: .default)
playerViewController.player?.isMuted = true
2021-01-08 06:11:33 +00:00
coordinator.animate(alongsideTransition: nil) { _ in
if self.shouldKeepPlayingVideoAfterDismissal {
playerViewController.player?.play()
}
}
2020-10-20 06:41:10 +00:00
}
}
2020-10-22 05:05:50 +00:00
extension TableViewController: ZoomAnimatorDelegate {
func transitionWillStartWith(zoomAnimator: ZoomAnimator) {
view.layoutIfNeeded()
guard let imageViewController = (presentedViewController as? ImageNavigationController)?.currentViewController
else { return }
if imageViewController.playerView.tag != 0 {
transitionViewTag = imageViewController.playerView.tag
} else if imageViewController.imageView.tag != 0 {
transitionViewTag = imageViewController.imageView.tag
}
}
func transitionDidEndWith(zoomAnimator: ZoomAnimator) {
}
2020-10-15 07:44:01 +00:00
2020-10-22 05:05:50 +00:00
func referenceView(for zoomAnimator: ZoomAnimator) -> UIView? {
2020-10-22 22:16:06 +00:00
view.viewWithTag(transitionViewTag)
2020-10-22 05:05:50 +00:00
}
func referenceViewFrameInTransitioningView(for zoomAnimator: ZoomAnimator) -> CGRect? {
guard let referenceView = referenceView(for: zoomAnimator) else { return nil }
2020-12-03 20:41:28 +00:00
return parent?.view.convert(referenceView.frame, from: referenceView.superview)
2020-10-22 05:05:50 +00:00
}
}
private extension TableViewController {
2020-12-11 02:51:08 +00:00
static let bottomInset: CGFloat = .newStatusButtonDimension + .defaultSpacing * 4
2020-10-05 01:25:02 +00:00
var visibleLoadMoreViews: [LoadMoreView] {
tableView.visibleCells.compactMap { $0.contentView as? LoadMoreView }
}
2020-09-26 06:37:30 +00:00
func setupViewModelBindings() {
viewModel.title.sink { [weak self] in self?.navigationItem.title = $0 }.store(in: &cancellables)
2020-12-03 01:41:22 +00:00
viewModel.titleLocalizationComponents.sink { [weak self] in
guard let key = $0.first else { return }
self?.navigationItem.title = String(
format: NSLocalizedString(key, comment: ""),
arguments: Array($0.suffix(from: 1)))
}
.store(in: &cancellables)
2020-10-07 21:06:26 +00:00
viewModel.updates.sink { [weak self] in self?.update($0) }.store(in: &cancellables)
2020-09-26 06:37:30 +00:00
2020-10-07 00:31:29 +00:00
viewModel.events.receive(on: DispatchQueue.main)
.sink { [weak self] in self?.handle(event: $0) }
.store(in: &cancellables)
2020-09-26 06:37:30 +00:00
2020-10-14 00:03:01 +00:00
viewModel.expandAll.receive(on: DispatchQueue.main)
.sink { [weak self] in self?.set(expandAllState: $0) }
2020-10-07 21:06:26 +00:00
.store(in: &cancellables)
2020-09-27 05:54:06 +00:00
viewModel.loading.receive(on: RunLoop.main).sink { [weak self] in
guard let self = self else { return }
2020-09-26 06:37:30 +00:00
2020-09-27 05:54:06 +00:00
self.tableView.tableFooterView = $0 ? self.loadingTableFooterView : UIView()
self.sizeTableHeaderFooterViews()
2020-09-26 06:37:30 +00:00
}
2020-09-27 05:54:06 +00:00
.store(in: &cancellables)
2020-10-06 23:12:11 +00:00
2021-01-04 01:19:33 +00:00
viewModel.alertItems
.compactMap { $0 }
2021-01-11 22:45:30 +00:00
.handleEvents(receiveOutput: { print($0.error) })
2021-01-04 01:19:33 +00:00
.sink { [weak self] in self?.present(alertItem: $0) }
.store(in: &cancellables)
2020-10-06 23:12:11 +00:00
tableView.publisher(for: \.contentOffset)
.compactMap { [weak self] _ in self?.tableView.indexPathsForVisibleRows?.first }
.sink { [weak self] in self?.viewModel.viewedAtTop(indexPath: $0) }
.store(in: &cancellables)
2020-09-26 06:37:30 +00:00
}
2020-10-07 21:06:26 +00:00
func update(_ update: CollectionUpdate) {
2020-09-15 05:41:09 +00:00
var offsetFromNavigationBar: CGFloat?
if
2020-10-31 00:53:57 +00:00
let itemId = update.maintainScrollPositionItemId,
let indexPath = dataSource.indexPath(itemId: itemId),
2020-09-15 05:41:09 +00:00
let navigationBar = navigationController?.navigationBar {
let navigationBarMaxY = tableView.convert(navigationBar.bounds, from: navigationBar).maxY
offsetFromNavigationBar = tableView.rectForRow(at: indexPath).origin.y - navigationBarMaxY
}
2020-10-14 00:03:01 +00:00
self.dataSource.apply(update.items.snapshot(), animatingDifferences: false) { [weak self] in
2020-09-15 05:41:09 +00:00
guard let self = self else { return }
2020-10-07 21:06:26 +00:00
if
2020-10-31 00:53:57 +00:00
let itemId = update.maintainScrollPositionItemId,
let indexPath = self.dataSource.indexPath(itemId: itemId) {
2020-10-27 03:01:12 +00:00
if self.viewModel.shouldAdjustContentInset {
self.tableView.contentInset.bottom = max(
2020-12-11 02:51:08 +00:00
Self.bottomInset,
2020-10-27 03:01:12 +00:00
self.tableView.frame.height
- self.tableView.contentSize.height
- self.tableView.safeAreaInsets.top
- self.tableView.safeAreaInsets.bottom)
+ self.tableView.rectForRow(at: indexPath).minY
}
2020-10-07 21:06:26 +00:00
self.tableView.scrollToRow(at: indexPath, at: .top, animated: false)
2020-09-15 05:41:09 +00:00
2020-10-07 21:06:26 +00:00
if let offsetFromNavigationBar = offsetFromNavigationBar {
self.tableView.contentOffset.y -= offsetFromNavigationBar
2020-09-15 05:41:09 +00:00
}
}
}
}
2020-10-07 00:31:29 +00:00
func handle(event: CollectionItemEvent) {
switch event {
case .ignorableOutput:
break
case let .share(url):
share(url: url)
2020-10-20 06:41:10 +00:00
case let .navigation(navigation):
2021-01-10 05:56:15 +00:00
handle(navigation: navigation)
2020-10-20 06:41:10 +00:00
case let .attachment(attachmentViewModel, statusViewModel):
present(attachmentViewModel: attachmentViewModel, statusViewModel: statusViewModel)
2021-01-11 22:45:30 +00:00
case let .compose(inReplyToViewModel, redraft):
compose(inReplyToViewModel: inReplyToViewModel, redraft: redraft)
2021-01-11 23:40:46 +00:00
case let .confirmDelete(statusViewModel, redraft):
confirmDelete(statusViewModel: statusViewModel, redraft: redraft)
2020-11-30 02:54:11 +00:00
case let .report(reportViewModel):
2021-01-10 05:56:15 +00:00
report(reportViewModel: reportViewModel)
}
}
func handle(navigation: Navigation) {
switch navigation {
case let .collection(collectionService):
show(TableViewController(
viewModel: CollectionItemsViewModel(
collectionService: collectionService,
identification: identification),
rootViewModel: rootViewModel,
identification: identification),
sender: self)
case let .profile(profileService):
show(ProfileViewController(
viewModel: ProfileViewModel(
profileService: profileService,
identification: identification),
rootViewModel: rootViewModel,
identification: identification),
sender: self)
case let .url(url):
present(SFSafariViewController(url: url), animated: true)
case .webfingerStart:
webfingerIndicatorView.startAnimating()
case .webfingerEnd:
webfingerIndicatorView.stopAnimating()
2020-10-20 06:41:10 +00:00
}
}
func present(attachmentViewModel: AttachmentViewModel, statusViewModel: StatusViewModel) {
switch attachmentViewModel.attachment.type {
case .audio, .video:
let playerViewController = AVPlayerViewController()
let player: AVPlayer
if attachmentViewModel.attachment.type == .video {
player = PlayerCache.shared.player(url: attachmentViewModel.attachment.url)
} else {
player = AVPlayer(url: attachmentViewModel.attachment.url)
}
playerViewController.delegate = self
playerViewController.player = player
2021-01-08 06:11:33 +00:00
shouldKeepPlayingVideoAfterDismissal = attachmentViewModel.shouldAutoplay
2020-10-20 06:41:10 +00:00
present(playerViewController, animated: true) {
try? AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
player.isMuted = false
player.play()
}
case .image, .gifv:
2020-10-21 08:07:13 +00:00
let imagePageViewController = ImagePageViewController(
initiallyVisible: attachmentViewModel,
statusViewModel: statusViewModel)
let imageNavigationController = ImageNavigationController(imagePageViewController: imagePageViewController)
2020-10-22 05:05:50 +00:00
imageNavigationController.transitionController.fromDelegate = self
transitionViewTag = attachmentViewModel.tag
2020-10-21 08:07:13 +00:00
present(imageNavigationController, animated: true)
2020-10-20 06:41:10 +00:00
case .unknown:
break
2020-10-07 00:31:29 +00:00
}
}
2021-01-11 22:45:30 +00:00
func compose(inReplyToViewModel: StatusViewModel?, redraft: Status?) {
2021-01-10 05:56:15 +00:00
let newStatusViewModel = rootViewModel.newStatusViewModel(
identification: identification,
2021-01-11 22:45:30 +00:00
inReplyTo: inReplyToViewModel,
redraft: redraft)
2021-01-10 05:56:15 +00:00
let newStatusViewController = UIHostingController(rootView: NewStatusView { newStatusViewModel })
let navigationController = UINavigationController(rootViewController: newStatusViewController)
navigationController.modalPresentationStyle = .overFullScreen
present(navigationController, animated: true)
}
2021-01-11 23:40:46 +00:00
func confirmDelete(statusViewModel: StatusViewModel, redraft: Bool) {
let alertController = UIAlertController(
title: nil,
message: redraft
? NSLocalizedString("status.delete-and-redraft.confirm", comment: "")
: NSLocalizedString("status.delete.confirm", comment: ""),
preferredStyle: .alert)
let deleteAction = UIAlertAction(
title: redraft
? NSLocalizedString("status.delete-and-redraft", comment: "")
: NSLocalizedString("status.delete", comment: ""),
style: .destructive) { _ in
redraft ? statusViewModel.deleteAndRedraft() : statusViewModel.delete()
}
let cancelAction = UIAlertAction(title: NSLocalizedString("cancel", comment: ""), style: .cancel) { _ in }
alertController.addAction(deleteAction)
alertController.addAction(cancelAction)
present(alertController, animated: true)
}
2020-10-14 00:03:01 +00:00
func set(expandAllState: ExpandAllState) {
switch expandAllState {
2020-10-07 21:06:26 +00:00
case .hidden:
navigationItem.rightBarButtonItem = nil
2020-10-14 00:03:01 +00:00
case .expand:
2020-10-07 21:06:26 +00:00
navigationItem.rightBarButtonItem = UIBarButtonItem(
title: NSLocalizedString("status.show-more", comment: ""),
2020-10-14 00:03:01 +00:00
image: UIImage(systemName: "eye"),
primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() })
case .collapse:
2020-10-07 21:06:26 +00:00
navigationItem.rightBarButtonItem = UIBarButtonItem(
title: NSLocalizedString("status.show-less", comment: ""),
2020-10-14 00:03:01 +00:00
image: UIImage(systemName: "eye.slash"),
primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() })
2020-10-07 21:06:26 +00:00
}
}
2020-09-14 23:32:34 +00:00
func share(url: URL) {
let activityViewController = UIActivityViewController(activityItems: [url], applicationActivities: nil)
present(activityViewController, animated: true, completion: nil)
}
2021-01-16 05:54:38 +00:00
func paginateIfLastIndexPathPresent(indexPaths: [IndexPath]) {
guard
let maxId = viewModel.nextPageMaxId,
let indexPath = indexPaths.last,
indexPath.section == dataSource.numberOfSections(in: tableView) - 1,
indexPath.row == dataSource.tableView(tableView, numberOfRowsInSection: indexPath.section) - 1
else { return }
viewModel.request(maxId: maxId, minId: nil)
}
2020-08-21 02:29:01 +00:00
}
2021-01-10 05:56:15 +00:00
// swiftlint:enable file_length