51 lines
1.4 KiB
Swift
51 lines
1.4 KiB
Swift
//
|
|
// NSNotification+Operation.swift
|
|
//
|
|
//
|
|
// Created by Jackson Harper on 1/31/22.
|
|
//
|
|
|
|
import Foundation
|
|
import Models
|
|
|
|
public extension NSNotification {
|
|
static let PushJSONArticle = Notification.Name("PushJSONArticle")
|
|
static let OperationSuccess = Notification.Name("OperationSuccess")
|
|
static let OperationFailure = Notification.Name("OperationFailure")
|
|
|
|
static var pushFeedItemPublisher: NotificationCenter.Publisher {
|
|
NotificationCenter.default.publisher(for: PushJSONArticle)
|
|
}
|
|
|
|
static var operationSuccessPublisher: NotificationCenter.Publisher {
|
|
NotificationCenter.default.publisher(for: OperationSuccess)
|
|
}
|
|
|
|
static var operationFailedPublisher: NotificationCenter.Publisher {
|
|
NotificationCenter.default.publisher(for: OperationFailure)
|
|
}
|
|
|
|
internal var operationMessage: String? {
|
|
if let message = userInfo?["message"] as? String {
|
|
return message
|
|
}
|
|
return nil
|
|
}
|
|
|
|
static func pushJSONArticle(article: JSONArticle) {
|
|
NotificationCenter.default.post(
|
|
name: NSNotification.PushJSONArticle,
|
|
object: nil,
|
|
userInfo: ["article": article]
|
|
)
|
|
}
|
|
|
|
static func operationSuccess(message: String) {
|
|
NotificationCenter.default.post(name: NSNotification.OperationSuccess, object: nil, userInfo: ["message": message])
|
|
}
|
|
|
|
static func operationFailed(message: String) {
|
|
NotificationCenter.default.post(name: NSNotification.OperationFailure, object: nil, userInfo: ["message": message])
|
|
}
|
|
}
|