angular service-worker - handling push notification click

杀马特。学长 韩版系。学妹 提交于 2019-12-19 19:40:37

问题


How do I handle the push notification click in angular service worker. The SWPush does not have any methods.

I have tried referencing a js which listens to the "notificationclick" event handler but it never got fired on the click of the notification button.


回答1:


Call SWPush#requestSubscription. Here's a good article




回答2:


I had to update my package.json to:

"@angular/service-worker": "7.1.0"

then this worked for me:

this.swPush.notificationClicks.subscribe((result) => {
      console.log('clicked', result);
    });



回答3:


I suggest to update angular to at least Angular version 7.1.0 ( I would suggest to maintain up to date ). With this, you can now subscribe to notificationClicks

In the constructor inject SwPush then use it with:

   this.swPush.notificationClicks.subscribe( arg =>
   {
     console.log(
       'Action: ' + arg.action,
       'Notification data: ' + arg.notification.data,
       'Notification data.url: ' + arg.notification.data.url,
       'Notification data.body: ' + arg.notification.body,
     );

  });

If you don't want to update you should watch the file ngsw-worker.js with Webpack or gulp or etc. And then after the line with this.scope.addEventListener('push', (event) => this.onPush(event)); add the following:

this.scope.addEventListener('notificationclick', (event) => {
    console.log('Notification event', event);
    event.notification.close();
    var payload = event.notification.data;

    if (event.action && payload.actions && payload.actions.includes(event.action) 
       clients.openWindow && event.notification.data.url) {
      event.waitUntil(clients.openWindow(event.notification.data.url));
    }
  });


来源:https://stackoverflow.com/questions/48310191/angular-service-worker-handling-push-notification-click

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!