NetNewsWire/Mac/Preferences/Accounts/AccountsPreferencesViewCont...

128 lines
3.2 KiB
Swift
Raw Normal View History

2019-03-18 03:01:28 +01:00
//
// AccountsPreferencesViewController.swift
// NetNewsWire
//
// Created by Brent Simmons on 3/17/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import AppKit
import Account
final class AccountsPreferencesViewController: NSViewController {
@IBOutlet weak var tableView: NSTableView!
@IBOutlet weak var detailView: NSView!
private var sortedAccounts = [Account]()
override func viewDidLoad() {
super.viewDidLoad()
2019-05-01 17:28:13 +02:00
updateSortedAccounts()
tableView.delegate = self
tableView.dataSource = self
NotificationCenter.default.addObserver(self, selector: #selector(displayNameDidChange(_:)), name: .DisplayNameDidChange, object: nil)
2019-05-01 19:37:13 +02:00
NotificationCenter.default.addObserver(self, selector: #selector(accountsDidChangeNotification(_:)), name: .AccountsDidChangeNotification, object: nil)
showController(AccountsAddViewController())
2019-05-01 17:28:13 +02:00
}
2019-05-01 17:28:13 +02:00
@IBAction func addAccount(_ sender: Any) {
tableView.selectRowIndexes([], byExtendingSelection: false)
showController(AccountsAddViewController())
}
2019-05-01 17:28:13 +02:00
@IBAction func removeAccount(_ sender: Any) {
}
@objc func displayNameDidChange(_ note: Notification) {
2019-05-01 17:28:13 +02:00
updateSortedAccounts()
tableView.reloadData()
}
2019-05-01 19:37:13 +02:00
@objc func accountsDidChangeNotification(_ note: Notification) {
updateSortedAccounts()
tableView.reloadData()
}
}
// MARK: - NSTableViewDataSource
extension AccountsPreferencesViewController: NSTableViewDataSource {
func numberOfRows(in tableView: NSTableView) -> Int {
return sortedAccounts.count
}
func tableView(_ tableView: NSTableView, objectValueFor tableColumn: NSTableColumn?, row: Int) -> Any? {
return sortedAccounts[row]
}
}
// MARK: - NSTableViewDelegate
extension AccountsPreferencesViewController: NSTableViewDelegate {
private static let cellIdentifier = NSUserInterfaceItemIdentifier(rawValue: "AccountCell")
func tableView(_ tableView: NSTableView, viewFor tableColumn: NSTableColumn?, row: Int) -> NSView? {
if let cell = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "Cell"), owner: nil) as? NSTableCellView {
2019-05-01 13:49:50 +02:00
let account = sortedAccounts[row]
cell.textField?.stringValue = account.nameForDisplay
switch account.type {
case .onMyMac:
cell.imageView?.image = AppImages.accountLocal
case .feedbin:
cell.imageView?.image = NSImage(named: "accountFeedbin")
default:
break
}
return cell
}
return nil
}
func tableViewSelectionDidChange(_ notification: Notification) {
let selectedRow = tableView.selectedRow
guard selectedRow != -1 else {
return
}
let account = sortedAccounts[selectedRow]
let controller = AccountsDetailViewController(account: account)
2019-05-01 17:28:13 +02:00
showController(controller)
}
}
// MARK: - Private
private extension AccountsPreferencesViewController {
func updateSortedAccounts() {
sortedAccounts = AccountManager.shared.sortedAccounts
}
2019-05-01 17:28:13 +02:00
func showController(_ controller: NSViewController) {
if let controller = children.first {
children.removeAll()
controller.view.removeFromSuperview()
}
2019-05-01 17:28:13 +02:00
addChild(controller)
controller.view.translatesAutoresizingMaskIntoConstraints = false
detailView.addSubview(controller.view)
detailView.rs_addFullSizeConstraints(forSubview: controller.view)
}
}