javascript - How do I properly set a close timeout on desktop notifications created by the browser - Stack Overflow

I am working with desktop notifications for my web application using the standard Notification API.Fo

I am working with desktop notifications for my web application using the standard Notification API. For the purposes of my initial development, I am using Google Chrome. With Chrome, when a page creates a Notification object, the notification will stay on the desktop forever.

The Notification prototype does have a .close() method which allows for the closing of a notification that has been previously invoked. I figured that this, in conjunction with the setTimeout function would make automatically dismissing notifications after a couple seconds a piece of cake. I even found a guide confirming my idea.

However, it seems that I am unable to get the scope of the notification to work properly with the setTimeout function, and the .close() method does not get called properly for each created notification.

Here is what I have tried (I used some code found in another answer as a starting point):

Button:

<button onclick="notifyMe()">
  Notify me! 
</button>

JavaScript:

<script>
// request permission on page load
document.addEventListener('DOMContentLoaded', function () {
  if (Notification.permission !== "granted")
    Notification.requestPermission();
});

function notifyMe() {
  if (!Notification) {
    //alert('Desktop notifications not available in your browser. Try Chromium.'); 
    return;
  }

  if (Notification.permission !== "granted")
    Notification.requestPermission();
  else {
    var notification = new Notification('Notification');

    notification.onclick = function () {
        window.focus();
    };

    setTimeout(notification.close, 2000);
    // Result: Uncaught TypeError: Illegal invocation

    // also tried.....

    // setTimeout(notification.close(), 2000);
    // Result: notification stays open forever

    // setTimeout('notification.close', 2000);
    // Result: ReferenceError: notification is not defined

  }

}
</script>

I would appreciate it if anyone who has experience with this could help me.

I am working with desktop notifications for my web application using the standard Notification API. For the purposes of my initial development, I am using Google Chrome. With Chrome, when a page creates a Notification object, the notification will stay on the desktop forever.

The Notification prototype does have a .close() method which allows for the closing of a notification that has been previously invoked. I figured that this, in conjunction with the setTimeout function would make automatically dismissing notifications after a couple seconds a piece of cake. I even found a guide confirming my idea.

However, it seems that I am unable to get the scope of the notification to work properly with the setTimeout function, and the .close() method does not get called properly for each created notification.

Here is what I have tried (I used some code found in another answer as a starting point):

Button:

<button onclick="notifyMe()">
  Notify me! 
</button>

JavaScript:

<script>
// request permission on page load
document.addEventListener('DOMContentLoaded', function () {
  if (Notification.permission !== "granted")
    Notification.requestPermission();
});

function notifyMe() {
  if (!Notification) {
    //alert('Desktop notifications not available in your browser. Try Chromium.'); 
    return;
  }

  if (Notification.permission !== "granted")
    Notification.requestPermission();
  else {
    var notification = new Notification('Notification');

    notification.onclick = function () {
        window.focus();
    };

    setTimeout(notification.close, 2000);
    // Result: Uncaught TypeError: Illegal invocation

    // also tried.....

    // setTimeout(notification.close(), 2000);
    // Result: notification stays open forever

    // setTimeout('notification.close', 2000);
    // Result: ReferenceError: notification is not defined

  }

}
</script>

I would appreciate it if anyone who has experience with this could help me.

Share Improve this question edited May 23, 2017 at 10:30 CommunityBot 11 silver badge asked Aug 7, 2015 at 20:55 ChristianChristian 3721 gold badge3 silver badges12 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

When I wrap that into a function() {} it works:

setTimeout(function() { notification.close() }, 2000);

See this fiddle: https://jsfiddle/drnz12n8/2/

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743614804a4478816.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信