adds macOS notification behaviour
This commit is contained in:
parent
9a49c6d906
commit
1d5c433a1a
@ -455,7 +455,17 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations,
|
|||||||
}
|
}
|
||||||
|
|
||||||
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
|
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
|
||||||
|
|
||||||
|
let userInfo = response.notification.request.content.userInfo
|
||||||
|
|
||||||
|
switch response.actionIdentifier {
|
||||||
|
case "MARK_AS_READ":
|
||||||
|
handleMarkAsRead(userInfo: userInfo)
|
||||||
|
case "MARK_AS_STARRED":
|
||||||
|
handleMarkAsStarred(userInfo: userInfo)
|
||||||
|
default:
|
||||||
mainWindowController?.handle(response)
|
mainWindowController?.handle(response)
|
||||||
|
}
|
||||||
completionHandler()
|
completionHandler()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -791,3 +801,47 @@ extension AppDelegate: NSWindowRestoration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle Notification Actions
|
||||||
|
|
||||||
|
private extension AppDelegate {
|
||||||
|
|
||||||
|
func handleMarkAsRead(userInfo: [AnyHashable: Any]) {
|
||||||
|
guard let articlePathUserInfo = userInfo[UserInfoKey.articlePath] as? [AnyHashable : Any],
|
||||||
|
let accountID = articlePathUserInfo[ArticlePathKey.accountID] as? String,
|
||||||
|
let articleID = articlePathUserInfo[ArticlePathKey.articleID] as? String else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
let account = AccountManager.shared.existingAccount(with: accountID)
|
||||||
|
guard account != nil else {
|
||||||
|
os_log(.debug, "No account found from notification.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let article = try? account!.fetchArticles(.articleIDs([articleID]))
|
||||||
|
guard article != nil else {
|
||||||
|
os_log(.debug, "No article found from search using %@", articleID)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
account!.markArticles(article!, statusKey: .read, flag: true)
|
||||||
|
}
|
||||||
|
|
||||||
|
func handleMarkAsStarred(userInfo: [AnyHashable: Any]) {
|
||||||
|
guard let articlePathUserInfo = userInfo[UserInfoKey.articlePath] as? [AnyHashable : Any],
|
||||||
|
let accountID = articlePathUserInfo[ArticlePathKey.accountID] as? String,
|
||||||
|
let articleID = articlePathUserInfo[ArticlePathKey.articleID] as? String else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let account = AccountManager.shared.existingAccount(with: accountID)
|
||||||
|
guard account != nil else {
|
||||||
|
os_log(.debug, "No account found from notification.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let article = try? account!.fetchArticles(.articleIDs([articleID]))
|
||||||
|
guard article != nil else {
|
||||||
|
os_log(.debug, "No article found from search using %@", articleID)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
account!.markArticles(article!, statusKey: .starred, flag: true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -33,8 +33,8 @@
|
|||||||
"repositoryURL": "https://github.com/tid-kijyun/Kanna.git",
|
"repositoryURL": "https://github.com/tid-kijyun/Kanna.git",
|
||||||
"state": {
|
"state": {
|
||||||
"branch": null,
|
"branch": null,
|
||||||
"revision": "4a80ebe93b6966d5083394fcaaaff57a2fcec935",
|
"revision": "c657fb9f5827ef138068215c76ad0bb62bbc92da",
|
||||||
"version": "5.2.3"
|
"version": "5.2.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user