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
|
2019-06-11 23:59:16 +02:00
|
|
|
import SwiftUI
|
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
|
|
|
|
2019-05-19 23:08:48 +02:00
|
|
|
@IBOutlet private weak var markAllAsReadButton: UIBarButtonItem!
|
|
|
|
@IBOutlet private weak var addNewItemButton: UIBarButtonItem!
|
2019-04-23 11:35:48 +02:00
|
|
|
|
2019-08-29 01:06:27 +02:00
|
|
|
private lazy var dataSource = makeDataSource()
|
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-04-17 03:56:02 +02:00
|
|
|
navigationItem.rightBarButtonItem = editButtonItem
|
|
|
|
|
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-04-18 14:24:55 +02:00
|
|
|
|
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)
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(feedSettingDidChange(_:)), name: .FeedSettingDidChange, object: nil)
|
2019-04-18 16:42:41 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(userDidAddFeed(_:)), name: .UserDidAddFeed, object: nil)
|
2019-07-27 21:49:07 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(progressDidChange(_:)), name: .AccountRefreshProgressDidChange, object: nil)
|
2019-04-28 17:31:35 +02:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(contentSizeCategoryDidChange), name: UIContentSizeCategory.didChangeNotification, object: nil)
|
2019-04-22 23:25:16 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
refreshControl = UIRefreshControl()
|
|
|
|
refreshControl!.addTarget(self, action: #selector(refreshAccounts(_:)), for: .valueChanged)
|
|
|
|
|
2019-04-23 11:35:48 +02:00
|
|
|
updateUI()
|
2019-08-29 01:06:27 +02:00
|
|
|
applyChanges(animate: false)
|
2019-09-06 17:52:21 +02:00
|
|
|
becomeFirstResponder()
|
2019-04-23 11:35:48 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
2019-04-29 01:53:57 +02:00
|
|
|
navigationController?.title = NSLocalizedString("Feeds", comment: "Feeds")
|
2019-08-02 17:25:47 +02:00
|
|
|
clearsSelectionOnViewWillAppear = coordinator.isRootSplitCollapsed
|
2019-04-15 22:03:05 +02:00
|
|
|
super.viewWillAppear(animated)
|
|
|
|
}
|
2019-04-17 01:25:55 +02:00
|
|
|
|
|
|
|
override func viewDidAppear(_ animated: Bool) {
|
|
|
|
super.viewDidAppear(animated)
|
2019-07-27 21:49:07 +02:00
|
|
|
navigationController?.updateAccountRefreshProgressIndicator()
|
2019-04-17 01:25:55 +02: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
|
2019-09-01 19:43:07 +02:00
|
|
|
if let coordinator = representedObject as? SceneCoordinator, let fetcher = coordinator.timelineFetcher {
|
2019-08-29 21:35:18 +02:00
|
|
|
node = coordinator.rootNode.descendantNodeRepresentingObject(fetcher as AnyObject)
|
|
|
|
} else {
|
|
|
|
node = coordinator.rootNode.descendantNodeRepresentingObject(representedObject as AnyObject)
|
|
|
|
}
|
|
|
|
|
|
|
|
if let node = node, coordinator.indexPathFor(node) != nil {
|
|
|
|
reloadNode(node)
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@objc func faviconDidBecomeAvailable(_ note: Notification) {
|
|
|
|
applyToAvailableCells(configureFavicon)
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func feedSettingDidChange(_ note: Notification) {
|
|
|
|
guard let feed = note.object as? Feed, let key = note.userInfo?[Feed.FeedSettingUserInfoKey] as? String else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if key == Feed.FeedSettingKey.homePageURL || key == Feed.FeedSettingKey.faviconURL {
|
|
|
|
configureCellsForRepresentedObject(feed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 16:42:41 +02:00
|
|
|
@objc func userDidAddFeed(_ notification: Notification) {
|
2019-08-19 22:45:52 +02:00
|
|
|
guard let feed = notification.userInfo?[UserInfoKey.feed] as? Feed else {
|
2019-04-18 16:42:41 +02:00
|
|
|
return
|
|
|
|
}
|
2019-08-19 22:45:52 +02:00
|
|
|
discloseFeed(feed)
|
2019-04-18 16:42:41 +02:00
|
|
|
}
|
2019-05-20 02:18:28 +02:00
|
|
|
|
2019-07-27 21:49:07 +02:00
|
|
|
@objc func progressDidChange(_ note: Notification) {
|
|
|
|
navigationController?.updateAccountRefreshProgressIndicator()
|
|
|
|
}
|
|
|
|
|
2019-04-28 17:31:35 +02:00
|
|
|
@objc func contentSizeCategoryDidChange(_ note: Notification) {
|
2019-08-29 01:06:27 +02:00
|
|
|
applyChanges(animate: false)
|
2019-04-28 17:31:35 +02:00
|
|
|
}
|
|
|
|
|
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
|
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-06-29 20:35:12 +02:00
|
|
|
headerView.disclosureExpanded = coordinator.isExpanded(sectionNode)
|
2019-04-21 01:20:25 +02:00
|
|
|
|
2019-04-18 18:38:38 +02:00
|
|
|
let tap = UITapGestureRecognizer(target: self, action:#selector(self.toggleSectionHeader(_:)))
|
|
|
|
headerView.addGestureRecognizer(tap)
|
|
|
|
|
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")
|
|
|
|
let deleteAction = UIContextualAction(style: .normal, title: deleteTitle) { [weak self] (action, view, completionHandler) in
|
|
|
|
self?.delete(indexPath: indexPath)
|
|
|
|
completionHandler(true)
|
|
|
|
}
|
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")
|
|
|
|
let renameAction = UIContextualAction(style: .normal, title: renameTitle) { [weak self] (action, view, completionHandler) in
|
|
|
|
self?.rename(indexPath: indexPath)
|
|
|
|
completionHandler(true)
|
|
|
|
}
|
2019-08-16 02:46:31 +02:00
|
|
|
renameAction.backgroundColor = UIColor.systemOrange
|
|
|
|
actions.append(renameAction)
|
|
|
|
|
|
|
|
if let feed = coordinator.nodeFor(indexPath)?.representedObject as? Feed {
|
|
|
|
let moreTitle = NSLocalizedString("More", comment: "More")
|
|
|
|
let moreAction = UIContextualAction(style: .normal, title: moreTitle) { [weak self] (action, view, completionHandler) in
|
|
|
|
|
|
|
|
if let self = self {
|
|
|
|
|
|
|
|
let alert = UIAlertController(title: feed.name, message: nil, preferredStyle: .actionSheet)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
if let action = self.homePageAlertAction(indexPath: indexPath, completionHandler: completionHandler) {
|
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
|
|
|
if let action = self.copyFeedPageAlertAction(indexPath: indexPath, completionHandler: completionHandler) {
|
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
|
|
|
if let action = self.copyHomePageAlertAction(indexPath: indexPath, completionHandler: completionHandler) {
|
|
|
|
alert.addAction(action)
|
|
|
|
}
|
|
|
|
|
|
|
|
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
|
|
|
|
alert.addAction(UIAlertAction(title: cancelTitle, style: .cancel) { _ in
|
|
|
|
completionHandler(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
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? {
|
|
|
|
guard let node = coordinator.nodeFor(indexPath), !(node.representedObject is PseudoFeed) else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if node.representedObject is Feed {
|
|
|
|
return makeFeedContextMenu(indexPath: indexPath, includeDeleteRename: true)
|
|
|
|
} else {
|
|
|
|
return makeFolderContextMenu(indexPath: indexPath)
|
|
|
|
}
|
|
|
|
}
|
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()
|
2019-09-06 14:29:36 +02:00
|
|
|
coordinator.selectFeed(indexPath, automated: false)
|
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
|
|
|
}()
|
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
guard let draggedNode = coordinator.nodeFor(sourceIndexPath), let destNode = coordinator.nodeFor(destIndexPath), let parentNode = destNode.parent else {
|
2019-04-20 03:03:02 +02:00
|
|
|
assertionFailure("This should never happen")
|
|
|
|
return sourceIndexPath
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a folder and isn't expanded or doesn't have any entries, let the users drop on it
|
2019-06-29 20:35:12 +02:00
|
|
|
if destNode.representedObject is Folder && (destNode.numberOfChildNodes == 0 || !coordinator.isExpanded(destNode)) {
|
2019-04-20 16:07:54 +02:00
|
|
|
let movementAdjustment = sourceIndexPath > destIndexPath ? 1 : 0
|
2019-04-20 03:03:02 +02:00
|
|
|
return IndexPath(row: destIndexPath.row + movementAdjustment, section: destIndexPath.section)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are dragging around in the same container, just return the original source
|
|
|
|
if parentNode.childNodes.contains(draggedNode) {
|
|
|
|
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.
|
|
|
|
let nodes = parentNode.childNodes + [draggedNode]
|
|
|
|
var sortedNodes = nodes.sortedAlphabeticallyWithFoldersAtEnd()
|
|
|
|
let index = sortedNodes.firstIndex(of: draggedNode)!
|
|
|
|
|
|
|
|
if index == 0 {
|
2019-04-20 16:07:54 +02:00
|
|
|
|
2019-04-20 03:03:02 +02:00
|
|
|
if parentNode.representedObject is Account {
|
|
|
|
return IndexPath(row: 0, section: destIndexPath.section)
|
|
|
|
} else {
|
2019-06-29 20:35:12 +02:00
|
|
|
return coordinator.indexPathFor(parentNode)!
|
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
|
|
|
|
|
|
|
sortedNodes.remove(at: index)
|
|
|
|
|
|
|
|
let movementAdjustment = sourceIndexPath < destIndexPath ? 1 : 0
|
|
|
|
let adjustedIndex = index - movementAdjustment
|
|
|
|
if adjustedIndex >= sortedNodes.count {
|
2019-06-29 20:35:12 +02:00
|
|
|
let lastSortedIndexPath = coordinator.indexPathFor(sortedNodes[sortedNodes.count - 1])!
|
2019-04-20 16:07:54 +02:00
|
|
|
return IndexPath(row: lastSortedIndexPath.row + 1, section: lastSortedIndexPath.section)
|
|
|
|
} else {
|
2019-06-29 20:35:12 +02:00
|
|
|
return coordinator.indexPathFor(sortedNodes[adjustedIndex])!
|
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
|
|
|
@IBAction func markAllAsRead(_ sender: Any) {
|
|
|
|
|
|
|
|
let title = NSLocalizedString("Mark All Read", comment: "Mark All Read")
|
|
|
|
let message = NSLocalizedString("Mark all articles in all accounts as read?", comment: "Mark all articles")
|
|
|
|
let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert)
|
|
|
|
|
|
|
|
let cancelTitle = NSLocalizedString("Cancel", comment: "Cancel")
|
|
|
|
let cancelAction = UIAlertAction(title: cancelTitle, style: .cancel)
|
|
|
|
alertController.addAction(cancelAction)
|
|
|
|
|
|
|
|
let markTitle = NSLocalizedString("Mark All Read", comment: "Mark All Read")
|
|
|
|
let markAction = UIAlertAction(title: markTitle, style: .default) { [weak self] (action) in
|
2019-07-06 19:25:45 +02:00
|
|
|
self?.coordinator.markAllAsRead()
|
2019-04-17 01:25:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
alertController.addAction(markAction)
|
|
|
|
|
|
|
|
present(alertController, animated: true)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-16 20:38:07 +02:00
|
|
|
@IBAction func add(_ sender: UIBarButtonItem) {
|
2019-09-05 22:07:35 +02:00
|
|
|
coordinator.showAdd(.feed)
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 18:38:38 +02:00
|
|
|
@objc func toggleSectionHeader(_ sender: UITapGestureRecognizer) {
|
|
|
|
|
|
|
|
guard let sectionIndex = sender.view?.tag,
|
2019-06-29 20:35:12 +02:00
|
|
|
let sectionNode = coordinator.rootNode.childAtIndex(sectionIndex),
|
2019-04-23 15:00:27 +02:00
|
|
|
let headerView = sender.view as? MasterFeedTableViewSectionHeader
|
2019-04-18 18:38:38 +02:00
|
|
|
else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
if coordinator.isExpanded(sectionNode) {
|
2019-04-21 01:20:25 +02:00
|
|
|
headerView.disclosureExpanded = false
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.collapseSection(sectionIndex)
|
2019-08-29 01:06:27 +02:00
|
|
|
self.applyChanges(animate: true)
|
2019-04-18 18:38:38 +02:00
|
|
|
} else {
|
2019-04-21 01:20:25 +02:00
|
|
|
headerView.disclosureExpanded = true
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.expandSection(sectionIndex)
|
2019-08-29 01:06:27 +02:00
|
|
|
self.applyChanges(animate: true)
|
2019-04-18 18:38:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
@objc func refreshAccounts(_ sender: Any) {
|
|
|
|
refreshControl?.endRefreshing()
|
|
|
|
// 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) {
|
|
|
|
AccountManager.shared.refreshAll(errorHandler: ErrorHandler.present(self))
|
|
|
|
}
|
|
|
|
}
|
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?) {
|
|
|
|
if let indexPath = coordinator.currentFeedIndexPath {
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.expandFolder(indexPath)
|
2019-09-05 23:04:07 +02:00
|
|
|
self.applyChanges(animate: true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func collapseSelectedRows(_ sender: Any?) {
|
|
|
|
if let indexPath = coordinator.currentFeedIndexPath {
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.collapseFolder(indexPath)
|
2019-09-05 23:04:07 +02:00
|
|
|
self.applyChanges(animate: true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-05 23:38:33 +02:00
|
|
|
@objc func expandAll(_ sender: Any?) {
|
|
|
|
coordinator.expandAllSectionsAndFolders()
|
|
|
|
self.applyChanges(animate: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc func collapseAllExceptForGroupItems(_ sender: Any?) {
|
|
|
|
coordinator.collapseAllFolders()
|
|
|
|
self.applyChanges(animate: true)
|
|
|
|
}
|
|
|
|
|
2019-08-19 22:45:52 +02:00
|
|
|
// MARK: API
|
|
|
|
|
2019-08-25 18:38:04 +02:00
|
|
|
func updateFeedSelection() {
|
2019-09-06 18:22:35 +02:00
|
|
|
guard !coordinator.isRootSplitCollapsed else {
|
2019-09-06 18:11:28 +02:00
|
|
|
return
|
|
|
|
}
|
2019-09-05 04:06:29 +02:00
|
|
|
if let indexPath = coordinator.currentFeedIndexPath {
|
2019-08-25 18:38:04 +02:00
|
|
|
if tableView.indexPathForSelectedRow != indexPath {
|
|
|
|
tableView.selectRow(at: indexPath, animated: true, scrollPosition: .middle)
|
|
|
|
}
|
2019-09-03 19:25:27 +02:00
|
|
|
} else {
|
|
|
|
tableView.selectRow(at: nil, animated: true, scrollPosition: .none)
|
2019-08-25 18:38:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func reloadFeeds() {
|
|
|
|
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-09-01 17:11:03 +02:00
|
|
|
applyChanges(animate: true) { [weak self] in
|
|
|
|
self?.reloadAllVisibleCells()
|
|
|
|
}
|
2019-08-25 18:38:04 +02:00
|
|
|
}
|
|
|
|
|
2019-09-05 20:14:14 +02:00
|
|
|
func ensureSectionIsExpanded(_ sectionIndex: Int, completion: (() -> Void)? = nil) {
|
|
|
|
guard let sectionNode = coordinator.rootNode.childAtIndex(sectionIndex) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !coordinator.isExpanded(sectionNode) {
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.expandSection(sectionIndex)
|
2019-09-05 20:14:14 +02:00
|
|
|
self.applyChanges(animate: true) {
|
|
|
|
completion?()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
completion?()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-01 03:23:14 +02:00
|
|
|
func discloseFeed(_ feed: Feed, completion: (() -> Void)? = nil) {
|
2019-08-19 22:45:52 +02:00
|
|
|
|
|
|
|
guard let node = coordinator.rootNode.descendantNodeRepresentingObject(feed as AnyObject) else {
|
2019-09-06 14:29:36 +02:00
|
|
|
completion?()
|
|
|
|
return
|
2019-08-19 22:45:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if let indexPath = coordinator.indexPathFor(node) {
|
|
|
|
tableView.scrollToRow(at: indexPath, at: .middle, animated: true)
|
|
|
|
coordinator.selectFeed(indexPath)
|
2019-09-06 14:29:36 +02:00
|
|
|
completion?()
|
2019-08-19 22:45:52 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// It wasn't already visable, so expand its folder and try again
|
|
|
|
guard let parent = node.parent, let indexPath = coordinator.indexPathFor(parent) else {
|
2019-09-06 14:29:36 +02:00
|
|
|
completion?()
|
2019-08-19 22:45:52 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.expandFolder(indexPath)
|
2019-08-29 03:21:50 +02:00
|
|
|
reloadNode(parent)
|
2019-08-29 03:08:30 +02:00
|
|
|
|
|
|
|
self.applyChanges(animate: true) { [weak self] in
|
|
|
|
if let indexPath = self?.coordinator.indexPathFor(node) {
|
|
|
|
self?.tableView.scrollToRow(at: indexPath, at: .middle, animated: true)
|
|
|
|
self?.coordinator.selectFeed(indexPath)
|
2019-09-01 03:23:14 +02:00
|
|
|
completion?()
|
2019-08-29 03:08:30 +02:00
|
|
|
}
|
2019-08-19 22:45:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-08-15 19:42:25 +02:00
|
|
|
|
2019-09-05 04:06:29 +02:00
|
|
|
func focus() {
|
|
|
|
becomeFirstResponder()
|
|
|
|
}
|
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: MasterTableViewCellDelegate
|
|
|
|
|
|
|
|
extension MasterFeedViewController: MasterFeedTableViewCellDelegate {
|
2019-04-15 22:03:05 +02:00
|
|
|
|
2019-08-15 19:42:25 +02:00
|
|
|
func disclosureSelected(_ sender: MasterFeedTableViewCell, expanding: Bool) {
|
|
|
|
if expanding {
|
|
|
|
expand(sender)
|
|
|
|
} else {
|
|
|
|
collapse(sender)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Private
|
|
|
|
|
|
|
|
private extension MasterFeedViewController {
|
|
|
|
|
|
|
|
func updateUI() {
|
|
|
|
markAllAsReadButton.isEnabled = coordinator.isAnyUnreadAvailable
|
|
|
|
addNewItemButton.isEnabled = !AccountManager.shared.activeAccounts.isEmpty
|
|
|
|
}
|
2019-08-29 01:06:27 +02:00
|
|
|
|
2019-08-29 03:21:50 +02:00
|
|
|
func reloadNode(_ node: Node) {
|
|
|
|
var snapshot = dataSource.snapshot()
|
|
|
|
snapshot.reloadItems([node])
|
2019-08-29 21:35:18 +02:00
|
|
|
dataSource.apply(snapshot, animatingDifferences: false) { [weak self] in
|
2019-09-05 20:14:14 +02:00
|
|
|
self?.restoreSelectionIfNecessary()
|
2019-08-29 21:35:18 +02:00
|
|
|
}
|
2019-08-29 03:21:50 +02:00
|
|
|
}
|
|
|
|
|
2019-08-29 03:08:30 +02:00
|
|
|
func applyChanges(animate: Bool, completion: (() -> Void)? = nil) {
|
2019-08-29 01:06:27 +02:00
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<Int, Node>()
|
|
|
|
let sections = coordinator.allSections
|
|
|
|
snapshot.appendSections(sections)
|
|
|
|
|
|
|
|
for section in sections {
|
|
|
|
snapshot.appendItems(coordinator.nodesFor(section: section), toSection: section)
|
|
|
|
}
|
|
|
|
|
2019-08-29 03:08:30 +02:00
|
|
|
dataSource.apply(snapshot, animatingDifferences: animate) { [weak self] in
|
2019-09-03 20:59:22 +02:00
|
|
|
self?.restoreSelectionIfNecessary()
|
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
|
|
|
}
|
2019-08-15 19:42:25 +02:00
|
|
|
|
2019-08-29 01:06:27 +02:00
|
|
|
func makeDataSource() -> UITableViewDiffableDataSource<Int, Node> {
|
|
|
|
return MasterFeedDataSource(coordinator: coordinator, errorHandler: ErrorHandler.present(self), tableView: tableView, cellProvider: { [weak self] tableView, indexPath, node in
|
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! MasterFeedTableViewCell
|
|
|
|
self?.configure(cell, node)
|
|
|
|
return cell
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
func configure(_ cell: MasterFeedTableViewCell, _ node: Node) {
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2019-04-17 17:34:10 +02:00
|
|
|
cell.delegate = self
|
2019-04-20 18:11:09 +02:00
|
|
|
if node.parent?.representedObject is Folder {
|
|
|
|
cell.indentationLevel = 1
|
2019-04-20 18:25:02 +02:00
|
|
|
} else {
|
|
|
|
cell.indentationLevel = 0
|
2019-04-20 18:11:09 +02:00
|
|
|
}
|
2019-06-29 20:35:12 +02:00
|
|
|
cell.disclosureExpanded = coordinator.isExpanded(node)
|
2019-04-18 01:16:33 +02:00
|
|
|
cell.allowDisclosureSelection = node.canHaveChildNodes
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
cell.name = nameFor(node)
|
2019-08-21 20:10:08 +02:00
|
|
|
cell.unreadCount = coordinator.unreadCountFor(node)
|
2019-04-15 22:03:05 +02:00
|
|
|
configureFavicon(cell, node)
|
2019-04-20 22:41:15 +02:00
|
|
|
cell.shouldShowImage = node.representedObject is SmallIconProvider
|
2019-04-18 01:16:33 +02:00
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 15:00:27 +02:00
|
|
|
func configureFavicon(_ cell: MasterFeedTableViewCell, _ node: Node) {
|
2019-04-15 22:03:05 +02:00
|
|
|
cell.faviconImage = imageFor(node)
|
|
|
|
}
|
|
|
|
|
|
|
|
func imageFor(_ node: Node) -> UIImage? {
|
|
|
|
if let smallIconProvider = node.representedObject as? SmallIconProvider {
|
|
|
|
return smallIconProvider.smallIcon
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyToCellsForRepresentedObject(_ representedObject: AnyObject, _ callback: (MasterFeedTableViewCell, Node) -> Void) {
|
|
|
|
applyToAvailableCells { (cell, node) in
|
|
|
|
if node.representedObject === representedObject {
|
|
|
|
callback(cell, node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func applyToAvailableCells(_ callback: (MasterFeedTableViewCell, Node) -> Void) {
|
|
|
|
tableView.visibleCells.forEach { cell in
|
|
|
|
guard let indexPath = tableView.indexPath(for: cell), let node = coordinator.nodeFor(indexPath) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
callback(cell as! MasterFeedTableViewCell, node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-30 23:19:06 +02:00
|
|
|
private func reloadAllVisibleCells() {
|
|
|
|
let visibleNodes = tableView.indexPathsForVisibleRows!.compactMap { return coordinator.nodeFor($0) }
|
|
|
|
reloadCells(visibleNodes)
|
|
|
|
}
|
|
|
|
|
|
|
|
private func reloadCells(_ nodes: [Node]) {
|
|
|
|
var snapshot = dataSource.snapshot()
|
|
|
|
snapshot.reloadItems(nodes)
|
2019-09-06 18:22:35 +02:00
|
|
|
dataSource.apply(snapshot, animatingDifferences: false) { [weak self] in
|
|
|
|
self?.restoreSelectionIfNecessary()
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
if let feed = node.representedObject as? Feed {
|
|
|
|
return feed.account
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func expand(_ cell: MasterFeedTableViewCell) {
|
|
|
|
guard let indexPath = tableView.indexPath(for: cell) else {
|
|
|
|
return
|
|
|
|
}
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.expandFolder(indexPath)
|
2019-08-29 01:06:27 +02:00
|
|
|
self.applyChanges(animate: true)
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func collapse(_ cell: MasterFeedTableViewCell) {
|
|
|
|
guard let indexPath = tableView.indexPath(for: cell) else {
|
|
|
|
return
|
|
|
|
}
|
2019-09-05 23:08:57 +02:00
|
|
|
coordinator.collapseFolder(indexPath)
|
2019-08-29 01:06:27 +02:00
|
|
|
self.applyChanges(animate: true)
|
2019-08-15 19:42:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 20:59:22 +02:00
|
|
|
func restoreSelectionIfNecessary() {
|
2019-09-06 18:22:35 +02:00
|
|
|
guard !coordinator.isRootSplitCollapsed else {
|
2019-09-03 20:59:22 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if let indexPath = coordinator.masterFeedIndexPathForCurrentTimeline(), indexPath != tableView.indexPathForSelectedRow {
|
|
|
|
tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
func makeFeedContextMenu(indexPath: IndexPath, includeDeleteRename: Bool) -> UIContextMenuConfiguration {
|
2019-08-19 22:45:52 +02:00
|
|
|
return UIContextMenuConfiguration(identifier: nil, previewProvider: nil, actionProvider: { [ weak self] suggestedActions in
|
|
|
|
|
|
|
|
guard let self = self else { return nil }
|
2019-08-15 20:19:02 +02:00
|
|
|
|
|
|
|
var actions = [UIAction]()
|
|
|
|
|
|
|
|
if let homePageAction = self.homePageAction(indexPath: indexPath) {
|
|
|
|
actions.append(homePageAction)
|
2019-06-06 00:42:35 +02:00
|
|
|
}
|
2019-08-15 20:19:02 +02:00
|
|
|
|
2019-08-15 22:19:23 +02:00
|
|
|
if let copyFeedPageAction = self.copyFeedPageAction(indexPath: indexPath) {
|
|
|
|
actions.append(copyFeedPageAction)
|
|
|
|
}
|
|
|
|
|
|
|
|
if let copyHomePageAction = self.copyHomePageAction(indexPath: indexPath) {
|
|
|
|
actions.append(copyHomePageAction)
|
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
if includeDeleteRename {
|
|
|
|
actions.append(self.deleteAction(indexPath: indexPath))
|
|
|
|
actions.append(self.renameAction(indexPath: indexPath))
|
|
|
|
}
|
|
|
|
|
2019-08-19 22:49:42 +02:00
|
|
|
return UIMenu(title: "", children: actions)
|
2019-08-15 20:19:02 +02:00
|
|
|
|
|
|
|
})
|
2019-04-17 20:35:16 +02:00
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
|
2019-08-16 00:46:42 +02:00
|
|
|
func makeFolderContextMenu(indexPath: IndexPath) -> UIContextMenuConfiguration {
|
2019-08-19 22:45:52 +02:00
|
|
|
return UIContextMenuConfiguration(identifier: nil, 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 }
|
|
|
|
|
2019-08-16 00:46:42 +02:00
|
|
|
var actions = [UIAction]()
|
|
|
|
actions.append(self.deleteAction(indexPath: indexPath))
|
|
|
|
actions.append(self.renameAction(indexPath: indexPath))
|
|
|
|
|
2019-08-19 22:49:42 +02:00
|
|
|
return UIMenu(title: "", children: actions)
|
2019-08-16 00:46:42 +02:00
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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-08-16 02:46:31 +02:00
|
|
|
func homePageAlertAction(indexPath: IndexPath, completionHandler: @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-08-16 02:46:31 +02:00
|
|
|
completionHandler(true)
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-08-15 22:19:23 +02:00
|
|
|
func copyFeedPageAction(indexPath: IndexPath) -> UIAction? {
|
|
|
|
guard let node = coordinator.nodeFor(indexPath),
|
|
|
|
let feed = node.representedObject as? Feed,
|
|
|
|
let url = URL(string: feed.url) else {
|
|
|
|
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-08-16 02:46:31 +02:00
|
|
|
func copyFeedPageAlertAction(indexPath: IndexPath, completionHandler: @escaping (Bool) -> Void) -> UIAlertAction? {
|
|
|
|
guard let node = coordinator.nodeFor(indexPath),
|
|
|
|
let feed = node.representedObject as? Feed,
|
|
|
|
let url = URL(string: feed.url) else {
|
|
|
|
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
|
|
|
|
completionHandler(true)
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-08-15 22:19:23 +02:00
|
|
|
func copyHomePageAction(indexPath: IndexPath) -> UIAction? {
|
|
|
|
guard let node = coordinator.nodeFor(indexPath),
|
|
|
|
let feed = node.representedObject as? Feed,
|
|
|
|
let homePageURL = feed.homePageURL,
|
|
|
|
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-08-16 02:46:31 +02:00
|
|
|
func copyHomePageAlertAction(indexPath: IndexPath, completionHandler: @escaping (Bool) -> Void) -> UIAlertAction? {
|
|
|
|
guard let node = coordinator.nodeFor(indexPath),
|
|
|
|
let feed = node.representedObject as? Feed,
|
|
|
|
let homePageURL = feed.homePageURL,
|
|
|
|
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
|
|
|
|
completionHandler(true)
|
|
|
|
}
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
2019-08-15 20:19:02 +02:00
|
|
|
func deleteAction(indexPath: IndexPath) -> UIAction {
|
|
|
|
let title = NSLocalizedString("Delete", comment: "Delete")
|
2019-08-16 20:54:19 +02:00
|
|
|
let action = UIAction(title: title, image: AppAssets.trashImage) { [weak self] action in
|
|
|
|
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-04-15 22:03:05 +02:00
|
|
|
func rename(indexPath: IndexPath) {
|
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
let name = (coordinator.nodeFor(indexPath)?.representedObject as? DisplayNameProvider)?.nameForDisplay ?? ""
|
2019-04-15 22:10:30 +02:00
|
|
|
let formatString = NSLocalizedString("Rename “%@”", comment: "Feed finder")
|
|
|
|
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
|
|
|
|
|
2019-06-29 20:35:12 +02:00
|
|
|
guard let node = self?.coordinator.nodeFor(indexPath),
|
2019-04-15 22:03:05 +02:00
|
|
|
let name = alertController.textFields?[0].text,
|
|
|
|
!name.isEmpty else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if let feed = node.representedObject as? Feed {
|
2019-06-26 13:23:08 +02:00
|
|
|
feed.rename(to: name) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
2019-08-29 03:21:50 +02:00
|
|
|
self?.reloadNode(node)
|
2019-06-26 13:23:08 +02:00
|
|
|
case .failure(let error):
|
|
|
|
self?.presentError(error)
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
} else if let folder = node.representedObject as? Folder {
|
2019-06-26 13:23:08 +02:00
|
|
|
folder.rename(to: name) { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
2019-08-29 03:21:50 +02:00
|
|
|
self?.reloadNode(node)
|
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)
|
|
|
|
|
|
|
|
alertController.addTextField() { textField in
|
|
|
|
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) {
|
|
|
|
guard let undoManager = undoManager,
|
|
|
|
let deleteNode = coordinator.nodeFor(indexPath),
|
2019-09-01 21:56:27 +02:00
|
|
|
let deleteCommand = DeleteCommand(nodesToDelete: [deleteNode], undoManager: undoManager, errorHandler: ErrorHandler.present(self))
|
2019-08-15 20:19:02 +02:00
|
|
|
else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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-08-28 18:30:40 +02:00
|
|
|
} else if let feed = deleteNode.representedObject as? Feed {
|
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-08-15 20:19:02 +02:00
|
|
|
}
|
|
|
|
|
2019-04-15 22:03:05 +02:00
|
|
|
}
|