2017-05-27 19:43:27 +02:00
|
|
|
|
//
|
|
|
|
|
// SidebarViewController.swift
|
2018-08-29 07:18:24 +02:00
|
|
|
|
// NetNewsWire
|
2017-05-27 19:43:27 +02:00
|
|
|
|
//
|
|
|
|
|
// Created by Brent Simmons on 7/26/15.
|
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
2018-01-29 01:09:18 +01:00
|
|
|
|
import AppKit
|
2017-05-27 19:43:27 +02:00
|
|
|
|
import RSTree
|
2018-07-24 03:29:08 +02:00
|
|
|
|
import Articles
|
2017-09-17 21:34:10 +02:00
|
|
|
|
import Account
|
2017-11-04 22:53:21 +01:00
|
|
|
|
import RSCore
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
2019-02-18 03:46:28 +01:00
|
|
|
|
protocol SidebarDelegate: class {
|
2019-02-18 06:43:51 +01:00
|
|
|
|
func sidebarSelectionDidChange(_: SidebarViewController, selectedObjects: [AnyObject]?)
|
2019-07-28 07:53:27 +02:00
|
|
|
|
func unreadCount(for: AnyObject) -> Int
|
2019-02-18 03:46:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-10 21:27:22 +01:00
|
|
|
|
@objc class SidebarViewController: NSViewController, NSOutlineViewDelegate, NSOutlineViewDataSource, NSMenuDelegate, UndoableCommandRunner {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
2017-10-21 21:14:45 +02:00
|
|
|
|
@IBOutlet var outlineView: SidebarOutlineView!
|
2019-02-18 03:46:28 +01:00
|
|
|
|
|
|
|
|
|
weak var delegate: SidebarDelegate?
|
|
|
|
|
|
2019-04-18 11:56:15 +02:00
|
|
|
|
let treeControllerDelegate = FeedTreeControllerDelegate()
|
2017-10-19 22:27:59 +02:00
|
|
|
|
lazy var treeController: TreeController = {
|
2018-02-13 07:02:51 +01:00
|
|
|
|
return TreeController(delegate: treeControllerDelegate)
|
2017-10-19 22:27:59 +02:00
|
|
|
|
}()
|
2018-02-13 07:02:51 +01:00
|
|
|
|
lazy var dataSource: SidebarOutlineDataSource = {
|
|
|
|
|
return SidebarOutlineDataSource(treeController: treeController)
|
|
|
|
|
}()
|
|
|
|
|
|
2017-11-05 06:51:14 +01:00
|
|
|
|
var undoableCommands = [UndoableCommand]()
|
2017-11-05 21:14:36 +01:00
|
|
|
|
private var animatingChanges = false
|
2017-11-25 06:39:59 +01:00
|
|
|
|
private var sidebarCellAppearance: SidebarCellAppearance!
|
2017-10-05 22:15:32 +02:00
|
|
|
|
|
2018-02-04 20:19:24 +01:00
|
|
|
|
var renameWindowController: RenameWindowController?
|
|
|
|
|
|
2018-01-21 20:35:50 +01:00
|
|
|
|
var selectedObjects: [AnyObject] {
|
|
|
|
|
return selectedNodes.representedObjects()
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
// MARK: - NSViewController
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
2019-04-11 07:23:31 +02:00
|
|
|
|
sidebarCellAppearance = SidebarCellAppearance(fontSize: AppDefaults.sidebarFontSize)
|
2017-11-25 06:39:59 +01:00
|
|
|
|
|
2018-02-13 07:02:51 +01:00
|
|
|
|
outlineView.dataSource = dataSource
|
2019-10-05 03:35:33 +02:00
|
|
|
|
outlineView.doubleAction = #selector(doubleClickedSidebar(_:))
|
2019-05-28 01:01:24 +02:00
|
|
|
|
outlineView.setDraggingSourceOperationMask([.move, .copy], forLocal: true)
|
2018-11-22 20:33:53 +01:00
|
|
|
|
outlineView.registerForDraggedTypes([FeedPasteboardWriter.feedUTIInternalType, FeedPasteboardWriter.feedUTIType, .URL, .string])
|
2017-11-08 06:14:58 +01:00
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(unreadCountDidChange(_:)), name: .UnreadCountDidChange, object: nil)
|
2017-10-19 22:27:59 +02:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(containerChildrenDidChange(_:)), name: .ChildrenDidChange, object: nil)
|
2019-09-08 16:43:51 +02:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(accountsDidChange(_:)), name: .UserDidAddAccount, object: nil)
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(accountsDidChange(_:)), name: .UserDidDeleteAccount, object: nil)
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(accountStateDidChange(_:)), name: .AccountStateDidChange, object: nil)
|
2017-10-22 00:56:01 +02:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(userDidAddFeed(_:)), name: .UserDidAddFeed, object: nil)
|
2017-11-15 22:26:10 +01:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(batchUpdateDidPerform(_:)), name: .BatchUpdateDidPerform, object: nil)
|
2017-11-25 20:14:42 +01:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(faviconDidBecomeAvailable(_:)), name: .FaviconDidBecomeAvailable, object: nil)
|
2017-11-25 22:48:14 +01:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(feedSettingDidChange(_:)), name: .FeedSettingDidChange, object: nil)
|
2018-01-24 06:07:29 +01:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(displayNameDidChange(_:)), name: .DisplayNameDidChange, object: nil)
|
2018-09-26 02:20:43 +02:00
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(userDidRequestSidebarSelection(_:)), name: .UserDidRequestSidebarSelection, object: nil)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
outlineView.reloadData()
|
2017-11-19 02:10:47 +01:00
|
|
|
|
|
|
|
|
|
// Always expand all group items on initial display.
|
|
|
|
|
var row = 0
|
|
|
|
|
while(true) {
|
|
|
|
|
guard let item = outlineView.item(atRow: row) else {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
let node = item as! Node
|
|
|
|
|
if node.isGroupItem {
|
|
|
|
|
outlineView.expandItem(item)
|
|
|
|
|
}
|
|
|
|
|
row += 1
|
|
|
|
|
}
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
// MARK: - Notifications
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
@objc func unreadCountDidChange(_ note: Notification) {
|
2017-11-05 07:05:20 +01:00
|
|
|
|
guard let representedObject = note.object else {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return
|
|
|
|
|
}
|
2019-08-14 06:07:39 +02:00
|
|
|
|
if let timelineViewController = representedObject as? TimelineViewController {
|
|
|
|
|
configureUnreadCountForCellsForRepresentedObjects(timelineViewController.representedObjects)
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
configureUnreadCountForCellsForRepresentedObjects([representedObject as AnyObject])
|
|
|
|
|
}
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
@objc func containerChildrenDidChange(_ note: Notification) {
|
2019-02-06 06:00:53 +01:00
|
|
|
|
rebuildTreeAndRestoreSelection()
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-08 16:43:51 +02:00
|
|
|
|
@objc func accountsDidChange(_ notification: Notification) {
|
2019-05-01 19:37:13 +02:00
|
|
|
|
rebuildTreeAndRestoreSelection()
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-08 16:43:51 +02:00
|
|
|
|
@objc func accountStateDidChange(_ notification: Notification) {
|
2019-05-02 13:01:30 +02:00
|
|
|
|
rebuildTreeAndRestoreSelection()
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
@objc func batchUpdateDidPerform(_ notification: Notification) {
|
2019-02-06 06:00:53 +01:00
|
|
|
|
rebuildTreeAndRestoreSelection()
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
@objc func userDidAddFeed(_ notification: Notification) {
|
2017-12-18 21:34:07 +01:00
|
|
|
|
guard let feed = notification.userInfo?[UserInfoKey.feed] else {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-18 21:34:07 +01:00
|
|
|
|
revealAndSelectRepresentedObject(feed as AnyObject)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:14:42 +01:00
|
|
|
|
@objc func faviconDidBecomeAvailable(_ note: Notification) {
|
2017-12-14 06:16:52 +01:00
|
|
|
|
applyToAvailableCells(configureFavicon)
|
2017-11-25 20:14:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 22:48:14 +01:00
|
|
|
|
@objc func feedSettingDidChange(_ note: Notification) {
|
2019-03-17 21:54:30 +01:00
|
|
|
|
guard let feed = note.object as? Feed, let key = note.userInfo?[Feed.FeedSettingUserInfoKey] as? String else {
|
2017-11-25 22:48:14 +01:00
|
|
|
|
return
|
|
|
|
|
}
|
2019-03-17 21:54:30 +01:00
|
|
|
|
if key == Feed.FeedSettingKey.homePageURL || key == Feed.FeedSettingKey.faviconURL {
|
|
|
|
|
configureCellsForRepresentedObject(feed)
|
|
|
|
|
}
|
2017-11-25 22:48:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-24 06:07:29 +01:00
|
|
|
|
@objc func displayNameDidChange(_ note: Notification) {
|
|
|
|
|
guard let object = note.object else {
|
|
|
|
|
return
|
|
|
|
|
}
|
2019-02-03 02:01:40 +01:00
|
|
|
|
let savedSelection = selectedNodes
|
2019-02-02 21:36:07 +01:00
|
|
|
|
rebuildTreeAndReloadDataIfNeeded()
|
2018-01-24 06:07:29 +01:00
|
|
|
|
configureCellsForRepresentedObject(object as AnyObject)
|
2019-02-03 02:01:40 +01:00
|
|
|
|
restoreSelection(to: savedSelection, sendNotificationIfChanged: true)
|
2018-01-24 06:07:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 02:20:43 +02:00
|
|
|
|
@objc func userDidRequestSidebarSelection(_ note: Notification) {
|
|
|
|
|
guard let feed = note.userInfo?[UserInfoKey.feed] else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
revealAndSelectRepresentedObject(feed as AnyObject)
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
// MARK: - Actions
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
@IBAction func delete(_ sender: AnyObject?) {
|
|
|
|
|
if outlineView.selectionIsEmpty {
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-09-26 04:10:54 +02:00
|
|
|
|
deleteNodes(selectedNodes)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
2019-10-05 03:35:33 +02:00
|
|
|
|
|
|
|
|
|
@IBAction func doubleClickedSidebar(_ sender: Any?) {
|
|
|
|
|
guard outlineView.clickedRow == outlineView.selectedRow else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
openInBrowser(sender)
|
|
|
|
|
}
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
2017-12-20 21:59:31 +01:00
|
|
|
|
@IBAction func openInBrowser(_ sender: Any?) {
|
|
|
|
|
guard let feed = singleSelectedFeed, let homePageURL = feed.homePageURL else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
Browser.open(homePageURL)
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-27 21:39:07 +01:00
|
|
|
|
@IBAction func gotoToday(_ sender: Any?) {
|
|
|
|
|
outlineView.revealAndSelectRepresentedObject(SmartFeedsController.shared.todayFeed, treeController)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@IBAction func gotoAllUnread(_ sender: Any?) {
|
|
|
|
|
outlineView.revealAndSelectRepresentedObject(SmartFeedsController.shared.unreadFeed, treeController)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@IBAction func gotoStarred(_ sender: Any?) {
|
|
|
|
|
outlineView.revealAndSelectRepresentedObject(SmartFeedsController.shared.starredFeed, treeController)
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-12 03:58:50 +01:00
|
|
|
|
@IBAction func copy(_ sender: Any?) {
|
2018-02-12 07:10:28 +01:00
|
|
|
|
NSPasteboard.general.copyObjects(selectedObjects)
|
2018-02-12 03:58:50 +01:00
|
|
|
|
}
|
2018-02-12 07:10:28 +01:00
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
// MARK: - Navigation
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
func canGoToNextUnread() -> Bool {
|
2018-02-16 02:50:31 +01:00
|
|
|
|
if let _ = nextSelectableRowWithUnreadArticle() {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func goToNextUnread() {
|
2018-02-16 02:50:31 +01:00
|
|
|
|
guard let row = nextSelectableRowWithUnreadArticle() else {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
assertionFailure("goToNextUnread called before checking if there is a next unread.")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-05 06:18:59 +02:00
|
|
|
|
NSCursor.setHiddenUntilMouseMoves(true)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
outlineView.selectRowIndexes(IndexSet([row]), byExtendingSelection: false)
|
2018-09-13 22:36:07 +02:00
|
|
|
|
outlineView.scrollTo(row: row)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
2017-12-20 00:24:38 +01:00
|
|
|
|
|
|
|
|
|
func focus() {
|
2019-07-28 04:49:33 +02:00
|
|
|
|
outlineView.window?.makeFirstResponderUnlessDescendantIsFirstResponder(outlineView)
|
2017-12-20 00:24:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
// MARK: - Contextual Menu
|
2018-01-29 01:09:18 +01:00
|
|
|
|
|
|
|
|
|
func contextualMenuForSelectedObjects() -> NSMenu? {
|
2018-02-04 20:19:24 +01:00
|
|
|
|
return menu(for: selectedObjects)
|
2018-01-29 01:09:18 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 22:25:17 +01:00
|
|
|
|
func contextualMenuForClickedRows() -> NSMenu? {
|
|
|
|
|
let row = outlineView.clickedRow
|
|
|
|
|
guard row != -1, let node = nodeForRow(row) else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-08 06:23:18 +01:00
|
|
|
|
if outlineView.selectedRowIndexes.contains(row) {
|
|
|
|
|
// If the clickedRow is part of the selected rows, then do a contextual menu for all the selected rows.
|
|
|
|
|
return contextualMenuForSelectedObjects()
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 22:25:17 +01:00
|
|
|
|
let object = node.representedObject
|
|
|
|
|
return menu(for: [object])
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-28 04:49:33 +02:00
|
|
|
|
// MARK: - NSMenuDelegate
|
2019-02-10 21:27:22 +01:00
|
|
|
|
|
|
|
|
|
public func menuNeedsUpdate(_ menu: NSMenu) {
|
|
|
|
|
menu.removeAllItems()
|
|
|
|
|
guard let contextualMenu = contextualMenuForClickedRows() else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
menu.takeItems(from: contextualMenu)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-02-18 06:08:36 +01:00
|
|
|
|
// MARK: - NSOutlineViewDelegate
|
2017-05-27 19:43:27 +02:00
|
|
|
|
|
|
|
|
|
func outlineView(_ outlineView: NSOutlineView, viewFor tableColumn: NSTableColumn?, item: Any) -> NSView? {
|
|
|
|
|
let node = item as! Node
|
2017-11-19 01:56:36 +01:00
|
|
|
|
|
|
|
|
|
if node.isGroupItem {
|
|
|
|
|
let cell = outlineView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "HeaderCell"), owner: self) as! NSTableCellView
|
|
|
|
|
configureGroupCell(cell, node)
|
|
|
|
|
return cell
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let cell = outlineView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "DataCell"), owner: self) as! SidebarCell
|
2017-05-27 19:43:27 +02:00
|
|
|
|
configure(cell, node)
|
|
|
|
|
|
|
|
|
|
return cell
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 01:56:36 +01:00
|
|
|
|
func outlineView(_ outlineView: NSOutlineView, isGroupItem item: Any) -> Bool {
|
|
|
|
|
let node = item as! Node
|
|
|
|
|
return node.isGroupItem
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-20 06:01:16 +01:00
|
|
|
|
func outlineView(_ outlineView: NSOutlineView, selectionIndexesForProposedSelection proposedSelectionIndexes: IndexSet) -> IndexSet {
|
|
|
|
|
// Don’t allow selecting group items.
|
|
|
|
|
// If any index in IndexSet contains a group item,
|
|
|
|
|
// return the current selection (not a modified version of the proposed selection).
|
|
|
|
|
|
|
|
|
|
for index in proposedSelectionIndexes {
|
|
|
|
|
if let node = nodeForRow(index), node.isGroupItem {
|
|
|
|
|
return outlineView.selectedRowIndexes
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return proposedSelectionIndexes
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 23:43:29 +01:00
|
|
|
|
func outlineView(_ outlineView: NSOutlineView, shouldSelectItem item: Any) -> Bool {
|
|
|
|
|
return !self.outlineView(outlineView, isGroupItem: item)
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
func outlineViewSelectionDidChange(_ notification: Notification) {
|
2019-02-18 03:52:34 +01:00
|
|
|
|
selectionDidChange(selectedObjects.isEmpty ? nil : selectedObjects)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
2018-09-26 04:10:54 +02:00
|
|
|
|
|
|
|
|
|
//MARK: - Node Manipulation
|
|
|
|
|
|
|
|
|
|
func deleteNodes(_ nodes: [Node]) {
|
|
|
|
|
let nodesToDelete = treeController.normalizedSelectedNodes(nodes)
|
|
|
|
|
|
2019-09-01 21:56:27 +02:00
|
|
|
|
guard let undoManager = undoManager, let deleteCommand = DeleteCommand(nodesToDelete: nodesToDelete, undoManager: undoManager, errorHandler: ErrorHandler.present) else {
|
2018-09-26 04:10:54 +02:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
animatingChanges = true
|
|
|
|
|
outlineView.beginUpdates()
|
|
|
|
|
|
|
|
|
|
let indexSetsGroupedByParent = Node.indexSetsGroupedByParent(nodesToDelete)
|
|
|
|
|
for (parent, indexSet) in indexSetsGroupedByParent {
|
|
|
|
|
outlineView.removeItems(at: indexSet, inParent: parent.isRoot ? nil : parent, withAnimation: [.slideDown])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
outlineView.endUpdates()
|
|
|
|
|
|
|
|
|
|
runCommand(deleteCommand)
|
|
|
|
|
animatingChanges = false
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-06 06:00:53 +01:00
|
|
|
|
// MARK: - API
|
|
|
|
|
|
|
|
|
|
func rebuildTreeAndRestoreSelection() {
|
2019-05-19 16:10:19 +02:00
|
|
|
|
let savedAccounts = accountNodes
|
2019-02-06 06:00:53 +01:00
|
|
|
|
let savedSelection = selectedNodes
|
2019-05-19 16:10:19 +02:00
|
|
|
|
|
2019-02-06 06:00:53 +01:00
|
|
|
|
rebuildTreeAndReloadDataIfNeeded()
|
|
|
|
|
restoreSelection(to: savedSelection, sendNotificationIfChanged: true)
|
2019-05-02 13:45:56 +02:00
|
|
|
|
|
|
|
|
|
// Automatically expand any new or newly active accounts
|
|
|
|
|
AccountManager.shared.activeAccounts.forEach { account in
|
|
|
|
|
if !savedAccounts.contains(account) {
|
|
|
|
|
let accountNode = treeController.nodeInTreeRepresentingObject(account)
|
|
|
|
|
outlineView.expandItem(accountNode)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-06 06:00:53 +01:00
|
|
|
|
}
|
2019-05-19 16:10:19 +02:00
|
|
|
|
|
2019-10-03 18:39:48 +02:00
|
|
|
|
func deepLinkRevealAndSelect(for userInfo: [AnyHashable : Any]) {
|
|
|
|
|
guard let accountNode = findAccountNode(userInfo), let feedNode = findFeedNode(userInfo, beginningAt: accountNode) else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
revealAndSelectRepresentedObject(feedNode.representedObject)
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-13 07:02:51 +01:00
|
|
|
|
// MARK: - NSUserInterfaceValidations
|
2018-02-12 07:10:28 +01:00
|
|
|
|
|
|
|
|
|
extension SidebarViewController: NSUserInterfaceValidations {
|
|
|
|
|
|
|
|
|
|
func validateUserInterfaceItem(_ item: NSValidatedUserInterfaceItem) -> Bool {
|
|
|
|
|
if item.action == #selector(copy(_:)) {
|
|
|
|
|
return NSPasteboard.general.canCopyAtLeastOneObject(selectedObjects)
|
|
|
|
|
}
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
//MARK: - Private
|
|
|
|
|
|
|
|
|
|
private extension SidebarViewController {
|
|
|
|
|
|
2019-05-19 16:10:19 +02:00
|
|
|
|
var accountNodes: [Account] {
|
|
|
|
|
return treeController.rootNode.childNodes.compactMap { $0.representedObject as? Account }
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
var selectedNodes: [Node] {
|
2017-12-20 21:59:31 +01:00
|
|
|
|
if let nodes = outlineView.selectedItems as? [Node] {
|
|
|
|
|
return nodes
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
2017-12-20 21:59:31 +01:00
|
|
|
|
return [Node]()
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
2017-12-20 21:59:31 +01:00
|
|
|
|
|
|
|
|
|
var singleSelectedNode: Node? {
|
|
|
|
|
guard selectedNodes.count == 1 else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
return selectedNodes.first!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var singleSelectedFeed: Feed? {
|
|
|
|
|
guard let node = singleSelectedNode else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
return node.representedObject as? Feed
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
func rebuildTreeAndReloadDataIfNeeded() {
|
2017-11-05 21:14:36 +01:00
|
|
|
|
if !animatingChanges && !BatchUpdate.shared.isPerforming {
|
2019-08-24 00:52:07 +02:00
|
|
|
|
treeController.rebuild()
|
|
|
|
|
outlineView.reloadData()
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-02-03 02:01:40 +01:00
|
|
|
|
|
|
|
|
|
func restoreSelection(to nodes: [Node], sendNotificationIfChanged: Bool) {
|
|
|
|
|
if selectedNodes == nodes { // Nothing to do?
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var indexes = IndexSet()
|
|
|
|
|
for node in nodes {
|
|
|
|
|
let row = outlineView.row(forItem: node as Any)
|
|
|
|
|
if row > -1 {
|
|
|
|
|
indexes.insert(row)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
outlineView.selectRowIndexes(indexes, byExtendingSelection: false)
|
|
|
|
|
|
|
|
|
|
if selectedNodes != nodes && sendNotificationIfChanged {
|
2019-02-18 03:52:34 +01:00
|
|
|
|
selectionDidChange(selectedObjects)
|
2019-02-03 02:01:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-18 03:52:34 +01:00
|
|
|
|
func selectionDidChange(_ selectedObjects: [AnyObject]?) {
|
2019-02-18 06:43:51 +01:00
|
|
|
|
delegate?.sidebarSelectionDidChange(self, selectedObjects: selectedObjects)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-05 07:05:20 +01:00
|
|
|
|
func updateUnreadCounts(for objects: [AnyObject]) {
|
2017-10-19 06:53:45 +02:00
|
|
|
|
// On selection, update unread counts for folders and feeds.
|
|
|
|
|
// For feeds, actually fetch from database.
|
|
|
|
|
|
|
|
|
|
for object in objects {
|
|
|
|
|
if let feed = object as? Feed, let account = feed.account {
|
|
|
|
|
account.updateUnreadCounts(for: Set([feed]))
|
|
|
|
|
}
|
2017-10-22 01:37:40 +02:00
|
|
|
|
else if let folder = object as? Folder, let account = folder.account {
|
|
|
|
|
account.updateUnreadCounts(for: folder.flattenedFeeds())
|
2017-10-19 06:53:45 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
func nodeForItem(_ item: AnyObject?) -> Node {
|
|
|
|
|
if item == nil {
|
|
|
|
|
return treeController.rootNode
|
|
|
|
|
}
|
|
|
|
|
return item as! Node
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func nodeForRow(_ row: Int) -> Node? {
|
|
|
|
|
if row < 0 || row >= outlineView.numberOfRows {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let node = outlineView.item(atRow: row) as? Node {
|
|
|
|
|
return node
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func rowHasAtLeastOneUnreadArticle(_ row: Int) -> Bool {
|
|
|
|
|
if let oneNode = nodeForRow(row) {
|
|
|
|
|
if let unreadCountProvider = oneNode.representedObject as? UnreadCountProvider {
|
|
|
|
|
if unreadCountProvider.unreadCount > 0 {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-16 02:50:31 +01:00
|
|
|
|
func rowIsGroupItem(_ row: Int) -> Bool {
|
|
|
|
|
if let node = nodeForRow(row), outlineView.isGroupItem(node) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func nextSelectableRowWithUnreadArticle() -> Int? {
|
|
|
|
|
// Skip group items, because they should never be selected.
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
let selectedRow = outlineView.selectedRow
|
|
|
|
|
let numberOfRows = outlineView.numberOfRows
|
|
|
|
|
var row = selectedRow + 1
|
|
|
|
|
|
|
|
|
|
while (row < numberOfRows) {
|
2018-02-16 02:50:31 +01:00
|
|
|
|
if rowHasAtLeastOneUnreadArticle(row) && !rowIsGroupItem(row) {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return row
|
|
|
|
|
}
|
|
|
|
|
row += 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
row = 0
|
|
|
|
|
while (row <= selectedRow) {
|
2018-02-16 02:50:31 +01:00
|
|
|
|
if rowHasAtLeastOneUnreadArticle(row) && !rowIsGroupItem(row) {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return row
|
|
|
|
|
}
|
|
|
|
|
row += 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-03 18:39:48 +02:00
|
|
|
|
func findAccountNode(_ userInfo: [AnyHashable : Any]?) -> Node? {
|
|
|
|
|
guard let accountID = userInfo?[DeepLinkKey.accountID.rawValue] as? String else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let node = treeController.rootNode.descendantNode(where: { ($0.representedObject as? Account)?.accountID == accountID }) {
|
|
|
|
|
return node
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
guard let accountName = userInfo?[DeepLinkKey.accountName.rawValue] as? String else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-03 22:49:27 +02:00
|
|
|
|
if let node = treeController.rootNode.descendantNode(where: { ($0.representedObject as? Account)?.nameForDisplay == accountName }) {
|
2019-10-03 18:39:48 +02:00
|
|
|
|
return node
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func findFeedNode(_ userInfo: [AnyHashable : Any]?, beginningAt startingNode: Node) -> Node? {
|
|
|
|
|
guard let feedID = userInfo?[DeepLinkKey.feedID.rawValue] as? String else {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
if let node = startingNode.descendantNode(where: { ($0.representedObject as? Feed)?.feedID == feedID }) {
|
|
|
|
|
return node
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
func configure(_ cell: SidebarCell, _ node: Node) {
|
2017-11-25 06:39:59 +01:00
|
|
|
|
cell.cellAppearance = sidebarCellAppearance
|
2017-05-27 19:43:27 +02:00
|
|
|
|
cell.name = nameFor(node)
|
2017-11-26 01:16:03 +01:00
|
|
|
|
configureUnreadCount(cell, node)
|
2017-12-14 06:16:52 +01:00
|
|
|
|
configureFavicon(cell, node)
|
2017-12-17 19:51:46 +01:00
|
|
|
|
cell.shouldShowImage = node.representedObject is SmallIconProvider
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 00:21:35 +01:00
|
|
|
|
func configureUnreadCount(_ cell: SidebarCell, _ node: Node) {
|
|
|
|
|
cell.unreadCount = unreadCountFor(node)
|
2017-12-14 06:16:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func configureFavicon(_ cell: SidebarCell, _ node: Node) {
|
2019-11-06 01:05:57 +01:00
|
|
|
|
cell.image = imageFor(node)?.image
|
2017-11-26 00:21:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 01:56:36 +01:00
|
|
|
|
func configureGroupCell(_ cell: NSTableCellView, _ node: Node) {
|
|
|
|
|
cell.textField?.stringValue = nameFor(node)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-06 01:05:57 +01:00
|
|
|
|
func imageFor(_ node: Node) -> IconImage? {
|
2017-12-17 19:51:46 +01:00
|
|
|
|
if let smallIconProvider = node.representedObject as? SmallIconProvider {
|
|
|
|
|
return smallIconProvider.smallIcon
|
2017-11-25 06:57:28 +01:00
|
|
|
|
}
|
2017-12-17 19:51:46 +01:00
|
|
|
|
return nil
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func nameFor(_ node: Node) -> String {
|
|
|
|
|
if let displayNameProvider = node.representedObject as? DisplayNameProvider {
|
|
|
|
|
return displayNameProvider.nameForDisplay
|
|
|
|
|
}
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func unreadCountFor(_ node: Node) -> Int {
|
2019-07-28 07:53:27 +02:00
|
|
|
|
// If this node is the one and only selection,
|
|
|
|
|
// then the unread count comes from the timeline.
|
|
|
|
|
// This ensures that any transients in the timeline
|
|
|
|
|
// are accounted for in the unread count.
|
2019-08-14 05:29:04 +02:00
|
|
|
|
if nodeShouldGetUnreadCountFromTimeline(node) {
|
2019-07-28 07:53:27 +02:00
|
|
|
|
return delegate?.unreadCount(for: node.representedObject) ?? 0
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
if let unreadCountProvider = node.representedObject as? UnreadCountProvider {
|
|
|
|
|
return unreadCountProvider.unreadCount
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-14 05:29:04 +02:00
|
|
|
|
func nodeShouldGetUnreadCountFromTimeline(_ node: Node) -> Bool {
|
2019-08-14 06:07:39 +02:00
|
|
|
|
// Only if it’s selected and it’s the only node selected.
|
|
|
|
|
return selectedNodes.count == 1 && selectedNodes.first! === node
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func nodeRepresentsTodayFeed(_ node: Node) -> Bool {
|
2019-08-14 05:29:04 +02:00
|
|
|
|
guard let smartFeed = node.representedObject as? SmartFeed else {
|
|
|
|
|
return false
|
|
|
|
|
}
|
2019-08-14 06:07:39 +02:00
|
|
|
|
return smartFeed === SmartFeedsController.shared.todayFeed
|
2019-08-14 05:29:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:14:42 +01:00
|
|
|
|
func cellForRowView(_ rowView: NSTableRowView) -> SidebarCell? {
|
|
|
|
|
return rowView.view(atColumn: 0) as? SidebarCell
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 01:16:03 +01:00
|
|
|
|
func applyToAvailableCells(_ callback: (SidebarCell, Node) -> Void) {
|
2017-11-25 20:14:42 +01:00
|
|
|
|
outlineView.enumerateAvailableRowViews { (rowView: NSTableRowView, row: Int) -> Void in
|
|
|
|
|
guard let cell = cellForRowView(rowView), let node = nodeForRow(row) else {
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-11-26 01:16:03 +01:00
|
|
|
|
callback(cell, node)
|
2017-11-25 20:14:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 01:16:03 +01:00
|
|
|
|
func applyToCellsForRepresentedObject(_ representedObject: AnyObject, _ callback: (SidebarCell, Node) -> Void) {
|
|
|
|
|
applyToAvailableCells { (cell, node) in
|
2019-05-22 07:23:26 +02:00
|
|
|
|
if node.representsSidebarObject(representedObject) {
|
2017-11-26 01:16:03 +01:00
|
|
|
|
callback(cell, node)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 01:16:03 +01:00
|
|
|
|
func configureCellsForRepresentedObject(_ representedObject: AnyObject) {
|
|
|
|
|
applyToCellsForRepresentedObject(representedObject, configure)
|
2017-05-27 19:43:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-14 06:07:39 +02:00
|
|
|
|
func configureUnreadCountForCellsForRepresentedObjects(_ representedObjects: [AnyObject]?) {
|
|
|
|
|
guard let representedObjects = representedObjects else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
for object in representedObjects {
|
|
|
|
|
applyToCellsForRepresentedObject(object, configureUnreadCount)
|
|
|
|
|
}
|
2017-11-26 00:21:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 19:43:27 +02:00
|
|
|
|
@discardableResult
|
2017-11-05 07:05:20 +01:00
|
|
|
|
func revealAndSelectRepresentedObject(_ representedObject: AnyObject) -> Bool {
|
2017-05-27 19:43:27 +02:00
|
|
|
|
return outlineView.revealAndSelectRepresentedObject(representedObject, treeController)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-22 07:23:26 +02:00
|
|
|
|
private extension Node {
|
|
|
|
|
|
|
|
|
|
func representsSidebarObject(_ object: AnyObject) -> Bool {
|
|
|
|
|
if representedObject === object {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
if let feed1 = object as? Feed, let feed2 = representedObject as? Feed {
|
|
|
|
|
return feed1 == feed2
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
}
|