0.1.1 • Published 4 years ago

quasar-app-extension-firebase-messaging v0.1.1

Weekly downloads
32
License
MIT
Repository
github
Last release
4 years ago

Quasar Firebase Messaging App Extension

Install

yarn add firebase
yarn add quasar-app-extension-firebase-messaging
quasar ext invoke firebase-messaging

Setup

Create a file named firebase-messaging-sw.js in src-pwa The package will concatenate the firebase imports at its start

firebase.initializeApp({...});

const messaging = firebase.messaging();

messaging.setBackgroundMessageHandler(function(payload) {
  console.log('[firebase-messaging-sw.js] Received background message ', payload);
  // Customize notification here
  const notificationTitle = 'Background Message Title';
  const notificationOptions = {
    body: 'Background Message body.',
    icon: '/firebase-logo.png'
  };

  return self.registration.showNotification(notificationTitle,
    notificationOptions);
});

Also, make the entry firebase-messaging-sw.js the entry service worker for your pwa

// replace line
register(process.env.SERVICE_WORKER_FILE, {
--->
// by
register('firebase-messaging-sw.js', {