// Copyright © 2020 Metabolist. All rights reserved. import AVKit import Combine import Mastodon import SafariServices import SwiftUI import ViewModels // swiftlint:disable file_length class TableViewController: UITableViewController { var transitionViewTag = -1 private let viewModel: CollectionViewModel private let rootViewModel: RootViewModel private let identification: Identification private let loadingTableFooterView = LoadingTableFooterView() private let webfingerIndicatorView = WebfingerIndicatorView() @Published private var loading = false private var cancellables = Set() private var cellHeightCaches = [CGFloat: [CollectionItem: CGFloat]]() private var shouldKeepPlayingVideoAfterDismissal = false private lazy var dataSource: TableViewDataSource = { .init(tableView: tableView, viewModelProvider: viewModel.viewModel(indexPath:)) }() init(viewModel: CollectionViewModel, rootViewModel: RootViewModel, identification: Identification) { self.viewModel = viewModel self.rootViewModel = rootViewModel self.identification = identification super.init(style: .plain) } @available(*, unavailable) required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } override func viewDidLoad() { super.viewDidLoad() tableView.dataSource = dataSource tableView.prefetchDataSource = self tableView.cellLayoutMarginsFollowReadableWidth = true tableView.tableFooterView = UIView() tableView.contentInset.bottom = Self.bottomInset view.addSubview(webfingerIndicatorView) webfingerIndicatorView.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ webfingerIndicatorView.centerXAnchor.constraint(equalTo: view.safeAreaLayoutGuide.centerXAnchor), webfingerIndicatorView.centerYAnchor.constraint(equalTo: view.safeAreaLayoutGuide.centerYAnchor) ]) setupViewModelBindings() } override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) viewModel.request(maxId: nil, minId: nil) } 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() } } 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] ?? [CollectionItem: CGFloat]() heightCache[item] = cell.frame.height cellHeightCaches[tableView.frame.width] = heightCache paginateIfLastIndexPathPresent(indexPaths: [indexPath]) } 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 { viewModel.canSelect(indexPath: indexPath) } override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { tableView.deselectRow(at: indexPath, animated: true) viewModel.select(indexPath: indexPath) } override func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() sizeTableHeaderFooterViews() } } extension TableViewController: UITableViewDataSourcePrefetching { func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) { paginateIfLastIndexPathPresent(indexPaths: indexPaths) } } extension TableViewController { func report(reportViewModel: ReportViewModel) { let reportViewController = ReportViewController(viewModel: reportViewModel) let navigationController = UINavigationController(rootViewController: reportViewController) present(navigationController, animated: true) } 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() } } } } extension TableViewController: AVPlayerViewControllerDelegate { func playerViewController( _ playerViewController: AVPlayerViewController, willEndFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator) { try? AVAudioSession.sharedInstance().setCategory(.ambient, mode: .default) playerViewController.player?.isMuted = true coordinator.animate(alongsideTransition: nil) { _ in if self.shouldKeepPlayingVideoAfterDismissal { playerViewController.player?.play() } } } } 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) { } func referenceView(for zoomAnimator: ZoomAnimator) -> UIView? { view.viewWithTag(transitionViewTag) } func referenceViewFrameInTransitioningView(for zoomAnimator: ZoomAnimator) -> CGRect? { guard let referenceView = referenceView(for: zoomAnimator) else { return nil } return parent?.view.convert(referenceView.frame, from: referenceView.superview) } } private extension TableViewController { static let bottomInset: CGFloat = .newStatusButtonDimension + .defaultSpacing * 4 var visibleLoadMoreViews: [LoadMoreView] { tableView.visibleCells.compactMap { $0.contentView as? LoadMoreView } } func setupViewModelBindings() { viewModel.title.sink { [weak self] in self?.navigationItem.title = $0 }.store(in: &cancellables) 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) viewModel.updates.sink { [weak self] in self?.update($0) }.store(in: &cancellables) viewModel.events.receive(on: DispatchQueue.main) .sink { [weak self] in self?.handle(event: $0) } .store(in: &cancellables) viewModel.expandAll.receive(on: DispatchQueue.main) .sink { [weak self] in self?.set(expandAllState: $0) } .store(in: &cancellables) viewModel.loading.receive(on: DispatchQueue.main).assign(to: &$loading) $loading.sink { [weak self] in guard let self = self else { return } self.tableView.tableFooterView = $0 ? self.loadingTableFooterView : UIView() self.sizeTableHeaderFooterViews() } .store(in: &cancellables) viewModel.alertItems .compactMap { $0 } .sink { [weak self] in self?.present(alertItem: $0) } .store(in: &cancellables) tableView.publisher(for: \.contentOffset) .compactMap { [weak self] _ in self?.tableView.indexPathsForVisibleRows?.first } .sink { [weak self] in self?.viewModel.viewedAtTop(indexPath: $0) } .store(in: &cancellables) } func update(_ update: CollectionUpdate) { var offsetFromNavigationBar: CGFloat? if let itemId = update.maintainScrollPositionItemId, let indexPath = dataSource.indexPath(itemId: itemId), let navigationBar = navigationController?.navigationBar { let navigationBarMaxY = tableView.convert(navigationBar.bounds, from: navigationBar).maxY offsetFromNavigationBar = tableView.rectForRow(at: indexPath).origin.y - navigationBarMaxY } self.dataSource.apply(update.items.snapshot(), animatingDifferences: false) { [weak self] in guard let self = self else { return } if let itemId = update.maintainScrollPositionItemId, let indexPath = self.dataSource.indexPath(itemId: itemId) { if self.viewModel.shouldAdjustContentInset { self.tableView.contentInset.bottom = max( Self.bottomInset, self.tableView.frame.height - self.tableView.contentSize.height - self.tableView.safeAreaInsets.top - self.tableView.safeAreaInsets.bottom) + self.tableView.rectForRow(at: indexPath).minY } self.tableView.scrollToRow(at: indexPath, at: .top, animated: false) if let offsetFromNavigationBar = offsetFromNavigationBar { self.tableView.contentOffset.y -= offsetFromNavigationBar } } } } func handle(event: CollectionItemEvent) { switch event { case .ignorableOutput: break case let .share(url): share(url: url) case let .navigation(navigation): handle(navigation: navigation) case let .attachment(attachmentViewModel, statusViewModel): present(attachmentViewModel: attachmentViewModel, statusViewModel: statusViewModel) case let .compose(inReplyToViewModel, redraft): compose(inReplyToViewModel: inReplyToViewModel, redraft: redraft) case let .confirmDelete(statusViewModel, redraft): confirmDelete(statusViewModel: statusViewModel, redraft: redraft) case let .report(reportViewModel): 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() } } 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 shouldKeepPlayingVideoAfterDismissal = attachmentViewModel.shouldAutoplay present(playerViewController, animated: true) { try? AVAudioSession.sharedInstance().setCategory(.playback, mode: .default) player.isMuted = false player.play() } case .image, .gifv: let imagePageViewController = ImagePageViewController( initiallyVisible: attachmentViewModel, statusViewModel: statusViewModel) let imageNavigationController = ImageNavigationController(imagePageViewController: imagePageViewController) imageNavigationController.transitionController.fromDelegate = self transitionViewTag = attachmentViewModel.tag present(imageNavigationController, animated: true) case .unknown: break } } func compose(inReplyToViewModel: StatusViewModel?, redraft: Status?) { let newStatusViewModel = rootViewModel.newStatusViewModel( identification: identification, inReplyTo: inReplyToViewModel, redraft: redraft) let newStatusViewController = UIHostingController(rootView: NewStatusView { newStatusViewModel }) let navigationController = UINavigationController(rootViewController: newStatusViewController) navigationController.modalPresentationStyle = .overFullScreen present(navigationController, animated: true) } 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) } func set(expandAllState: ExpandAllState) { switch expandAllState { case .hidden: navigationItem.rightBarButtonItem = nil case .expand: navigationItem.rightBarButtonItem = UIBarButtonItem( title: NSLocalizedString("status.show-more", comment: ""), image: UIImage(systemName: "eye"), primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() }) case .collapse: navigationItem.rightBarButtonItem = UIBarButtonItem( title: NSLocalizedString("status.show-less", comment: ""), image: UIImage(systemName: "eye.slash"), primaryAction: UIAction { [weak self] _ in self?.viewModel.toggleExpandAll() }) } } func share(url: URL) { let activityViewController = UIActivityViewController(activityItems: [url], applicationActivities: nil) present(activityViewController, animated: true, completion: nil) } func paginateIfLastIndexPathPresent(indexPaths: [IndexPath]) { guard !loading, let indexPath = indexPaths.last, indexPath.section == dataSource.numberOfSections(in: tableView) - 1, indexPath.row == dataSource.tableView(tableView, numberOfRowsInSection: indexPath.section) - 1, let maxId = viewModel.preferLastPresentIdOverNextPageMaxId ? dataSource.itemIdentifier(for: indexPath)?.itemId : viewModel.nextPageMaxId else { return } viewModel.request(maxId: maxId, minId: nil) } } // swiftlint:enable file_length