forked from shadowfacts/Tusker
72 lines
2.9 KiB
Swift
72 lines
2.9 KiB
Swift
//
|
|
// EnhancedTableViewController.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 11/10/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SafariServices
|
|
|
|
class EnhancedTableViewController: UITableViewController {
|
|
|
|
var prevScrollToTopOffset: CGPoint? = nil
|
|
|
|
private var topOffset: CGPoint {
|
|
// when scrolled to top, the content offset is negative the height of the UI above the scroll view (i.e. the nav and status bars)
|
|
let windowScene = UIApplication.shared.keyWindow!.windowScene!
|
|
let barOffset = -1 * (navigationController!.navigationBar.frame.height + windowScene.statusBarManager!.statusBarFrame.height)
|
|
// add one so it's not technically all the way at the top, and scrollViewWShouldScrollToTop is still called to trigger undo
|
|
return CGPoint(x: 0, y: barOffset + 1)
|
|
}
|
|
|
|
override func scrollViewShouldScrollToTop(_ scrollView: UIScrollView) -> Bool {
|
|
if let offset = prevScrollToTopOffset {
|
|
tableView.setContentOffset(offset, animated: true)
|
|
prevScrollToTopOffset = nil
|
|
} else {
|
|
prevScrollToTopOffset = tableView.contentOffset
|
|
tableView.setContentOffset(topOffset, animated: true)
|
|
}
|
|
return false
|
|
}
|
|
|
|
override func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
|
|
prevScrollToTopOffset = nil
|
|
}
|
|
|
|
}
|
|
|
|
extension EnhancedTableViewController {
|
|
|
|
override func tableView(_ tableView: UITableView, contextMenuConfigurationForRowAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
|
|
if let cell = tableView.cellForRow(at: indexPath) as? UITableViewCell & MenuPreviewProvider {
|
|
let cellLocation = cell.convert(point, from: tableView)
|
|
guard let (previewProvider, actionsProvider) = cell.getPreviewProviders(for: cellLocation, sourceViewController: self) else {
|
|
return nil
|
|
}
|
|
let actionProvider: UIContextMenuActionProvider = { (elements) in
|
|
return UIMenu(title: "test", children: elements + actionsProvider())
|
|
}
|
|
return UIContextMenuConfiguration(identifier: nil, previewProvider: previewProvider, actionProvider: actionProvider)
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, willCommitMenuWithAnimator animator: UIContextMenuInteractionCommitAnimating) {
|
|
if /*animator.preferredCommitStyle == .pop,*/ // preferredCommitStyle is always .dismiss, see FB6113554
|
|
let viewController = animator.previewViewController {
|
|
animator.addCompletion {
|
|
if viewController is LargeImageViewController || viewController is SFSafariViewController {
|
|
self.present(viewController, animated: true)
|
|
} else {
|
|
self.show(viewController, sender: nil)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|