2018-01-20 19:06:07 -08:00
|
|
|
//
|
|
|
|
// FeedInspectorViewController.swift
|
2018-08-28 22:18:24 -07:00
|
|
|
// NetNewsWire
|
2018-01-20 19:06:07 -08:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 1/20/18.
|
|
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import AppKit
|
2018-07-23 18:29:08 -07:00
|
|
|
import Articles
|
2018-07-28 12:16:14 -07:00
|
|
|
import Account
|
2018-01-20 19:06:07 -08:00
|
|
|
|
2018-01-20 22:36:17 -08:00
|
|
|
final class FeedInspectorViewController: NSViewController, Inspector {
|
2018-01-20 19:06:07 -08:00
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
@IBOutlet var imageView: NSImageView?
|
|
|
|
@IBOutlet var nameTextField: NSTextField?
|
|
|
|
@IBOutlet var homePageURLTextField: NSTextField?
|
|
|
|
@IBOutlet var urlTextField: NSTextField?
|
|
|
|
|
|
|
|
private var feed: Feed? {
|
|
|
|
didSet {
|
2018-01-21 21:24:25 -08:00
|
|
|
if feed != oldValue {
|
|
|
|
updateUI()
|
|
|
|
}
|
2018-01-21 21:01:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Inspector
|
2018-01-21 20:35:44 -08:00
|
|
|
|
2018-01-20 22:36:17 -08:00
|
|
|
let isFallbackInspector = false
|
2018-01-21 20:35:44 -08:00
|
|
|
var objects: [Any]? {
|
|
|
|
didSet {
|
2018-01-21 21:01:18 -08:00
|
|
|
updateFeed()
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 22:36:17 -08:00
|
|
|
|
|
|
|
func canInspect(_ objects: [Any]) -> Bool {
|
|
|
|
|
|
|
|
return objects.count == 1 && objects.first is Feed
|
|
|
|
}
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
// MARK: NSViewController
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
imageView!.wantsLayer = true
|
2019-04-13 12:18:55 -07:00
|
|
|
imageView!.layer?.cornerRadius = 4.0
|
2018-01-21 21:01:18 -08:00
|
|
|
|
|
|
|
updateUI()
|
|
|
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(imageDidBecomeAvailable(_:)), name: .ImageDidBecomeAvailable, object: nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Notifications
|
|
|
|
|
|
|
|
@objc func imageDidBecomeAvailable(_ note: Notification) {
|
|
|
|
|
|
|
|
updateImage()
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-21 21:31:26 -08:00
|
|
|
extension FeedInspectorViewController: NSTextFieldDelegate {
|
|
|
|
|
2018-12-09 12:32:33 -08:00
|
|
|
func controlTextDidChange(_ note: Notification) {
|
2018-01-23 21:49:33 -08:00
|
|
|
|
|
|
|
guard let feed = feed, let nameTextField = nameTextField else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
feed.editedName = nameTextField.stringValue
|
|
|
|
}
|
2018-01-21 21:31:26 -08:00
|
|
|
}
|
|
|
|
|
2018-01-21 20:35:44 -08:00
|
|
|
private extension FeedInspectorViewController {
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
func updateFeed() {
|
|
|
|
|
|
|
|
guard let objects = objects, objects.count == 1, let singleFeed = objects.first as? Feed else {
|
|
|
|
feed = nil
|
|
|
|
return
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
2018-01-21 21:01:18 -08:00
|
|
|
feed = singleFeed
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func updateUI() {
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
updateImage()
|
|
|
|
updateName()
|
|
|
|
updateHomePageURL()
|
|
|
|
updateFeedURL()
|
2018-01-21 20:35:44 -08:00
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
view.needsLayout = true
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
func updateImage() {
|
2018-01-21 20:35:44 -08:00
|
|
|
|
2018-01-21 21:04:52 -08:00
|
|
|
guard let feed = feed else {
|
2018-01-21 21:01:18 -08:00
|
|
|
imageView?.image = nil
|
|
|
|
return
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
|
2018-01-21 21:04:52 -08:00
|
|
|
if let feedIcon = appDelegate.feedIconDownloader.icon(for: feed) {
|
|
|
|
imageView?.image = feedIcon
|
|
|
|
return
|
|
|
|
}
|
2018-01-21 21:24:25 -08:00
|
|
|
|
2018-01-21 21:04:52 -08:00
|
|
|
if let favicon = appDelegate.faviconDownloader.favicon(for: feed) {
|
|
|
|
if favicon.size.height < 16.0 && favicon.size.width < 16.0 {
|
|
|
|
favicon.size = NSSize(width: 16, height: 16)
|
|
|
|
}
|
|
|
|
imageView?.image = favicon
|
|
|
|
return
|
|
|
|
}
|
2018-01-21 20:35:44 -08:00
|
|
|
|
2019-05-21 05:42:40 -05:00
|
|
|
imageView?.image = AppAssets.genericFeedImage
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
func updateName() {
|
2018-01-21 20:35:44 -08:00
|
|
|
|
2018-01-22 22:01:25 -08:00
|
|
|
guard let nameTextField = nameTextField else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let name = feed?.editedName ?? feed?.name ?? ""
|
|
|
|
if nameTextField.stringValue != name {
|
|
|
|
nameTextField.stringValue = name
|
|
|
|
}
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
func updateHomePageURL() {
|
2018-01-21 20:35:44 -08:00
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
homePageURLTextField?.stringValue = feed?.homePageURL ?? ""
|
2018-01-21 20:35:44 -08:00
|
|
|
}
|
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
func updateFeedURL() {
|
2018-01-20 22:36:17 -08:00
|
|
|
|
2018-01-21 21:01:18 -08:00
|
|
|
urlTextField?.stringValue = feed?.url ?? ""
|
2018-01-20 22:36:17 -08:00
|
|
|
}
|
2018-01-20 21:35:59 -08:00
|
|
|
}
|