NetNewsWire/Evergreen/MainWindow/Sidebar/SidebarViewController.swift

507 lines
13 KiB
Swift
Raw Normal View History

2017-05-27 19:43:27 +02:00
//
// SidebarViewController.swift
// Evergreen
//
// Created by Brent Simmons on 7/26/15.
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
//
import Cocoa
import RSTree
import Data
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
@objc class SidebarViewController: NSViewController, NSOutlineViewDelegate, NSOutlineViewDataSource, UndoableCommandRunner {
2017-05-27 19:43:27 +02:00
@IBOutlet var outlineView: SidebarOutlineView!
2017-10-19 22:27:59 +02:00
let treeControllerDelegate = SidebarTreeControllerDelegate()
lazy var treeController: TreeController = {
TreeController(delegate: treeControllerDelegate)
}()
var undoableCommands = [UndoableCommand]()
2017-11-05 21:14:36 +01:00
private var animatingChanges = false
private var sidebarCellAppearance: SidebarCellAppearance!
2017-05-27 19:43:27 +02:00
//MARK: NSViewController
override func viewDidLoad() {
sidebarCellAppearance = SidebarCellAppearance(theme: appDelegate.currentTheme, fontSize: AppDefaults.shared.sidebarFontSize)
outlineView.sidebarViewController = self
outlineView.setDraggingSourceOperationMask(.move, forLocal: true)
outlineView.setDraggingSourceOperationMask(.copy, forLocal: false)
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)
2017-10-22 00:56:01 +02:00
NotificationCenter.default.addObserver(self, selector: #selector(userDidAddFeed(_:)), name: .UserDidAddFeed, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(batchUpdateDidPerform(_:)), name: .BatchUpdateDidPerform, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(faviconDidBecomeAvailable(_:)), name: .FaviconDidBecomeAvailable, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(feedSettingDidChange(_:)), name: .FeedSettingDidChange, object: nil)
2017-05-27 19:43:27 +02:00
outlineView.reloadData()
// 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
}
//MARK: Notifications
2017-09-17 21:34:10 +02:00
@objc dynamic func unreadCountDidChange(_ note: Notification) {
2017-05-27 19:43:27 +02:00
guard let representedObject = note.object else {
2017-05-27 19:43:27 +02:00
return
}
configureUnreadCountForCellsForRepresentedObject(representedObject as AnyObject)
2017-05-27 19:43:27 +02:00
}
2017-10-19 22:27:59 +02:00
@objc dynamic func containerChildrenDidChange(_ note: Notification) {
2017-05-27 19:43:27 +02:00
rebuildTreeAndReloadDataIfNeeded()
}
@objc dynamic func batchUpdateDidPerform(_ notification: Notification) {
2017-05-27 19:43:27 +02:00
rebuildTreeAndReloadDataIfNeeded()
}
@objc dynamic func userDidAddFeed(_ notification: Notification) {
2017-05-27 19:43:27 +02:00
guard let feed = notification.userInfo?[UserInfoKey.feed] else {
2017-05-27 19:43:27 +02:00
return
}
revealAndSelectRepresentedObject(feed as AnyObject)
2017-05-27 19:43:27 +02:00
}
@objc func faviconDidBecomeAvailable(_ note: Notification) {
applyToAvailableCells(configureFavicon)
}
@objc func feedSettingDidChange(_ note: Notification) {
guard let feed = note.object as? Feed else {
return
}
configureCellsForRepresentedObject(feed)
}
2017-05-27 19:43:27 +02:00
// MARK: Actions
@IBAction func delete(_ sender: AnyObject?) {
if outlineView.selectionIsEmpty {
return
}
let nodesToDelete = treeController.normalizedSelectedNodes(selectedNodes)
guard let undoManager = undoManager, let deleteCommand = DeleteFromSidebarCommand(nodesToDelete: nodesToDelete, undoManager: undoManager) else {
return
}
2017-11-05 21:14:36 +01:00
animatingChanges = true
2017-05-27 19:43:27 +02:00
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)
2017-11-05 21:14:36 +01:00
animatingChanges = false
2017-05-27 19:43:27 +02:00
}
// MARK: Navigation
func canGoToNextUnread() -> Bool {
if let _ = rowContainingNextUnread() {
return true
}
return false
}
func goToNextUnread() {
guard let row = rowContainingNextUnread() else {
assertionFailure("goToNextUnread called before checking if there is a next unread.")
return
}
outlineView.selectRowIndexes(IndexSet([row]), byExtendingSelection: false)
2017-09-17 21:54:08 +02:00
NSApplication.shared.sendAction(NSSelectorFromString("nextUnread:"), to: nil, from: self)
2017-05-27 19:43:27 +02:00
}
func focus() {
guard let window = outlineView.window else {
return
}
window.makeFirstResponderUnlessDescendantIsFirstResponder(outlineView)
}
2017-05-27 19:43:27 +02:00
// MARK: NSOutlineViewDelegate
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
}
func outlineView(_ outlineView: NSOutlineView, selectionIndexesForProposedSelection proposedSelectionIndexes: IndexSet) -> IndexSet {
// Dont 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-05-27 19:43:27 +02:00
func outlineViewSelectionDidChange(_ notification: Notification) {
// TODO: support multiple selection
let selectedRow = self.outlineView.selectedRow
if selectedRow < 0 || selectedRow == NSNotFound {
postSidebarSelectionDidChangeNotification(nil)
return
}
if let selectedNode = self.outlineView.item(atRow: selectedRow) as? Node {
2017-10-02 09:53:58 +02:00
postSidebarSelectionDidChangeNotification([selectedNode.representedObject])
2017-05-27 19:43:27 +02:00
}
}
// MARK: NSOutlineViewDataSource
2017-05-27 19:43:27 +02:00
func outlineView(_ outlineView: NSOutlineView, numberOfChildrenOfItem item: Any?) -> Int {
return nodeForItem(item as AnyObject?).numberOfChildNodes
}
func outlineView(_ outlineView: NSOutlineView, child index: Int, ofItem item: Any?) -> Any {
return nodeForItem(item as AnyObject?).childNodes![index]
}
func outlineView(_ outlineView: NSOutlineView, isItemExpandable item: Any) -> Bool {
return nodeForItem(item as AnyObject?).canHaveChildNodes
}
func outlineView(_ outlineView: NSOutlineView, pasteboardWriterForItem item: Any) -> NSPasteboardWriting? {
let node = nodeForItem(item as AnyObject?)
if let feed = node.representedObject as? Feed {
return FeedPasteboardWriter(feed: feed)
}
return nil
}
2017-05-27 19:43:27 +02:00
}
//MARK: - Private
private extension SidebarViewController {
var selectedNodes: [Node] {
get {
if let nodes = outlineView.selectedItems as? [Node] {
return nodes
}
return [Node]()
}
}
func rebuildTreeAndReloadDataIfNeeded() {
2017-11-05 21:14:36 +01:00
if !animatingChanges && !BatchUpdate.shared.isPerforming {
2017-05-27 19:43:27 +02:00
treeController.rebuild()
outlineView.reloadData()
}
}
func postSidebarSelectionDidChangeNotification(_ selectedObjects: [AnyObject]?) {
2017-09-24 21:24:44 +02:00
var userInfo = UserInfoDictionary()
if let objects = selectedObjects {
userInfo[UserInfoKey.objects] = objects
2017-05-27 19:43:27 +02:00
}
userInfo[UserInfoKey.view] = outlineView
NotificationCenter.default.post(name: .SidebarSelectionDidChange, object: self, userInfo: userInfo)
2017-05-27 19:43:27 +02: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
}
func rowContainingNextUnread() -> Int? {
let selectedRow = outlineView.selectedRow
let numberOfRows = outlineView.numberOfRows
var row = selectedRow + 1
while (row < numberOfRows) {
if rowHasAtLeastOneUnreadArticle(row) {
return row
}
row += 1
}
row = 0
while (row <= selectedRow) {
if rowHasAtLeastOneUnreadArticle(row) {
return row
}
row += 1
}
return nil
}
func configure(_ cell: SidebarCell, _ node: Node) {
cell.cellAppearance = sidebarCellAppearance
2017-05-27 19:43:27 +02:00
cell.objectValue = node
cell.name = nameFor(node)
configureUnreadCount(cell, node)
configureFavicon(cell, node)
cell.shouldShowImage = node.representedObject is SmallIconProvider
2017-05-27 19:43:27 +02:00
}
func configureUnreadCount(_ cell: SidebarCell, _ node: Node) {
cell.unreadCount = unreadCountFor(node)
}
func configureFavicon(_ cell: SidebarCell, _ node: Node) {
cell.image = imageFor(node)
}
2017-11-19 01:56:36 +01:00
func configureGroupCell(_ cell: NSTableCellView, _ node: Node) {
cell.objectValue = node
cell.textField?.stringValue = nameFor(node)
}
2017-05-27 19:43:27 +02:00
func imageFor(_ node: Node) -> NSImage? {
if let smallIconProvider = node.representedObject as? SmallIconProvider {
return smallIconProvider.smallIcon
}
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 {
if let unreadCountProvider = node.representedObject as? UnreadCountProvider {
return unreadCountProvider.unreadCount
}
return 0
}
func cellForRowView(_ rowView: NSTableRowView) -> SidebarCell? {
return rowView.view(atColumn: 0) as? SidebarCell
}
2017-05-27 19:43:27 +02:00
func availableSidebarCells() -> [SidebarCell] {
var cells = [SidebarCell]()
outlineView.enumerateAvailableRowViews { (rowView: NSTableRowView, _: Int) -> Void in
if let cell = cellForRowView(rowView) {
cells += [cell]
2017-05-27 19:43:27 +02:00
}
}
return cells
}
func configureAvailableCells() {
applyToAvailableCells(configure)
}
func applyToAvailableCells(_ callback: (SidebarCell, Node) -> Void) {
outlineView.enumerateAvailableRowViews { (rowView: NSTableRowView, row: Int) -> Void in
guard let cell = cellForRowView(rowView), let node = nodeForRow(row) else {
return
}
callback(cell, node)
}
}
func applyToCellsForRepresentedObject(_ representedObject: AnyObject, _ callback: (SidebarCell, Node) -> Void) {
2017-05-27 19:43:27 +02:00
applyToAvailableCells { (cell, node) in
if node.representedObject === representedObject {
callback(cell, node)
2017-05-27 19:43:27 +02:00
}
}
}
func configureCellsForRepresentedObject(_ representedObject: AnyObject) {
2017-05-27 19:43:27 +02:00
applyToCellsForRepresentedObject(representedObject, configure)
2017-05-27 19:43:27 +02:00
}
func configureUnreadCountForCellsForRepresentedObject(_ representedObject: AnyObject) {
applyToCellsForRepresentedObject(representedObject, configureUnreadCount)
}
2017-05-27 19:43:27 +02:00
@discardableResult
func revealAndSelectRepresentedObject(_ representedObject: AnyObject) -> Bool {
2017-05-27 19:43:27 +02:00
return outlineView.revealAndSelectRepresentedObject(representedObject, treeController)
}
2017-10-02 22:15:07 +02:00
func folderParentForNode(_ node: Node) -> Container? {
2017-05-27 19:43:27 +02:00
2017-10-02 22:15:07 +02:00
if let folder = node.parent?.representedObject as? Container {
2017-05-27 19:43:27 +02:00
return folder
}
if let feed = node.representedObject as? Feed {
return feed.account
}
if let folder = node.representedObject as? Folder {
return folder.account
}
return nil
}
func deleteItemForNode(_ node: Node) {
2017-10-02 22:15:07 +02:00
// if let folder = folderParentForNode(node) {
// folder.deleteItems([node.representedObject])
// }
2017-05-27 19:43:27 +02:00
}
func deleteItemsForNodes(_ nodes: [Node]) {
nodes.forEach { (oneNode) in
deleteItemForNode(oneNode)
}
}
func commonParentItemForNodes(_ nodes: [Node]) -> Node? {
if nodes.isEmpty {
return nil
}
guard let parent = nodes.first!.parent else {
return nil
}
for node in nodes {
if node.parent !== parent {
return nil
}
}
return parent
}
2017-05-27 19:43:27 +02:00
}
extension Feed: SmallIconProvider {
var smallIcon: NSImage? {
return appDelegate.faviconDownloader.favicon(for: self)
}
}