2019-04-15 22:03:05 +02:00
|
|
|
//
|
|
|
|
// MasterViewController.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 4/8/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import Account
|
2019-04-17 01:25:55 +02:00
|
|
|
import Articles
|
2019-04-15 22:03:05 +02:00
|
|
|
import RSCore
|
|
|
|
import RSTree
|
2020-05-15 09:09:33 +02:00
|
|
|
import SafariServices
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2019-07-27 21:49:07 +02:00
|
|
|
class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2020-01-08 01:39:45 +01:00
|
|
|
@IBOutlet weak var filterButton: UIBarButtonItem!
|
2019-10-30 10:04:13 +01:00
|
|
|
private var refreshProgressView: RefreshProgressView?
|
2021-01-31 15:37:47 +01:00
|
|
|
@IBOutlet weak var addNewItemButton: UIBarButtonItem! {
|
|
|
|
didSet {
|
|
|
|
if #available(iOS 14, *) {
|
|
|
|
addNewItemButton.primaryAction = nil
|
|
|
|
} else {
|
|
|
|
addNewItemButton.action = #selector(MasterFeedViewController.add(_:))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-23 19:57:20 +01:00
|
|
|
|
|
|
|
private let operationQueue = MainThreadOperationQueue()
|
2019-11-21 03:28:24 +01:00
|
|
|
lazy var dataSource = makeDataSource()
|
2020-02-23 19:57:20 +01:00
|
|
|
|
2019-04-17 01:25:55 +02:00
|
|
|
var undoableCommands = [UndoableCommand]()
|
2019-09-01 19:43:07 +02:00
|
|
|
weak var coordinator: SceneCoordinator!
|
2019-08-29 01:06:27 +02:00
|
|
|
|
2019-09-05 21:37:07 +02:00
|
|
|
private let keyboardManager = KeyboardManager(type: .sidebar)
|
2019-09-04 23:24:16 +02:00
|
|
|
override var keyCommands: [UIKeyCommand]? {
|
|
|
|
return keyboardManager.keyCommands
|
|
|
|
}
|
|
|
|
|
2019-04-17 01:25:55 +02:00
|
|
|
override var canBecomeFirstResponder: Bool {
|
|
|
|
return true
|
|
|
|
}
|
2019-09-04 23:24:16 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
override func viewDidLoad() {
|
|
|
|
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
2019-08-23 19:27:45 +02:00
|
|
|
if traitCollection.userInterfaceIdiom == .phone {
|
|
|
|
navigationController?.navigationBar.prefersLargeTitles = true
|
|
|
|
}
|
|
|
|
|
2019-09-15 02:51:23 +02:00
|
|
|
// If you don't have an empty table header, UIKit tries to help out by putting one in for you
|
|
|
|
// that makes a gap between the first section header and the navigation bar
|
|
|
|
var frame = CGRect.zero
|
|
|
|
frame.size.height = .leastNormalMagnitude
|
|
|
|
tableView.tableHeaderView = UIView(frame: frame)
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
tableView.register(MasterFeedTableViewSectionHeader.self, forHeaderFooterViewReuseIdentifier: "SectionHeader")
|
2019-08-29 01:06:27 +02:00
|
|
|
tableView.dataSource = dataSource
|
2019-11-21 03:28:24 +01:00
|
|
|
tableView.dragDelegate = self
|
|
|
|
tableView.dropDelegate = self
|
|
|
|
tableView.dragInteractionEnabled = true
|
2019-10-29 01:52:50 +01:00
|
|
|
resetEstimatedRowHeight()
|
|
|
|
tableView.separatorStyle = .none
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(unreadCountDidChange(_:)), name: .UnreadCountDidChange, object: nil)
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(faviconDidBecomeAvailable(_:)), name: .FaviconDidBecomeAvailable, object: nil)
|
2019-11-15 03:11:41 +01:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(webFeedIconDidBecomeAvailable(_:)), name: .WebFeedIconDidBecomeAvailable, object: nil)
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(webFeedSettingDidChange(_:)), name: .WebFeedSettingDidChange, object: nil)
|
2019-04-28 17:31:35 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(contentSizeCategoryDidChange), name: UIContentSizeCategory.didChangeNotification, object: nil)
|
2019-11-13 20:43:02 +01:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(willEnterForeground(_:)), name: UIApplication.willEnterForegroundNotification, object: nil)
|
2021-02-01 01:33:37 +01:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(configureContextMenu(_:)), name: .ActiveExtensionPointsDidChange, object: nil)
|
2019-04-22 23:25:16 +02:00
|
|
|
|
2020-01-03 16:42:43 +01:00
|
|
|
refreshControl = UIRefreshControl()
|
|
|
|
refreshControl!.addTarget(self, action: #selector(refreshAccounts(_:)), for: .valueChanged)
|
|
|
|
|
2019-10-25 20:34:59 +02:00
|
|
|
configureToolbar()
|
2019-09-06 17:52:21 +02:00
|
|
|
becomeFirstResponder()
|
2019-11-13 22:22:22 +01:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
2019-10-26 00:07:40 +02:00
|
|
|
updateUI()
|
2019-04-15 22:03:05 +02:00
|
|
|
super.viewWillAppear(animated)
|
|
|
|
}
|
2019-11-30 00:36:22 +01:00
|
|
|
|
2019-04-17 20:35:16 +02:00
|
|
|
// MARK: Notifications
|
2019-04-17 01:25:55 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
@objc func unreadCountDidChange(_ note: Notification) {
|
2019-04-28 19:37:53 +02:00
|
|
|
updateUI()
|
2019-08-29 21:35:18 +02:00
|
|
|
|
|
|
|
guard let representedObject = note.object else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if let account = representedObject as? Account {
|
|
|
|
if let node = coordinator.rootNode.childNodeRepresentingObject(account) {
|
|
|
|
let sectionIndex = coordinator.rootNode.indexOfChild(node)!
|
|
|
|
if let headerView = tableView.headerView(forSection: sectionIndex) as? MasterFeedTableViewSectionHeader {
|
|
|
|
headerView.unreadCount = account.unreadCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var node: Node? = nil
|
2020-01-16 23:24:48 +01:00
|
|
|
if let coordinator = representedObject as? SceneCoordinator, let feed = coordinator.timelineFeed {
|
|
|
|
node = coordinator.rootNode.descendantNodeRepresentingObject(feed as AnyObject)
|
2019-08-29 21:35:18 +02:00
|
|
|
} else {
|
|
|
|
node = coordinator.rootNode.descendantNodeRepresentingObject(representedObject as AnyObject)
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let unreadCountNode = node else { return }
|
|
|
|
let identifier = makeIdentifier(unreadCountNode)
|
|
|
|
if dataSource.indexPath(for: identifier) != nil {
|
|
|
|
self.reload(identifier)
|
2019-08-29 21:35:18 +02:00
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func faviconDidBecomeAvailable(_ note: Notification) {
|
2019-11-06 01:05:57 +01:00
|
|
|
applyToAvailableCells(configureIcon)
|
2019-10-29 02:57:26 +01:00
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
@objc func webFeedIconDidBecomeAvailable(_ note: Notification) {
|
|
|
|
guard let webFeed = note.userInfo?[UserInfoKey.webFeed] as? WebFeed else {
|
2019-11-06 02:57:15 +01:00
|
|
|
return
|
|
|
|
}
|
2019-11-15 03:11:41 +01:00
|
|
|
applyToCellsForRepresentedObject(webFeed, configureIcon(_:_:))
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
@objc func webFeedSettingDidChange(_ note: Notification) {
|
|
|
|
guard let webFeed = note.object as? WebFeed, let key = note.userInfo?[WebFeed.WebFeedSettingUserInfoKey] as? String else {
|
2019-04-15 22:03:05 +02:00
|
|
|
return
|
|
|
|
}
|
2019-11-15 03:11:41 +01:00
|
|
|
if key == WebFeed.WebFeedSettingKey.homePageURL || key == WebFeed.WebFeedSettingKey.faviconURL {
|
|
|
|
configureCellsForRepresentedObject(webFeed)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-28 17:31:35 +02:00
|
|
|
@objc func contentSizeCategoryDidChange(_ note: Notification) {
|
2019-10-28 23:18:44 +01:00
|
|
|
resetEstimatedRowHeight()
|
2019-11-19 18:16:43 +01:00
|
|
|
applyChanges(animated: false)
|
2019-04-28 17:31:35 +02:00
|
|
|
}
|
|
|
|
|
2019-11-13 20:43:02 +01:00
|
|
|
@objc func willEnterForeground(_ note: Notification) {
|
|
|
|
updateUI()
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
// MARK: Table View
|
|
|
|
|
2019-04-21 01:20:25 +02:00
|
|
|
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
|
2019-04-28 17:31:35 +02:00
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
guard let nameProvider = coordinator.rootNode.childAtIndex(section)?.representedObject as? DisplayNameProvider else {
|
2019-04-28 17:31:35 +02:00
|
|
|
return 44
|
|
|
|
}
|
|
|
|
|
|
|
|
let headerView = MasterFeedTableViewSectionHeader()
|
|
|
|
headerView.name = nameProvider.nameForDisplay
|
|
|
|
|
2019-04-28 18:25:21 +02:00
|
|
|
let size = headerView.sizeThatFits(CGSize(width: tableView.bounds.width, height: 0.0))
|
2019-04-28 17:31:35 +02:00
|
|
|
return size.height
|
|
|
|
|
2019-04-21 01:20:25 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 14:24:55 +02:00
|
|
|
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
guard let nameProvider = coordinator.rootNode.childAtIndex(section)?.representedObject as? DisplayNameProvider else {
|
2019-04-17 20:35:16 +02:00
|
|
|
return nil
|
|
|
|
}
|
2019-04-18 14:24:55 +02:00
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
let headerView = tableView.dequeueReusableHeaderFooterView(withIdentifier: "SectionHeader") as! MasterFeedTableViewSectionHeader
|
2020-03-25 14:55:02 +01:00
|
|
|
headerView.delegate = self
|
2019-04-18 14:24:55 +02:00
|
|
|
headerView.name = nameProvider.nameForDisplay
|
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
guard let sectionNode = coordinator.rootNode.childAtIndex(section) else {
|
2019-04-21 01:20:25 +02:00
|
|
|
return headerView
|
|
|
|
}
|
|
|
|
|
|
|
|
if let account = sectionNode.representedObject as? Account {
|
2019-04-18 14:24:55 +02:00
|
|
|
headerView.unreadCount = account.unreadCount
|
2019-04-18 17:49:31 +02:00
|
|
|
} else {
|
|
|
|
headerView.unreadCount = 0
|
2019-04-18 14:24:55 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 18:38:38 +02:00
|
|
|
headerView.tag = section
|
2019-11-25 01:29:00 +01:00
|
|
|
headerView.disclosureExpanded = coordinator.isExpanded(sectionNode)
|
2019-11-01 17:40:52 +01:00
|
|
|
|
|
|
|
if section == tableView.numberOfSections - 1 {
|
|
|
|
headerView.isLastSection = true
|
|
|
|
} else {
|
|
|
|
headerView.isLastSection = false
|
|
|
|
}
|
2019-04-21 01:20:25 +02:00
|
|
|
|
2019-12-11 22:29:32 +01:00
|
|
|
headerView.gestureRecognizers?.removeAll()
|
2019-04-18 18:38:38 +02:00
|
|
|
let tap = UITapGestureRecognizer(target: self, action:#selector(self.toggleSectionHeader(_:)))
|
|
|
|
headerView.addGestureRecognizer(tap)
|
2020-01-20 20:42:25 +01:00
|
|
|
|
|
|
|
// Without this the swipe gesture registers on the cell below
|
2020-02-01 08:12:54 +01:00
|
|
|
let gestureRecognizer = UIPanGestureRecognizer(target: nil, action: nil)
|
|
|
|
gestureRecognizer.delegate = self
|
|
|
|
headerView.addGestureRecognizer(gestureRecognizer)
|
2019-04-18 18:38:38 +02:00
|
|
|
|
2019-12-11 22:42:45 +01:00
|
|
|
headerView.interactions.removeAll()
|
2019-10-24 02:58:18 +02:00
|
|
|
if section != 0 {
|
|
|
|
headerView.addInteraction(UIContextMenuInteraction(delegate: self))
|
|
|
|
}
|
|
|
|
|
2019-04-18 14:24:55 +02:00
|
|
|
return headerView
|
|
|
|
|
2019-04-17 20:35:16 +02:00
|
|
|
}
|
2019-04-21 01:20:25 +02:00
|
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
|
|
|
|
return CGFloat.leastNormalMagnitude
|
|
|
|
}
|
|
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
|
|
|
|
return UIView(frame: CGRect.zero)
|
|
|
|
}
|
2019-04-17 20:35:16 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
|
2019-08-16 02:46:31 +02:00
|
|
|
var actions = [UIContextualAction]()
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
// Set up the delete action
|
|
|
|
let deleteTitle = NSLocalizedString("Delete", comment: "Delete")
|
2019-12-15 01:14:55 +01:00
|
|
|
let deleteAction = UIContextualAction(style: .normal, title: deleteTitle) { [weak self] (action, view, completion) in
|
2019-04-15 22:03:05 +02:00
|
|
|
self?.delete(indexPath: indexPath)
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2019-08-16 02:46:31 +02:00
|
|
|
deleteAction.backgroundColor = UIColor.systemRed
|
|
|
|
actions.append(deleteAction)
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
// Set up the rename action
|
|
|
|
let renameTitle = NSLocalizedString("Rename", comment: "Rename")
|
2019-12-15 01:14:55 +01:00
|
|
|
let renameAction = UIContextualAction(style: .normal, title: renameTitle) { [weak self] (action, view, completion) in
|
2019-04-15 22:03:05 +02:00
|
|
|
self?.rename(indexPath: indexPath)
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2019-08-16 02:46:31 +02:00
|
|
|
renameAction.backgroundColor = UIColor.systemOrange
|
|
|
|
actions.append(renameAction)
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
if let identifier = dataSource.itemIdentifier(for: indexPath), identifier.isWebFeed {
|
2019-08-16 02:46:31 +02:00
|
|
|
let moreTitle = NSLocalizedString("More", comment: "More")
|
2019-12-15 01:14:55 +01:00
|
|
|
let moreAction = UIContextualAction(style: .normal, title: moreTitle) { [weak self] (action, view, completion) in
|
2019-08-16 02:46:31 +02:00
|
|
|
|
|
|
|
if let self = self {
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
let alert = UIAlertController(title: identifier.nameForDisplay, message: nil, preferredStyle: .actionSheet)
|
2019-08-16 02:46:31 +02:00
|
|
|
if let popoverController = alert.popoverPresentationController {
|
|
|
|
popoverController.sourceView = view
|
2019-08-16 19:14:55 +02:00
|
|
|
popoverController.sourceRect = CGRect(x: view.frame.size.width/2, y: view.frame.size.height/2, width: 1, height: 1)
|
2019-08-16 02:46:31 +02:00
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
if let action = self.getInfoAlertAction(indexPath: indexPath, completion: completion) {
|
2019-09-28 14:00:18 +02:00
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
if let action = self.homePageAlertAction(indexPath: indexPath, completion: completion) {
|
2019-08-16 02:46:31 +02:00
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
if let action = self.copyFeedPageAlertAction(indexPath: indexPath, completion: completion) {
|
2019-08-16 02:46:31 +02:00
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
if let action = self.copyHomePageAlertAction(indexPath: indexPath, completion: completion) {
|
2019-08-16 02:46:31 +02:00
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
2020-01-11 19:30:16 +01:00
|
|
|
if let action = self.markAllAsReadAlertAction(indexPath: indexPath, completion: completion) {
|
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
2019-08-16 02:46:31 +02:00
|
|
|
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
|
|
|
|
alert.addAction(UIAlertAction(title: cancelTitle, style: .cancel) { _ in
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-08-16 02:46:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
self.present(alert, animated: true)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
moreAction.backgroundColor = UIColor.systemGray
|
|
|
|
actions.append(moreAction)
|
|
|
|
}
|
|
|
|
|
|
|
|
return UISwipeActionsConfiguration(actions: actions)
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
}
|
2019-08-15 20:19:02 +02:00
|
|
|
|
2019-08-26 03:00:34 +02:00
|
|
|
override func tableView(_ tableView: UITableView, contextMenuConfigurationForRowAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let identifier = dataSource.itemIdentifier(for: indexPath) else {
|
2019-08-26 03:00:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-06-16 01:03:20 +02:00
|
|
|
if identifier.isWebFeed {
|
|
|
|
return makeWebFeedContextMenu(identifier: identifier, indexPath: indexPath, includeDeleteRename: true)
|
|
|
|
} else if identifier.isFolder {
|
|
|
|
return makeFolderContextMenu(identifier: identifier, indexPath: indexPath)
|
|
|
|
} else if identifier.isPsuedoFeed {
|
|
|
|
return makePseudoFeedContextMenu(identifier: identifier, indexPath: indexPath)
|
2019-12-30 09:33:06 +01:00
|
|
|
} else {
|
|
|
|
return nil
|
2019-08-26 03:00:34 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-24 05:15:29 +01:00
|
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, previewForHighlightingContextMenuWithConfiguration configuration: UIContextMenuConfiguration) -> UITargetedPreview? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let identifier = configuration.identifier as? MasterFeedTableViewIdentifier,
|
|
|
|
let indexPath = dataSource.indexPath(for: identifier),
|
2019-11-24 05:15:29 +01:00
|
|
|
let cell = tableView.cellForRow(at: indexPath) else {
|
|
|
|
return nil
|
|
|
|
}
|
2020-06-16 01:03:20 +02:00
|
|
|
|
2019-11-24 05:15:29 +01:00
|
|
|
return UITargetedPreview(view: cell, parameters: CroppingPreviewParameters(view: cell))
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
2019-09-04 23:24:16 +02:00
|
|
|
becomeFirstResponder()
|
2020-02-18 02:40:40 +01:00
|
|
|
coordinator.selectFeed(indexPath: indexPath, animations: [.navigation, .select, .scroll])
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2019-04-20 03:03:02 +02:00
|
|
|
|
|
|
|
override func tableView(_ tableView: UITableView, targetIndexPathForMoveFromRowAt sourceIndexPath: IndexPath, toProposedIndexPath proposedDestinationIndexPath: IndexPath) -> IndexPath {
|
|
|
|
|
|
|
|
// Adjust the index path so that it will never be in the smart feeds area
|
|
|
|
let destIndexPath: IndexPath = {
|
|
|
|
if proposedDestinationIndexPath.section == 0 {
|
|
|
|
return IndexPath(row: 0, section: 1)
|
|
|
|
}
|
2019-09-03 19:07:18 +02:00
|
|
|
return coordinator.cappedIndexPath(proposedDestinationIndexPath)
|
2019-04-20 03:03:02 +02:00
|
|
|
}()
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let draggedIdentifier = dataSource.itemIdentifier(for: sourceIndexPath),
|
|
|
|
let draggedFeedID = draggedIdentifier.feedID,
|
|
|
|
let draggedNode = coordinator.nodeFor(feedID: draggedFeedID) else {
|
2019-04-20 03:03:02 +02:00
|
|
|
assertionFailure("This should never happen")
|
|
|
|
return sourceIndexPath
|
|
|
|
}
|
|
|
|
|
2019-11-05 14:12:51 +01:00
|
|
|
// If there is no destination node, we are dragging onto an empty Account
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let destIdentifier = dataSource.itemIdentifier(for: destIndexPath),
|
|
|
|
let destFeedID = destIdentifier.feedID,
|
|
|
|
let destNode = coordinator.nodeFor(feedID: destFeedID),
|
|
|
|
let destParentContainerID = destIdentifier.parentContainerID,
|
|
|
|
let destParentNode = coordinator.nodeFor(containerID: destParentContainerID) else {
|
2019-11-05 14:12:51 +01:00
|
|
|
return proposedDestinationIndexPath
|
|
|
|
}
|
|
|
|
|
2020-11-02 21:53:00 +01:00
|
|
|
// If this is a folder, let the users drop on it
|
|
|
|
if destNode.representedObject is Folder {
|
2019-11-23 02:59:25 +01:00
|
|
|
return proposedDestinationIndexPath
|
2019-04-20 03:03:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we are dragging around in the same container, just return the original source
|
2020-06-16 01:03:20 +02:00
|
|
|
if destParentNode.childNodes.contains(draggedNode) {
|
2019-04-20 03:03:02 +02:00
|
|
|
return sourceIndexPath
|
|
|
|
}
|
|
|
|
|
|
|
|
// Suggest to the user the best place to drop the feed
|
|
|
|
// Revisit if the tree controller can ever be sorted in some other way.
|
2020-06-16 01:03:20 +02:00
|
|
|
let nodes = destParentNode.childNodes + [draggedNode]
|
2019-04-20 03:03:02 +02:00
|
|
|
var sortedNodes = nodes.sortedAlphabeticallyWithFoldersAtEnd()
|
|
|
|
let index = sortedNodes.firstIndex(of: draggedNode)!
|
|
|
|
|
2019-11-26 20:42:25 +01:00
|
|
|
sortedNodes.remove(at: index)
|
|
|
|
|
2019-04-20 03:03:02 +02:00
|
|
|
if index == 0 {
|
2019-04-20 16:07:54 +02:00
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
if destParentNode.representedObject is Account {
|
2019-04-20 03:03:02 +02:00
|
|
|
return IndexPath(row: 0, section: destIndexPath.section)
|
|
|
|
} else {
|
2020-06-16 01:03:20 +02:00
|
|
|
let identifier = makeIdentifier(sortedNodes[index])
|
|
|
|
let candidateIndexPath = dataSource.indexPath(for: identifier)!
|
2019-11-26 20:42:25 +01:00
|
|
|
let movementAdjustment = sourceIndexPath < destIndexPath ? 1 : 0
|
|
|
|
return IndexPath(row: candidateIndexPath.row - movementAdjustment, section: candidateIndexPath.section)
|
2019-04-20 03:03:02 +02:00
|
|
|
}
|
2019-04-20 16:07:54 +02:00
|
|
|
|
2019-04-20 03:03:02 +02:00
|
|
|
} else {
|
2019-04-20 16:07:54 +02:00
|
|
|
|
2019-11-21 20:22:33 +01:00
|
|
|
if index >= sortedNodes.count {
|
2020-06-16 01:03:20 +02:00
|
|
|
let identifier = makeIdentifier(sortedNodes[sortedNodes.count - 1])
|
|
|
|
let lastSortedIndexPath = dataSource.indexPath(for: identifier)!
|
2019-11-23 02:59:25 +01:00
|
|
|
let movementAdjustment = sourceIndexPath > destIndexPath ? 1 : 0
|
|
|
|
return IndexPath(row: lastSortedIndexPath.row + movementAdjustment, section: lastSortedIndexPath.section)
|
2019-04-20 16:07:54 +02:00
|
|
|
} else {
|
2019-11-23 02:59:25 +01:00
|
|
|
let movementAdjustment = sourceIndexPath < destIndexPath ? 1 : 0
|
2020-06-16 01:03:20 +02:00
|
|
|
let identifer = makeIdentifier(sortedNodes[index - movementAdjustment])
|
|
|
|
return dataSource.indexPath(for: identifer)!
|
2019-04-20 16:07:54 +02:00
|
|
|
}
|
|
|
|
|
2019-04-20 03:03:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
// MARK: Actions
|
|
|
|
|
2019-04-25 13:05:49 +02:00
|
|
|
@IBAction func settings(_ sender: UIBarButtonItem) {
|
2019-07-06 19:25:45 +02:00
|
|
|
coordinator.showSettings()
|
2019-04-17 14:00:32 +02:00
|
|
|
}
|
2019-04-17 01:25:55 +02:00
|
|
|
|
2020-01-08 01:39:45 +01:00
|
|
|
@IBAction func toggleFilter(_ sender: Any) {
|
2020-03-22 16:18:07 +01:00
|
|
|
coordinator.toggleReadFeedsFilter()
|
2019-11-21 22:55:50 +01:00
|
|
|
}
|
|
|
|
|
2020-01-08 01:39:45 +01:00
|
|
|
@IBAction func add(_ sender: UIBarButtonItem) {
|
2020-08-11 22:00:31 +02:00
|
|
|
|
2021-01-31 15:37:47 +01:00
|
|
|
if #available(iOS 14, *) {
|
|
|
|
|
|
|
|
} else {
|
|
|
|
let title = NSLocalizedString("Add Item", comment: "Add Item")
|
|
|
|
let alertController = UIAlertController(title: title, message: nil, preferredStyle: .actionSheet)
|
|
|
|
|
|
|
|
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
|
|
|
|
let cancelAction = UIAlertAction(title: cancelTitle, style: .cancel)
|
|
|
|
|
|
|
|
let addWebFeedActionTitle = NSLocalizedString("Add Web Feed", comment: "Add Web Feed")
|
|
|
|
let addWebFeedAction = UIAlertAction(title: addWebFeedActionTitle, style: .default) { _ in
|
|
|
|
self.coordinator.showAddWebFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
let addRedditFeedActionTitle = NSLocalizedString("Add Reddit Feed", comment: "Add Reddit Feed")
|
|
|
|
let addRedditFeedAction = UIAlertAction(title: addRedditFeedActionTitle, style: .default) { _ in
|
|
|
|
self.coordinator.showAddRedditFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
let addTwitterFeedActionTitle = NSLocalizedString("Add Twitter Feed", comment: "Add Twitter Feed")
|
|
|
|
let addTwitterFeedAction = UIAlertAction(title: addTwitterFeedActionTitle, style: .default) { _ in
|
|
|
|
self.coordinator.showAddTwitterFeed()
|
2020-08-12 17:27:58 +02:00
|
|
|
}
|
2021-01-31 15:37:47 +01:00
|
|
|
|
|
|
|
let addWebFolderdActionTitle = NSLocalizedString("Add Folder", comment: "Add Folder")
|
|
|
|
let addWebFolderAction = UIAlertAction(title: addWebFolderdActionTitle, style: .default) { _ in
|
|
|
|
self.coordinator.showAddFolder()
|
|
|
|
}
|
|
|
|
|
|
|
|
alertController.addAction(addWebFeedAction)
|
|
|
|
|
|
|
|
if AccountManager.shared.activeAccounts.contains(where: { $0.type == .onMyMac || $0.type == .cloudKit }) {
|
|
|
|
if ExtensionPointManager.shared.isRedditEnabled {
|
|
|
|
alertController.addAction(addRedditFeedAction)
|
|
|
|
}
|
|
|
|
if ExtensionPointManager.shared.isTwitterEnabled {
|
|
|
|
alertController.addAction(addTwitterFeedAction)
|
|
|
|
}
|
2020-08-12 17:27:58 +02:00
|
|
|
}
|
2021-01-31 15:37:47 +01:00
|
|
|
|
|
|
|
alertController.addAction(addWebFolderAction)
|
|
|
|
alertController.addAction(cancelAction)
|
|
|
|
|
|
|
|
alertController.popoverPresentationController?.barButtonItem = sender
|
|
|
|
|
|
|
|
present(alertController, animated: true)
|
2020-08-12 00:33:48 +02:00
|
|
|
}
|
|
|
|
|
2020-08-11 22:00:31 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 18:38:38 +02:00
|
|
|
@objc func toggleSectionHeader(_ sender: UITapGestureRecognizer) {
|
2020-03-25 14:55:02 +01:00
|
|
|
guard let headerView = sender.view as? MasterFeedTableViewSectionHeader else {
|
|
|
|
return
|
2019-04-18 18:38:38 +02:00
|
|
|
}
|
2020-03-25 14:55:02 +01:00
|
|
|
toggle(headerView)
|
2019-04-18 18:38:38 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
@objc func refreshAccounts(_ sender: Any) {
|
2020-01-03 16:42:43 +01:00
|
|
|
refreshControl?.endRefreshing()
|
2020-01-11 02:14:21 +01:00
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
// This is a hack to make sure that an error dialog doesn't interfere with dismissing the refreshControl.
|
|
|
|
// If the error dialog appears too closely to the call to endRefreshing, then the refreshControl never disappears.
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
|
2020-03-11 21:47:00 +01:00
|
|
|
appDelegate.manualRefresh(errorHandler: ErrorHandler.present(self))
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-19 22:45:52 +02:00
|
|
|
|
2019-09-04 23:24:16 +02:00
|
|
|
// MARK: Keyboard shortcuts
|
|
|
|
|
2019-09-05 04:06:29 +02:00
|
|
|
@objc func selectNextUp(_ sender: Any?) {
|
|
|
|
coordinator.selectPrevFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func selectNextDown(_ sender: Any?) {
|
|
|
|
coordinator.selectNextFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func navigateToTimeline(_ sender: Any?) {
|
|
|
|
coordinator.navigateToTimeline()
|
|
|
|
}
|
|
|
|
|
2019-09-04 23:24:16 +02:00
|
|
|
@objc func openInBrowser(_ sender: Any?) {
|
|
|
|
coordinator.showBrowserForCurrentFeed()
|
|
|
|
}
|
|
|
|
|
2019-09-05 22:54:58 +02:00
|
|
|
@objc override func delete(_ sender: Any?) {
|
|
|
|
if let indexPath = coordinator.currentFeedIndexPath {
|
|
|
|
delete(indexPath: indexPath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-05 23:04:07 +02:00
|
|
|
@objc func expandSelectedRows(_ sender: Any?) {
|
2020-06-16 01:03:20 +02:00
|
|
|
if let indexPath = coordinator.currentFeedIndexPath, let containerID = dataSource.itemIdentifier(for: indexPath)?.containerID {
|
|
|
|
coordinator.expand(containerID)
|
2019-11-19 18:16:43 +01:00
|
|
|
self.applyChanges(animated: true) {
|
2019-09-09 17:06:13 +02:00
|
|
|
self.reloadAllVisibleCells()
|
|
|
|
}
|
2019-09-05 23:04:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func collapseSelectedRows(_ sender: Any?) {
|
2020-06-16 01:03:20 +02:00
|
|
|
if let indexPath = coordinator.currentFeedIndexPath, let containerID = dataSource.itemIdentifier(for: indexPath)?.containerID {
|
|
|
|
coordinator.collapse(containerID)
|
2019-11-19 18:16:43 +01:00
|
|
|
self.applyChanges(animated: true) {
|
2019-09-09 17:06:13 +02:00
|
|
|
self.reloadAllVisibleCells()
|
|
|
|
}
|
2019-09-05 23:04:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-05 23:38:33 +02:00
|
|
|
@objc func expandAll(_ sender: Any?) {
|
|
|
|
coordinator.expandAllSectionsAndFolders()
|
2019-11-19 18:16:43 +01:00
|
|
|
self.applyChanges(animated: true) {
|
2019-09-09 17:06:13 +02:00
|
|
|
self.reloadAllVisibleCells()
|
|
|
|
}
|
2019-09-05 23:38:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func collapseAllExceptForGroupItems(_ sender: Any?) {
|
|
|
|
coordinator.collapseAllFolders()
|
2019-11-19 18:16:43 +01:00
|
|
|
self.applyChanges(animated: true) {
|
2019-09-09 17:06:13 +02:00
|
|
|
self.reloadAllVisibleCells()
|
|
|
|
}
|
2019-09-05 23:38:33 +02:00
|
|
|
}
|
2020-05-14 14:43:41 +02:00
|
|
|
|
|
|
|
@objc func markAllAsRead(_ sender: Any) {
|
|
|
|
guard let indexPath = tableView.indexPathForSelectedRow, let contentView = tableView.cellForRow(at: indexPath)?.contentView else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Mark All as Read", comment: "Mark All as Read")
|
|
|
|
MarkAsReadAlertController.confirm(self, coordinator: coordinator, confirmTitle: title, sourceType: contentView) { [weak self] in
|
|
|
|
self?.coordinator.markAllAsReadInTimeline()
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 06:51:42 +02:00
|
|
|
|
|
|
|
@objc func showFeedInspector(_ sender: Any?) {
|
|
|
|
coordinator.showFeedInspector()
|
|
|
|
}
|
2020-05-14 14:43:41 +02:00
|
|
|
|
2019-08-19 22:45:52 +02:00
|
|
|
// MARK: API
|
|
|
|
|
2019-09-10 23:38:59 +02:00
|
|
|
func restoreSelectionIfNecessary(adjustScroll: Bool) {
|
|
|
|
if let indexPath = coordinator.masterFeedIndexPathForCurrentTimeline() {
|
|
|
|
if adjustScroll {
|
2020-01-28 05:57:52 +01:00
|
|
|
tableView.selectRowAndScrollIfNotVisible(at: indexPath, animations: [])
|
2019-09-10 23:38:59 +02:00
|
|
|
} else {
|
|
|
|
tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-28 05:57:52 +01:00
|
|
|
func updateFeedSelection(animations: Animations) {
|
2020-02-23 19:57:20 +01:00
|
|
|
operationQueue.add(UpdateSelectionOperation(coordinator: coordinator, dataSource: dataSource, tableView: tableView, animations: animations))
|
2019-08-25 18:38:04 +02:00
|
|
|
}
|
|
|
|
|
2020-02-18 02:40:40 +01:00
|
|
|
func reloadFeeds(initialLoad: Bool, completion: (() -> Void)? = nil) {
|
2019-08-25 18:38:04 +02:00
|
|
|
updateUI()
|
2019-09-01 17:11:03 +02:00
|
|
|
|
2019-08-30 23:19:06 +02:00
|
|
|
// We have to reload all the visible cells because if we got here by doing a table cell move,
|
|
|
|
// then the table itself is in a weird state. This is because we do unusual things like allowing
|
|
|
|
// drops on a "folder" that should cause the dropped cell to disappear.
|
2019-11-27 03:23:12 +01:00
|
|
|
applyChanges(animated: !initialLoad) { [weak self] in
|
|
|
|
if !initialLoad {
|
2020-02-18 02:40:40 +01:00
|
|
|
self?.reloadAllVisibleCells(completion: completion)
|
|
|
|
} else {
|
2019-09-05 20:14:14 +02:00
|
|
|
completion?()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 16:18:07 +01:00
|
|
|
func updateUI() {
|
|
|
|
if coordinator.isReadFeedsFiltered {
|
|
|
|
setFilterButtonToActive()
|
|
|
|
} else {
|
|
|
|
setFilterButtonToInactive()
|
|
|
|
}
|
2020-05-10 17:00:04 +02:00
|
|
|
refreshProgressView?.update()
|
2020-03-22 16:18:07 +01:00
|
|
|
addNewItemButton?.isEnabled = !AccountManager.shared.activeAccounts.isEmpty
|
2021-02-01 01:33:37 +01:00
|
|
|
|
|
|
|
configureContextMenu()
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc
|
|
|
|
func configureContextMenu(_: Any? = nil) {
|
2021-01-31 15:37:47 +01:00
|
|
|
if #available(iOS 14.0, *) {
|
|
|
|
let addWebFeedActionTitle = NSLocalizedString("Add Web Feed", comment: "Add Web Feed")
|
2021-02-01 01:25:34 +01:00
|
|
|
let addWebFeedAction = UIAction(title: addWebFeedActionTitle, image: AppAssets.faviconTemplateImage.withRenderingMode(.alwaysOriginal).withTintColor(.secondaryLabel)) { _ in
|
2021-01-31 15:37:47 +01:00
|
|
|
self.coordinator.showAddWebFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
let addRedditFeedActionTitle = NSLocalizedString("Add Reddit Feed", comment: "Add Reddit Feed")
|
2021-02-01 01:25:34 +01:00
|
|
|
let addRedditFeedAction = UIAction(title: addRedditFeedActionTitle, image: AppAssets.redditOriginal) { _ in
|
2021-01-31 15:37:47 +01:00
|
|
|
self.coordinator.showAddRedditFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
let addTwitterFeedActionTitle = NSLocalizedString("Add Twitter Feed", comment: "Add Twitter Feed")
|
2021-02-01 01:25:34 +01:00
|
|
|
let addTwitterFeedAction = UIAction(title: addTwitterFeedActionTitle, image: AppAssets.twitterOriginal) { _ in
|
2021-01-31 15:37:47 +01:00
|
|
|
self.coordinator.showAddTwitterFeed()
|
|
|
|
}
|
|
|
|
|
|
|
|
let addWebFolderdActionTitle = NSLocalizedString("Add Folder", comment: "Add Folder")
|
2021-02-01 01:25:34 +01:00
|
|
|
let addWebFolderAction = UIAction(title: addWebFolderdActionTitle, image: AppAssets.masterFolderImageNonIcon) { _ in
|
2021-01-31 15:37:47 +01:00
|
|
|
self.coordinator.showAddFolder()
|
|
|
|
}
|
|
|
|
|
|
|
|
var children = [addWebFolderAction, addWebFeedAction]
|
|
|
|
|
|
|
|
|
|
|
|
if AccountManager.shared.activeAccounts.contains(where: { $0.type == .onMyMac || $0.type == .cloudKit }) {
|
2021-02-01 01:14:02 +01:00
|
|
|
if ExtensionPointManager.shared.isRedditEnabled {
|
2021-01-31 15:37:47 +01:00
|
|
|
children.insert(addRedditFeedAction, at: 0)
|
|
|
|
}
|
2021-02-01 01:14:02 +01:00
|
|
|
if ExtensionPointManager.shared.isTwitterEnabled {
|
2021-01-31 15:37:47 +01:00
|
|
|
children.insert(addTwitterFeedAction, at: 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let menu = UIMenu(title: "Add Item", image: nil, identifier: nil, options: [], children: children)
|
|
|
|
|
|
|
|
self.addNewItemButton.menu = menu
|
|
|
|
}
|
2020-03-22 16:18:07 +01:00
|
|
|
}
|
|
|
|
|
2019-09-05 04:06:29 +02:00
|
|
|
func focus() {
|
|
|
|
becomeFirstResponder()
|
|
|
|
}
|
2020-05-15 09:09:33 +02:00
|
|
|
|
|
|
|
func openInAppBrowser() {
|
|
|
|
if let indexPath = coordinator.currentFeedIndexPath,
|
|
|
|
let url = coordinator.homePageURLForFeed(indexPath) {
|
|
|
|
let vc = SFSafariViewController(url: url)
|
|
|
|
present(vc, animated: true)
|
|
|
|
}
|
|
|
|
}
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
|
2019-10-24 02:58:18 +02:00
|
|
|
// MARK: UIContextMenuInteractionDelegate
|
|
|
|
|
|
|
|
extension MasterFeedViewController: UIContextMenuInteractionDelegate {
|
|
|
|
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
|
|
|
|
|
|
|
|
guard let sectionIndex = interaction.view?.tag,
|
|
|
|
let sectionNode = coordinator.rootNode.childAtIndex(sectionIndex),
|
2019-10-24 03:22:31 +02:00
|
|
|
let account = sectionNode.representedObject as? Account
|
2019-10-24 02:58:18 +02:00
|
|
|
else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-24 05:15:29 +01:00
|
|
|
return UIContextMenuConfiguration(identifier: sectionIndex as NSCopying, previewProvider: nil) { suggestedActions in
|
2019-12-30 09:33:06 +01:00
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
var menuElements = [UIMenuElement]()
|
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [self.getAccountInfoAction(account: account)]))
|
2019-12-30 09:33:06 +01:00
|
|
|
|
2020-07-01 09:00:39 +02:00
|
|
|
if let markAllAction = self.markAllAsReadAction(account: account, contentView: interaction.view) {
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [markAllAction]))
|
2019-12-30 09:33:06 +01:00
|
|
|
}
|
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [self.deactivateAccountAction(account: account)]))
|
|
|
|
|
|
|
|
return UIMenu(title: "", children: menuElements)
|
2019-10-24 02:58:18 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-24 05:15:29 +01:00
|
|
|
|
|
|
|
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, previewForHighlightingMenuWithConfiguration configuration: UIContextMenuConfiguration) -> UITargetedPreview? {
|
|
|
|
|
|
|
|
guard let sectionIndex = configuration.identifier as? Int,
|
|
|
|
let cell = tableView.headerView(forSection: sectionIndex) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return UITargetedPreview(view: cell, parameters: CroppingPreviewParameters(view: cell))
|
|
|
|
}
|
2019-10-24 02:58:18 +02:00
|
|
|
}
|
|
|
|
|
2020-03-25 14:55:02 +01:00
|
|
|
// MARK: MasterFeedTableViewSectionHeaderDelegate
|
|
|
|
|
|
|
|
extension MasterFeedViewController: MasterFeedTableViewSectionHeaderDelegate {
|
|
|
|
|
|
|
|
func masterFeedTableViewSectionHeaderDisclosureDidToggle(_ sender: MasterFeedTableViewSectionHeader) {
|
|
|
|
toggle(sender)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
// MARK: MasterTableViewCellDelegate
|
|
|
|
|
|
|
|
extension MasterFeedViewController: MasterFeedTableViewCellDelegate {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2020-03-25 14:55:02 +01:00
|
|
|
func masterFeedTableViewCellDisclosureDidToggle(_ sender: MasterFeedTableViewCell, expanding: Bool) {
|
2019-08-15 19:42:25 +02:00
|
|
|
if expanding {
|
|
|
|
expand(sender)
|
|
|
|
} else {
|
|
|
|
collapse(sender)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
private extension MasterFeedViewController {
|
|
|
|
|
2019-10-25 20:34:59 +02:00
|
|
|
func configureToolbar() {
|
|
|
|
guard let refreshProgressView = Bundle.main.loadNibNamed("RefreshProgressView", owner: self, options: nil)?[0] as? RefreshProgressView else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
self.refreshProgressView = refreshProgressView
|
|
|
|
let refreshProgressItemButton = UIBarButtonItem(customView: refreshProgressView)
|
2020-01-08 01:39:45 +01:00
|
|
|
toolbarItems?.insert(refreshProgressItemButton, at: 2)
|
2019-10-25 20:34:59 +02:00
|
|
|
}
|
|
|
|
|
2020-01-09 22:38:25 +01:00
|
|
|
func setFilterButtonToActive() {
|
|
|
|
filterButton?.image = AppAssets.filterActiveImage
|
|
|
|
filterButton?.accLabelText = NSLocalizedString("Selected - Filter Read Feeds", comment: "Selected - Filter Read Feeds")
|
|
|
|
}
|
|
|
|
|
|
|
|
func setFilterButtonToInactive() {
|
|
|
|
filterButton?.image = AppAssets.filterInactiveImage
|
|
|
|
filterButton?.accLabelText = NSLocalizedString("Filter Read Feeds", comment: "Filter Read Feeds")
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func makeIdentifier(_ node: Node) -> MasterFeedTableViewIdentifier {
|
|
|
|
let unreadCount = coordinator.unreadCountFor(node)
|
|
|
|
return MasterFeedTableViewIdentifier(node: node, unreadCount: unreadCount)
|
|
|
|
}
|
|
|
|
|
|
|
|
func reload(_ identifier: MasterFeedTableViewIdentifier) {
|
2019-08-29 03:21:50 +02:00
|
|
|
var snapshot = dataSource.snapshot()
|
2020-06-16 01:03:20 +02:00
|
|
|
snapshot.reloadItems([identifier])
|
2020-02-23 19:57:20 +01:00
|
|
|
queueApply(snapshot: snapshot, animatingDifferences: false) { [weak self] in
|
2019-09-10 23:38:59 +02:00
|
|
|
self?.restoreSelectionIfNecessary(adjustScroll: false)
|
2019-08-29 21:35:18 +02:00
|
|
|
}
|
2019-08-29 03:21:50 +02:00
|
|
|
}
|
|
|
|
|
2019-11-19 18:16:43 +01:00
|
|
|
func applyChanges(animated: Bool, adjustScroll: Bool = false, completion: (() -> Void)? = nil) {
|
2020-06-16 01:03:20 +02:00
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<Int, MasterFeedTableViewIdentifier>()
|
|
|
|
let sectionIdentifiers = Array(0...coordinator.rootNode.childNodes.count - 1)
|
|
|
|
snapshot.appendSections(sectionIdentifiers)
|
2019-08-29 01:06:27 +02:00
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
for sectionIdentifer in sectionIdentifiers {
|
|
|
|
let identifiers = coordinator.shadowNodesFor(section: sectionIdentifer).map { makeIdentifier($0) }
|
|
|
|
snapshot.appendItems(identifiers, toSection: sectionIdentifer)
|
2019-08-29 01:06:27 +02:00
|
|
|
}
|
|
|
|
|
2020-02-23 19:57:20 +01:00
|
|
|
queueApply(snapshot: snapshot, animatingDifferences: animated) { [weak self] in
|
2019-09-10 23:38:59 +02:00
|
|
|
self?.restoreSelectionIfNecessary(adjustScroll: adjustScroll)
|
2019-08-29 03:08:30 +02:00
|
|
|
completion?()
|
2019-08-29 01:06:27 +02:00
|
|
|
}
|
2019-08-29 21:35:18 +02:00
|
|
|
}
|
2020-02-23 19:57:20 +01:00
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func queueApply(snapshot: NSDiffableDataSourceSnapshot<Int, MasterFeedTableViewIdentifier>, animatingDifferences: Bool = true, completion: (() -> Void)? = nil) {
|
2020-02-23 19:57:20 +01:00
|
|
|
let operation = MasterFeedDataSourceOperation(dataSource: dataSource, snapshot: snapshot, animating: animatingDifferences)
|
2020-06-07 23:46:48 +02:00
|
|
|
operation.completionBlock = { [weak self] _ in
|
|
|
|
self?.enableTableViewSelection()
|
2020-02-23 19:57:20 +01:00
|
|
|
completion?()
|
|
|
|
}
|
2020-06-07 23:46:48 +02:00
|
|
|
disableTableViewSelectionIfNecessary()
|
2020-02-23 19:57:20 +01:00
|
|
|
operationQueue.add(operation)
|
|
|
|
}
|
|
|
|
|
2020-06-07 23:46:48 +02:00
|
|
|
private func disableTableViewSelectionIfNecessary() {
|
|
|
|
// We only need to disable tableView selection if the feeds are filtered by unread
|
|
|
|
guard coordinator.isReadFeedsFiltered else { return }
|
|
|
|
tableView.allowsSelection = false
|
|
|
|
}
|
|
|
|
|
|
|
|
private func enableTableViewSelection() {
|
|
|
|
tableView.allowsSelection = true
|
|
|
|
}
|
2019-08-15 19:42:25 +02:00
|
|
|
|
2020-02-23 19:57:20 +01:00
|
|
|
func makeDataSource() -> MasterFeedDataSource {
|
2020-06-16 01:03:20 +02:00
|
|
|
let dataSource = MasterFeedDataSource(tableView: tableView, cellProvider: { [weak self] tableView, indexPath, cellContents in
|
2019-08-29 01:06:27 +02:00
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! MasterFeedTableViewCell
|
2020-06-16 01:03:20 +02:00
|
|
|
self?.configure(cell, cellContents)
|
2019-08-29 01:06:27 +02:00
|
|
|
return cell
|
|
|
|
})
|
2019-11-22 22:23:21 +01:00
|
|
|
dataSource.defaultRowAnimation = .middle
|
|
|
|
return dataSource
|
2019-08-29 01:06:27 +02:00
|
|
|
}
|
2019-10-28 23:18:44 +01:00
|
|
|
|
|
|
|
func resetEstimatedRowHeight() {
|
|
|
|
let titleLabel = NonIntrinsicLabel()
|
|
|
|
titleLabel.text = "But I must explain"
|
|
|
|
|
|
|
|
let unreadCountView = MasterFeedUnreadCountView()
|
|
|
|
unreadCountView.unreadCount = 10
|
|
|
|
|
|
|
|
let layout = MasterFeedTableViewCellLayout(cellWidth: tableView.bounds.size.width, insets: tableView.safeAreaInsets, label: titleLabel, unreadCountView: unreadCountView, showingEditingControl: false, indent: false, shouldShowDisclosure: false)
|
|
|
|
tableView.estimatedRowHeight = layout.height
|
|
|
|
}
|
2019-08-29 01:06:27 +02:00
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func configure(_ cell: MasterFeedTableViewCell, _ identifier: MasterFeedTableViewIdentifier) {
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2019-04-17 17:34:10 +02:00
|
|
|
cell.delegate = self
|
2020-06-16 01:03:20 +02:00
|
|
|
if identifier.isFolder {
|
2019-04-20 18:25:02 +02:00
|
|
|
cell.indentationLevel = 0
|
2019-10-29 23:55:49 +01:00
|
|
|
} else {
|
|
|
|
cell.indentationLevel = 1
|
2019-04-20 18:11:09 +02:00
|
|
|
}
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
if let containerID = identifier.containerID {
|
|
|
|
cell.setDisclosure(isExpanded: coordinator.isExpanded(containerID), animated: false)
|
|
|
|
cell.isDisclosureAvailable = true
|
|
|
|
} else {
|
|
|
|
cell.isDisclosureAvailable = false
|
|
|
|
}
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
cell.name = identifier.nameForDisplay
|
|
|
|
cell.unreadCount = identifier.unreadCount
|
|
|
|
configureIcon(cell, identifier)
|
|
|
|
|
|
|
|
guard let indexPath = dataSource.indexPath(for: identifier) else { return }
|
2019-10-29 01:52:50 +01:00
|
|
|
let rowsInSection = tableView.numberOfRows(inSection: indexPath.section)
|
|
|
|
if indexPath.row == rowsInSection - 1 {
|
|
|
|
cell.isSeparatorShown = false
|
|
|
|
} else {
|
|
|
|
cell.isSeparatorShown = true
|
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func configureIcon(_ cell: MasterFeedTableViewCell, _ identifier: MasterFeedTableViewIdentifier) {
|
|
|
|
cell.iconImage = imageFor(identifier)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func imageFor(_ identifier: MasterFeedTableViewIdentifier) -> IconImage? {
|
|
|
|
guard let feedID = identifier.feedID else { return nil }
|
|
|
|
|
|
|
|
if let smartFeed = SmartFeedsController.shared.find(by: feedID) {
|
|
|
|
return smartFeed.smallIcon
|
|
|
|
}
|
|
|
|
|
|
|
|
guard let feed = AccountManager.shared.existingFeed(with: feedID) else { return nil }
|
|
|
|
|
|
|
|
if let webFeed = feed as? WebFeed {
|
2019-10-29 02:57:26 +01:00
|
|
|
|
2019-11-15 03:11:41 +01:00
|
|
|
let feedIconImage = appDelegate.webFeedIconDownloader.icon(for: webFeed)
|
2019-10-29 02:57:26 +01:00
|
|
|
if feedIconImage != nil {
|
|
|
|
return feedIconImage
|
|
|
|
}
|
|
|
|
|
2020-01-07 22:17:00 +01:00
|
|
|
if let faviconImage = appDelegate.faviconDownloader.faviconAsIcon(for: webFeed) {
|
2019-10-29 02:57:26 +01:00
|
|
|
return faviconImage
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
if let smallIconProvider = feed as? SmallIconProvider {
|
2019-04-15 22:03:05 +02:00
|
|
|
return smallIconProvider.smallIcon
|
|
|
|
}
|
2019-10-29 02:57:26 +01:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func nameFor(_ node: Node) -> String {
|
|
|
|
if let displayNameProvider = node.representedObject as? DisplayNameProvider {
|
|
|
|
return displayNameProvider.nameForDisplay
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
2019-08-21 20:10:08 +02:00
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
func configureCellsForRepresentedObject(_ representedObject: AnyObject) {
|
|
|
|
applyToCellsForRepresentedObject(representedObject, configure)
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func applyToCellsForRepresentedObject(_ representedObject: AnyObject, _ completion: (MasterFeedTableViewCell, MasterFeedTableViewIdentifier) -> Void) {
|
|
|
|
applyToAvailableCells { (cell, identifier) in
|
|
|
|
if let representedFeed = representedObject as? Feed, representedFeed.feedID == identifier.feedID {
|
|
|
|
completion(cell, identifier)
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func applyToAvailableCells(_ completion: (MasterFeedTableViewCell, MasterFeedTableViewIdentifier) -> Void) {
|
2019-08-15 19:42:25 +02:00
|
|
|
tableView.visibleCells.forEach { cell in
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let indexPath = tableView.indexPath(for: cell), let identifier = dataSource.itemIdentifier(for: indexPath) else {
|
2019-08-15 19:42:25 +02:00
|
|
|
return
|
|
|
|
}
|
2020-06-16 01:03:20 +02:00
|
|
|
completion(cell as! MasterFeedTableViewCell, identifier)
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 02:40:40 +01:00
|
|
|
private func reloadAllVisibleCells(completion: (() -> Void)? = nil) {
|
2019-09-11 12:45:35 +02:00
|
|
|
let visibleNodes = tableView.indexPathsForVisibleRows!.compactMap { return dataSource.itemIdentifier(for: $0) }
|
2020-02-18 02:40:40 +01:00
|
|
|
reloadCells(visibleNodes, completion: completion)
|
2019-08-30 23:19:06 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
private func reloadCells(_ identifiers: [MasterFeedTableViewIdentifier], completion: (() -> Void)? = nil) {
|
2019-08-30 23:19:06 +02:00
|
|
|
var snapshot = dataSource.snapshot()
|
2020-06-16 01:03:20 +02:00
|
|
|
snapshot.reloadItems(identifiers)
|
2020-02-23 19:57:20 +01:00
|
|
|
queueApply(snapshot: snapshot, animatingDifferences: false) { [weak self] in
|
2019-09-10 23:38:59 +02:00
|
|
|
self?.restoreSelectionIfNecessary(adjustScroll: false)
|
2020-02-18 02:40:40 +01:00
|
|
|
completion?()
|
2019-09-06 18:22:35 +02:00
|
|
|
}
|
2019-08-30 23:19:06 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
private func accountForNode(_ node: Node) -> Account? {
|
|
|
|
if let account = node.representedObject as? Account {
|
|
|
|
return account
|
|
|
|
}
|
|
|
|
if let folder = node.representedObject as? Folder {
|
|
|
|
return folder.account
|
|
|
|
}
|
2019-11-15 03:11:41 +01:00
|
|
|
if let feed = node.representedObject as? WebFeed {
|
2019-08-15 19:42:25 +02:00
|
|
|
return feed.account
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-25 14:55:02 +01:00
|
|
|
func toggle(_ headerView: MasterFeedTableViewSectionHeader) {
|
|
|
|
guard let sectionNode = coordinator.rootNode.childAtIndex(headerView.tag) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if coordinator.isExpanded(sectionNode) {
|
|
|
|
headerView.disclosureExpanded = false
|
|
|
|
coordinator.collapse(sectionNode)
|
|
|
|
self.applyChanges(animated: true)
|
|
|
|
} else {
|
|
|
|
headerView.disclosureExpanded = true
|
|
|
|
coordinator.expand(sectionNode)
|
|
|
|
self.applyChanges(animated: true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
func expand(_ cell: MasterFeedTableViewCell) {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let indexPath = tableView.indexPath(for: cell), let containerID = dataSource.itemIdentifier(for: indexPath)?.containerID else {
|
2019-08-15 19:42:25 +02:00
|
|
|
return
|
|
|
|
}
|
2020-06-16 01:03:20 +02:00
|
|
|
coordinator.expand(containerID)
|
2020-01-25 23:51:34 +01:00
|
|
|
applyChanges(animated: true)
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func collapse(_ cell: MasterFeedTableViewCell) {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let indexPath = tableView.indexPath(for: cell), let containerID = dataSource.itemIdentifier(for: indexPath)?.containerID else {
|
2019-08-15 19:42:25 +02:00
|
|
|
return
|
|
|
|
}
|
2020-06-16 01:03:20 +02:00
|
|
|
coordinator.collapse(containerID)
|
2020-01-25 23:51:34 +01:00
|
|
|
applyChanges(animated: true)
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func makeWebFeedContextMenu(identifier: MasterFeedTableViewIdentifier, indexPath: IndexPath, includeDeleteRename: Bool) -> UIContextMenuConfiguration {
|
|
|
|
return UIContextMenuConfiguration(identifier: identifier as NSCopying, previewProvider: nil, actionProvider: { [ weak self] suggestedActions in
|
2019-08-19 22:45:52 +02:00
|
|
|
|
|
|
|
guard let self = self else { return nil }
|
2019-08-15 20:19:02 +02:00
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
var menuElements = [UIMenuElement]()
|
2019-08-15 20:19:02 +02:00
|
|
|
|
2019-09-28 14:00:18 +02:00
|
|
|
if let inspectorAction = self.getInfoAction(indexPath: indexPath) {
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [inspectorAction]))
|
2019-09-28 14:00:18 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
if let homePageAction = self.homePageAction(indexPath: indexPath) {
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [homePageAction]))
|
2019-06-06 00:42:35 +02:00
|
|
|
}
|
2019-08-15 20:19:02 +02:00
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
var pageActions = [UIAction]()
|
2019-08-15 22:19:23 +02:00
|
|
|
if let copyFeedPageAction = self.copyFeedPageAction(indexPath: indexPath) {
|
2020-11-13 12:23:04 +01:00
|
|
|
pageActions.append(copyFeedPageAction)
|
2019-08-15 22:19:23 +02:00
|
|
|
}
|
|
|
|
if let copyHomePageAction = self.copyHomePageAction(indexPath: indexPath) {
|
2020-11-13 12:23:04 +01:00
|
|
|
pageActions.append(copyHomePageAction)
|
|
|
|
}
|
|
|
|
if !pageActions.isEmpty {
|
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: pageActions))
|
2019-08-15 22:19:23 +02:00
|
|
|
}
|
2019-12-30 09:33:06 +01:00
|
|
|
|
|
|
|
if let markAllAction = self.markAllAsReadAction(indexPath: indexPath) {
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [markAllAction]))
|
2019-12-30 09:33:06 +01:00
|
|
|
}
|
2019-08-15 20:19:02 +02:00
|
|
|
|
2020-01-02 08:16:29 +01:00
|
|
|
if includeDeleteRename {
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "",
|
|
|
|
options: .displayInline,
|
|
|
|
children: [
|
|
|
|
self.renameAction(indexPath: indexPath),
|
|
|
|
self.deleteAction(indexPath: indexPath)
|
|
|
|
]))
|
2020-01-02 08:16:29 +01:00
|
|
|
}
|
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
return UIMenu(title: "", children: menuElements)
|
2019-08-15 20:19:02 +02:00
|
|
|
|
|
|
|
})
|
2019-04-17 20:35:16 +02:00
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func makeFolderContextMenu(identifier: MasterFeedTableViewIdentifier, indexPath: IndexPath) -> UIContextMenuConfiguration {
|
|
|
|
return UIContextMenuConfiguration(identifier: identifier as NSCopying, previewProvider: nil, actionProvider: { [weak self] suggestedActions in
|
2019-08-16 00:46:42 +02:00
|
|
|
|
2019-08-19 22:45:52 +02:00
|
|
|
guard let self = self else { return nil }
|
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
var menuElements = [UIMenuElement]()
|
2019-12-30 09:33:06 +01:00
|
|
|
|
|
|
|
if let markAllAction = self.markAllAsReadAction(indexPath: indexPath) {
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "", options: .displayInline, children: [markAllAction]))
|
2019-12-30 09:33:06 +01:00
|
|
|
}
|
2019-08-16 00:46:42 +02:00
|
|
|
|
2020-11-13 12:23:04 +01:00
|
|
|
menuElements.append(UIMenu(title: "",
|
|
|
|
options: .displayInline,
|
|
|
|
children: [
|
|
|
|
self.renameAction(indexPath: indexPath),
|
|
|
|
self.deleteAction(indexPath: indexPath)
|
|
|
|
]))
|
|
|
|
|
|
|
|
return UIMenu(title: "", children: menuElements)
|
2019-08-16 00:46:42 +02:00
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
func makePseudoFeedContextMenu(identifier: MasterFeedTableViewIdentifier, indexPath: IndexPath) -> UIContextMenuConfiguration? {
|
2019-12-30 09:33:06 +01:00
|
|
|
guard let markAllAction = self.markAllAsReadAction(indexPath: indexPath) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
return UIContextMenuConfiguration(identifier: identifier as NSCopying, previewProvider: nil, actionProvider: { suggestedActions in
|
2019-12-30 09:33:06 +01:00
|
|
|
return UIMenu(title: "", children: [markAllAction])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
func homePageAction(indexPath: IndexPath) -> UIAction? {
|
2019-09-04 23:24:16 +02:00
|
|
|
guard coordinator.homePageURLForFeed(indexPath) != nil else {
|
|
|
|
return nil
|
2019-06-06 00:42:35 +02:00
|
|
|
}
|
2019-04-17 20:35:16 +02:00
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
let title = NSLocalizedString("Open Home Page", comment: "Open Home Page")
|
2019-09-04 23:24:16 +02:00
|
|
|
let action = UIAction(title: title, image: AppAssets.safariImage) { [weak self] action in
|
|
|
|
self?.coordinator.showBrowserForFeed(indexPath)
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
func homePageAlertAction(indexPath: IndexPath, completion: @escaping (Bool) -> Void) -> UIAlertAction? {
|
2019-09-04 23:24:16 +02:00
|
|
|
guard coordinator.homePageURLForFeed(indexPath) != nil else {
|
|
|
|
return nil
|
2019-08-16 02:46:31 +02:00
|
|
|
}
|
2019-09-04 23:24:16 +02:00
|
|
|
|
2019-08-16 02:46:31 +02:00
|
|
|
let title = NSLocalizedString("Open Home Page", comment: "Open Home Page")
|
2019-09-04 23:24:16 +02:00
|
|
|
let action = UIAlertAction(title: title, style: .default) { [weak self] action in
|
|
|
|
self?.coordinator.showBrowserForFeed(indexPath)
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-08-16 02:46:31 +02:00
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-08-15 22:19:23 +02:00
|
|
|
func copyFeedPageAction(indexPath: IndexPath) -> UIAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID,
|
|
|
|
let webFeed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed,
|
|
|
|
let url = URL(string: webFeed.url) else {
|
2019-08-15 22:19:23 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Copy Feed URL", comment: "Copy Feed URL")
|
2019-08-16 20:27:41 +02:00
|
|
|
let action = UIAction(title: title, image: AppAssets.copyImage) { action in
|
2019-08-15 22:19:23 +02:00
|
|
|
UIPasteboard.general.url = url
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
func copyFeedPageAlertAction(indexPath: IndexPath, completion: @escaping (Bool) -> Void) -> UIAlertAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID,
|
|
|
|
let webFeed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed,
|
|
|
|
let url = URL(string: webFeed.url) else {
|
2019-08-16 02:46:31 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Copy Feed URL", comment: "Copy Feed URL")
|
|
|
|
let action = UIAlertAction(title: title, style: .default) { action in
|
|
|
|
UIPasteboard.general.url = url
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-08-16 02:46:31 +02:00
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-08-15 22:19:23 +02:00
|
|
|
func copyHomePageAction(indexPath: IndexPath) -> UIAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID,
|
|
|
|
let webFeed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed,
|
|
|
|
let homePageURL = webFeed.homePageURL,
|
2019-08-15 22:19:23 +02:00
|
|
|
let url = URL(string: homePageURL) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Copy Home Page URL", comment: "Copy Home Page URL")
|
2019-08-16 20:27:41 +02:00
|
|
|
let action = UIAction(title: title, image: AppAssets.copyImage) { action in
|
2019-08-15 22:19:23 +02:00
|
|
|
UIPasteboard.general.url = url
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
func copyHomePageAlertAction(indexPath: IndexPath, completion: @escaping (Bool) -> Void) -> UIAlertAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID,
|
|
|
|
let webFeed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed,
|
|
|
|
let homePageURL = webFeed.homePageURL,
|
2019-08-16 02:46:31 +02:00
|
|
|
let url = URL(string: homePageURL) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Copy Home Page URL", comment: "Copy Home Page URL")
|
|
|
|
let action = UIAlertAction(title: title, style: .default) { action in
|
|
|
|
UIPasteboard.general.url = url
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-08-16 02:46:31 +02:00
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2020-01-11 19:30:16 +01:00
|
|
|
func markAllAsReadAlertAction(indexPath: IndexPath, completion: @escaping (Bool) -> Void) -> UIAlertAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let identifier = dataSource.itemIdentifier(for: indexPath),
|
|
|
|
identifier.unreadCount > 0,
|
|
|
|
let feedID = identifier.feedID,
|
|
|
|
let feed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed,
|
2020-05-13 06:33:51 +02:00
|
|
|
let articles = try? feed.fetchArticles(), let contentView = self.tableView.cellForRow(at: indexPath)?.contentView else {
|
2020-01-11 19:30:16 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let localizedMenuText = NSLocalizedString("Mark All as Read in “%@”", comment: "Command")
|
|
|
|
let title = NSString.localizedStringWithFormat(localizedMenuText as NSString, feed.nameForDisplay) as String
|
|
|
|
let cancel = {
|
|
|
|
completion(true)
|
|
|
|
}
|
|
|
|
|
2020-05-13 06:33:51 +02:00
|
|
|
|
2020-01-11 19:30:16 +01:00
|
|
|
let action = UIAlertAction(title: title, style: .default) { [weak self] action in
|
2020-05-13 06:33:51 +02:00
|
|
|
MarkAsReadAlertController.confirm(self, coordinator: self?.coordinator, confirmTitle: title, sourceType: contentView, cancelCompletion: cancel) { [weak self] in
|
2020-01-11 19:30:16 +01:00
|
|
|
self?.coordinator.markAllAsRead(Array(articles))
|
|
|
|
completion(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
func deleteAction(indexPath: IndexPath) -> UIAction {
|
|
|
|
let title = NSLocalizedString("Delete", comment: "Delete")
|
2019-10-05 05:03:31 +02:00
|
|
|
|
|
|
|
let action = UIAction(title: title, image: AppAssets.trashImage, attributes: .destructive) { [weak self] action in
|
2019-08-16 20:54:19 +02:00
|
|
|
self?.delete(indexPath: indexPath)
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
|
|
|
func renameAction(indexPath: IndexPath) -> UIAction {
|
|
|
|
let title = NSLocalizedString("Rename", comment: "Rename")
|
2019-08-16 20:54:19 +02:00
|
|
|
let action = UIAction(title: title, image: AppAssets.editImage) { [weak self] action in
|
|
|
|
self?.rename(indexPath: indexPath)
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
return action
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2019-04-17 20:35:16 +02:00
|
|
|
|
2019-09-28 14:00:18 +02:00
|
|
|
func getInfoAction(indexPath: IndexPath) -> UIAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID, let feed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed else {
|
2019-09-28 14:00:18 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Get Info", comment: "Get Info")
|
|
|
|
let action = UIAction(title: title, image: AppAssets.infoImage) { [weak self] action in
|
|
|
|
self?.coordinator.showFeedInspector(for: feed)
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-10-24 02:58:18 +02:00
|
|
|
func getAccountInfoAction(account: Account) -> UIAction {
|
|
|
|
let title = NSLocalizedString("Get Info", comment: "Get Info")
|
|
|
|
let action = UIAction(title: title, image: AppAssets.infoImage) { [weak self] action in
|
|
|
|
self?.coordinator.showAccountInspector(for: account)
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-10-24 03:22:31 +02:00
|
|
|
func deactivateAccountAction(account: Account) -> UIAction {
|
|
|
|
let title = NSLocalizedString("Deactivate", comment: "Deactivate")
|
|
|
|
let action = UIAction(title: title, image: AppAssets.deactivateImage) { action in
|
|
|
|
account.isActive = false
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
func getInfoAlertAction(indexPath: IndexPath, completion: @escaping (Bool) -> Void) -> UIAlertAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID, let feed = AccountManager.shared.existingFeed(with: feedID) as? WebFeed else {
|
2019-09-28 14:00:18 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-05 05:03:31 +02:00
|
|
|
let title = NSLocalizedString("Get Info", comment: "Get Info")
|
2019-09-28 14:00:18 +02:00
|
|
|
let action = UIAlertAction(title: title, style: .default) { [weak self] action in
|
|
|
|
self?.coordinator.showFeedInspector(for: feed)
|
2019-12-15 01:14:55 +01:00
|
|
|
completion(true)
|
2019-09-28 14:00:18 +02:00
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
2019-12-30 09:33:06 +01:00
|
|
|
|
|
|
|
func markAllAsReadAction(indexPath: IndexPath) -> UIAction? {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let identifier = dataSource.itemIdentifier(for: indexPath), identifier.unreadCount > 0 else {
|
2019-12-30 09:33:06 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = identifier.feedID,
|
2020-10-21 00:59:54 +02:00
|
|
|
let feed = AccountManager.shared.existingFeed(with: feedID),
|
|
|
|
feed.unreadCount > 0,
|
|
|
|
let contentView = self.tableView.cellForRow(at: indexPath)?.contentView else {
|
2019-12-30 09:33:06 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-21 00:59:54 +02:00
|
|
|
let localizedMenuText = NSLocalizedString("Mark All as Read in “%@”", comment: "Command")
|
|
|
|
let title = NSString.localizedStringWithFormat(localizedMenuText as NSString, feed.nameForDisplay) as String
|
|
|
|
let action = UIAction(title: title, image: AppAssets.markAllAsReadImage) { [weak self] action in
|
|
|
|
MarkAsReadAlertController.confirm(self, coordinator: self?.coordinator, confirmTitle: title, sourceType: contentView) { [weak self] in
|
|
|
|
if let articles = try? feed.fetchUnreadArticles() {
|
|
|
|
self?.coordinator.markAllAsRead(Array(articles))
|
|
|
|
}
|
|
|
|
}
|
2020-07-01 09:00:39 +02:00
|
|
|
}
|
|
|
|
|
2020-10-21 00:59:54 +02:00
|
|
|
return action
|
2020-07-01 09:00:39 +02:00
|
|
|
}
|
|
|
|
|
2020-10-21 00:59:54 +02:00
|
|
|
func markAllAsReadAction(account: Account, contentView: UIView?) -> UIAction? {
|
|
|
|
guard account.unreadCount > 0, let contentView = contentView else {
|
2019-12-30 09:33:06 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
let localizedMenuText = NSLocalizedString("Mark All as Read in “%@”", comment: "Command")
|
2020-10-21 00:59:54 +02:00
|
|
|
let title = NSString.localizedStringWithFormat(localizedMenuText as NSString, account.nameForDisplay) as String
|
2020-01-07 02:07:04 +01:00
|
|
|
let action = UIAction(title: title, image: AppAssets.markAllAsReadImage) { [weak self] action in
|
2020-05-13 06:33:51 +02:00
|
|
|
MarkAsReadAlertController.confirm(self, coordinator: self?.coordinator, confirmTitle: title, sourceType: contentView) { [weak self] in
|
2020-10-21 00:59:54 +02:00
|
|
|
if let articles = try? account.fetchArticles(.unread) {
|
|
|
|
self?.coordinator.markAllAsRead(Array(articles))
|
|
|
|
}
|
2020-01-11 19:30:16 +01:00
|
|
|
}
|
2019-12-30 09:33:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return action
|
|
|
|
}
|
2020-10-21 00:59:54 +02:00
|
|
|
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
func rename(indexPath: IndexPath) {
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID, let feed = AccountManager.shared.existingFeed(with: feedID) else { return }
|
|
|
|
|
|
|
|
let name = dataSource.itemIdentifier(for: indexPath)?.nameForDisplay ?? ""
|
2020-09-29 03:21:07 +02:00
|
|
|
let formatString = NSLocalizedString("Rename “%@”", comment: "Rename feed")
|
2019-04-15 22:10:30 +02:00
|
|
|
let title = NSString.localizedStringWithFormat(formatString as NSString, name) as String
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
let alertController = UIAlertController(title: title, message: nil, preferredStyle: .alert)
|
|
|
|
|
|
|
|
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
|
|
|
|
alertController.addAction(UIAlertAction(title: cancelTitle, style: .cancel))
|
|
|
|
|
|
|
|
let renameTitle = NSLocalizedString("Rename", comment: "Rename")
|
|
|
|
let renameAction = UIAlertAction(title: renameTitle, style: .default) { [weak self] action in
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
guard let name = alertController.textFields?[0].text, !name.isEmpty else {
|
|
|
|
return
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 01:03:20 +02:00
|
|
|
if let webFeed = feed as? WebFeed {
|
|
|
|
webFeed.rename(to: name) { result in
|
2019-06-26 13:23:08 +02:00
|
|
|
switch result {
|
|
|
|
case .success:
|
2020-01-19 20:16:59 +01:00
|
|
|
break
|
2019-06-26 13:23:08 +02:00
|
|
|
case .failure(let error):
|
|
|
|
self?.presentError(error)
|
|
|
|
}
|
|
|
|
}
|
2020-06-16 01:03:20 +02:00
|
|
|
} else if let folder = feed as? Folder {
|
2019-06-26 13:23:08 +02:00
|
|
|
folder.rename(to: name) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
2020-01-19 20:16:59 +01:00
|
|
|
break
|
2019-06-26 13:23:08 +02:00
|
|
|
case .failure(let error):
|
|
|
|
self?.presentError(error)
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
alertController.addAction(renameAction)
|
2021-01-12 02:57:14 +01:00
|
|
|
alertController.preferredAction = renameAction
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
alertController.addTextField() { textField in
|
2020-01-08 20:48:37 +01:00
|
|
|
textField.text = name
|
2019-04-15 22:03:05 +02:00
|
|
|
textField.placeholder = NSLocalizedString("Name", comment: "Name")
|
|
|
|
}
|
|
|
|
|
|
|
|
self.present(alertController, animated: true) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-04-18 16:42:41 +02:00
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
func delete(indexPath: IndexPath) {
|
2020-09-29 03:21:07 +02:00
|
|
|
guard let feedID = dataSource.itemIdentifier(for: indexPath)?.feedID, let feed = AccountManager.shared.existingFeed(with: feedID) else { return }
|
|
|
|
|
|
|
|
let title: String
|
|
|
|
let message: String
|
|
|
|
if feed is Folder {
|
|
|
|
title = NSLocalizedString("Delete Folder", comment: "Delete folder")
|
|
|
|
let localizedInformativeText = NSLocalizedString("Are you sure you want to delete the “%@” folder?", comment: "Folder delete text")
|
|
|
|
message = NSString.localizedStringWithFormat(localizedInformativeText as NSString, feed.nameForDisplay) as String
|
|
|
|
} else {
|
|
|
|
title = NSLocalizedString("Delete Feed", comment: "Delete feed")
|
|
|
|
let localizedInformativeText = NSLocalizedString("Are you sure you want to delete the “%@” feed?", comment: "Feed delete text")
|
|
|
|
message = NSString.localizedStringWithFormat(localizedInformativeText as NSString, feed.nameForDisplay) as String
|
|
|
|
}
|
|
|
|
|
|
|
|
let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert)
|
|
|
|
|
|
|
|
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
|
|
|
|
alertController.addAction(UIAlertAction(title: cancelTitle, style: .cancel))
|
|
|
|
|
|
|
|
let deleteTitle = NSLocalizedString("Delete", comment: "Delete")
|
|
|
|
let deleteAction = UIAlertAction(title: deleteTitle, style: .default) { [weak self] action in
|
|
|
|
self?.delete(indexPath: indexPath, feedID: feedID)
|
|
|
|
}
|
|
|
|
alertController.addAction(deleteAction)
|
2021-01-12 02:57:14 +01:00
|
|
|
alertController.preferredAction = deleteAction
|
2020-09-29 03:21:07 +02:00
|
|
|
|
|
|
|
self.present(alertController, animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func delete(indexPath: IndexPath, feedID: FeedIdentifier) {
|
2019-08-15 20:19:02 +02:00
|
|
|
guard let undoManager = undoManager,
|
2020-09-29 03:21:07 +02:00
|
|
|
let deleteNode = coordinator.nodeFor(feedID: feedID),
|
|
|
|
let deleteCommand = DeleteCommand(nodesToDelete: [deleteNode], undoManager: undoManager, errorHandler: ErrorHandler.present(self)) else {
|
|
|
|
return
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
|
2019-08-28 18:30:40 +02:00
|
|
|
if let folder = deleteNode.representedObject as? Folder {
|
2019-09-01 02:30:21 +02:00
|
|
|
ActivityManager.cleanUp(folder)
|
2019-11-15 03:11:41 +01:00
|
|
|
} else if let feed = deleteNode.representedObject as? WebFeed {
|
2019-09-01 02:30:21 +02:00
|
|
|
ActivityManager.cleanUp(feed)
|
2019-08-28 18:30:40 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
pushUndoableCommand(deleteCommand)
|
2019-08-29 01:06:27 +02:00
|
|
|
deleteCommand.perform()
|
2019-09-08 15:40:15 +02:00
|
|
|
|
|
|
|
if indexPath == coordinator.currentFeedIndexPath {
|
2020-02-18 02:40:40 +01:00
|
|
|
coordinator.selectFeed(indexPath: nil)
|
2019-09-08 15:40:15 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
2020-02-01 08:12:54 +01:00
|
|
|
|
|
|
|
extension MasterFeedViewController: UIGestureRecognizerDelegate {
|
|
|
|
func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
|
|
|
|
guard let gestureRecognizer = gestureRecognizer as? UIPanGestureRecognizer else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
let velocity = gestureRecognizer.velocity(in: self.view)
|
|
|
|
return abs(velocity.x) > abs(velocity.y);
|
|
|
|
}
|
|
|
|
}
|