admin管理员组文章数量:1344241
Is there a way to set an event listener for a desktop notification?
document.addEventListener("desktop notification", function(){
// do something
});
I've looked through the MDN event reference, but the only event type for a notification seems to be only for alert()
.
Is there a way to set an event listener for a desktop notification?
document.addEventListener("desktop notification", function(){
// do something
});
I've looked through the MDN event reference, but the only event type for a notification seems to be only for alert()
.
- 2 A desktop notification event may be emitted from a browser, but it's listened to by the window manager of the OS. The browser itself is not notified about these events. – marekful Commented Jul 5, 2015 at 14:57
2 Answers
Reset to default 9See https://github./jiahaog/nativefier project for working sample. Notice snippet (source from https://github./jiahaog/nativefier/blob/development/app/src/static/preload.js):
function setNotificationCallback(callback) {
const OldNotify = window.Notification;
const newNotify = (title, opt) => {
callback(title, opt);
return new OldNotify(title, opt);
};
newNotify.requestPermission = OldNotify.requestPermission.bind(OldNotify);
Object.defineProperty(newNotify, 'permission', {
get: () => {
return OldNotify.permission;
}
});
window.Notification = newNotify;
}
So, you replace window's Notification object with own object that act as a proxy with added behaviour (calling callback on creating new Notification).
Hope this helps
@marekful is right. Instead of placing global event listeners, you may consider placing a callback or even attach an event on the Notification object.
var noticeMe = new Notification(title, options);
noticeMe.onshow = function() { console.log("easy!") };
A full list of supported events may be found here: https://developer.mozilla/en-US/docs/Web/API/Notification, Also here is an article I wrote a few months back about the Notification API
Take a look at
Notification.onclick
Notification.onclose
Notification.onerror
Notification.onshow
本文标签: javascriptEvent Listener for Web NotificationStack Overflow
版权声明:本文标题:javascript - Event Listener for Web Notification - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743688692a2522322.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论