NetNewsWire/Evergreen/AppNotifications.swift

58 lines
1.3 KiB
Swift
Raw Normal View History

2017-05-26 22:10:30 +02:00
//
// AppNotifications.swift
2017-05-26 22:22:31 +02:00
// Evergreen
2017-05-26 22:10:30 +02:00
//
// Created by Brent Simmons on 8/30/15.
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
//
2017-09-24 21:24:44 +02:00
import Cocoa
import Data
2017-05-26 22:10:30 +02:00
extension Notification.Name {
static let SidebarSelectionDidChange = Notification.Name("SidebarSelectionDidChangeNotification")
static let TimelineSelectionDidChange = Notification.Name("TimelineSelectionDidChangeNotification")
static let AppNavigationKeyPressed = Notification.Name("AppNavigationKeyPressedNotification")
}
2017-09-24 21:24:44 +02:00
extension Notification {
var appInfo: AppInfo? {
get {
return AppInfo.pullFromUserInfo(userInfo)
}
}
}
2017-09-24 21:24:44 +02:00
typealias UserInfoDictionary = [AnyHashable: Any]
final class AppInfo {
// These are things commonly passed around in Evergreen notifications.
// Rather than setting these things using strings, we have a single AppInfo class
// that the userInfo dictionary may contain.
var view: NSView?
var article: Article?
var articles: Set<Article>?
var navigationKey: Int?
var objects: [AnyObject]?
static let appInfoKey = "appInfo"
var userInfo: UserInfoDictionary {
get {
return [AppInfo.appInfoKey: self] as UserInfoDictionary
}
}
static func pullFromUserInfo(_ userInfo: UserInfoDictionary?) -> AppInfo? {
return userInfo?[appInfoKey] as? AppInfo
}
}
2017-05-26 22:10:30 +02:00