![]() |
How to push notification in NuxtJS with Firebase Cloud Messaging |
In this post, I'll talk about how to push notification in NuxtJS with Firebase Cloud Messaging.
You need to do those steps to push notification with Firebase Cloud Messaging.
- Create a Firebase app at https://console.firebase.google.com/ then you create a new web app project to receive info about your firebase web app project.
- Add firebase package to your project use: yarn add firebase (npm i firebase if you use npm).
- Add file firebase-messaging-sw.js to the static folder.This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
importScripts('https://www.gstatic.com/firebasejs/7.17.1/firebase-app.js'); importScripts( 'https://www.gstatic.com/firebasejs/7.17.1/firebase-messaging.js' ); firebase.initializeApp({ apiKey: '', projectId: '', messagingSenderId: '', appId: '' }); const messaging = firebase.messaging(); - Add file firebase.js to the plugins folder.This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
import * as firebase from 'firebase/app'; import 'firebase/messaging'; if (!firebase.apps.length) { firebase.initializeApp({ apiKey: '', projectId: '', messagingSenderId: '', appId: '' }); } export default firebase; - Register firebase plugins at plugins block in nuxt.config.js file.
After config firebase cloud messaging for your NuxtJS project. You need to register it in your project and request permission to push notification and send this token for server. In my project, I put it to pages/index.vue like that.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template></template> | |
<script> | |
import firebase from '../plugins/firebase'; | |
export defautl { | |
created() { | |
const messaging = firebase.messaging(); | |
messaging | |
.requestPermission() | |
.then(() => { | |
console.log('Notification permission granted.'); | |
return messaging.getToken(); | |
}) | |
.then((token) => { | |
// You update this token for server by call api | |
console.log('The token is: ', token); | |
}) | |
.catch(function (err) { | |
console.log('Unable to get permission to notify.', err); | |
}); | |
} | |
} | |
</script> |
Then request permission success, you can receive data from the server through 2 ways.
- When project running on an active tab (chrome/safari/firefox...) you use method messaging.onMessage() of firebase/messaging to handle data received. You can update your pages/index.vue like that.This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
<template></template> <script> import firebase from '../plugins/firebase'; export defautl { created() { const messaging = firebase.messaging(); messaging .requestPermission() .then(() => { console.log('Notification permission granted.'); return messaging.getToken(); }) .then((token) => { // You update this token for server by call api console.log('The token is: ', token); }) .catch(function (err) { console.log('Unable to get permission to notify.', err); }); messaging.onMessage(function (payload) { console.log('Message received. ', payload); }); } } </script> - When your project offline or running on a nonactive tab browser, you'll receive notification of the browser.
Now, you can test feature push notification with Firebase Cloud Messaging. I hope that I can help you with this post and enjoy it.
Thank you for reading. I so sorry, because I don't good at English.
Thanks nguyen
Trả lờiXóaThat's amazing informative post, I want to add one more thing, If you want to make your web visitor to your subscriber then you should definitely check gravitec lifetime deal Best push notification for website ever.
Trả lờiXóa