paint-brush
Display Desktop Notifications Using JavaScriptby@attacomsian
7,105 reads
7,105 reads

Display Desktop Notifications Using JavaScript

by Atta ✨October 26th, 2022
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

JavaScript Notifications API enables web pages to display messages to users on their devices across different platforms. These notifications appear even after the user has switched tabs or moved to another application. These messages (also called **system** or **desktop** notifications) can be used to notify the user about important events such as an email, new social media message, live chat notification, calendar reminders, etc. You can even use system notifications to send marketing campaigns. The API is fairly new and it may not work in older browsers.
featured image - Display Desktop Notifications Using JavaScript
Atta ✨ HackerNoon profile picture


JavaScript Notifications API enables web pages to display messages to users on their devices across different platforms. These notifications appear even after the user has switched tabs or moved to another application.


These messages (also called system or desktop notifications) can be used to notify the user about important events such as an email, new social media message, live chat notification, calendar reminders, etc. You can even use system notifications to send marketing campaigns.


In this tutorial, I'll explain the primary usage of Notifications API to display messages to the user while the site is opened in a browser tab.


API Usage

The Notifications API is fairly new and it may not work in older browsers. Therefore, you should explicitly verify if the API is supported by the browser or not before showing a message. You can do this by checking if the window has a property called Notification:


if(!window.Notification) {
	console.log('Browser does not support notifications.');
} else {
	// display message here
}


On supported platforms, displaying a desktop notification involves requesting permission and creating a new notification to display to the user.


Note: The Notification API requires your website to use an SSL certificate. It does not work on insecure origins (HTTP).


Requesting Permission

The user needs to grant the current origin permission to show desktop notifications. You can easily check if the user has already been granted permission to display system notifications using Notification.permission property. This property has the following possible values:


  • default - The user has not yet decided to accept notifications from your site

  • granted - The user has allowed your site to display notifications

  • denied - The user has chosen to block notifications from your site


If it is the first case, you can request permission from the user using requestPermission() of the Notifications API. It will open a dialog to ask the user to either allow or block notifications from this site. Once the user has made a choice, the setting will be saved for the current session.


If the user has already denied the request for showing notifications, we can not do anything. The browser will ignore any request to show a notification or request permission again.


if (!window.Notification) {
    console.log('Browser does not support notifications.');
} else {
    // check if permission is already granted
    if (Notification.permission === 'granted') {
        // show notification here
    } else {
        // request permission from user
        Notification.requestPermission().then(function(p) {
           if(p === 'granted') {
               // show notification here
           } else {
               console.log('User blocked notifications.');
           }
        }).catch(function(err) {
            console.error(err);
        });
    }
}


The requestPermission() returns a promise. The callback function will be called once the promise is either resolved or rejected (upon user choice of notifications).


Showing Notification

If the user has chosen to accept notifications from our site, you can create a new desktop notification using Notification() to display it to the user. Just pass a title to the constructor to create a new notification.


var notify = new Notification('Hi there!');


Optionally, you can also pass an options object to specify text direction, body text, the icon to display, notification sound to play, and more.


var notify = new Notification('Hi there!', {
    body: 'How are you doing?',
    icon: 'https://bit.ly/2DYqRrh',
});


Putting everything all together, we can create a function that will show a desktop notification once called, requesting permission if not already granted:


function notifyMe() {
    if (!window.Notification) {
        console.log('Browser does not support notifications.');
    } else {
        // check if permission is already granted
        if (Notification.permission === 'granted') {
            // show notification here
            var notify = new Notification('Hi there!', {
                body: 'How are you doing?',
                icon: 'https://bit.ly/2DYqRrh',
            });
        } else {
            // request permission from user
            Notification.requestPermission().then(function (p) {
                if (p === 'granted') {
                    // show notification here
                    var notify = new Notification('Hi there!', {
                        body: 'How are you doing?',
                        icon: 'https://bit.ly/2DYqRrh',
                    });
                } else {
                    console.log('User blocked notifications.');
                }
            }).catch(function (err) {
                console.error(err);
            });
        }
    }
}


Now we can call the above function when the user clicks a button:


<button onclick="notifyMe()">Notify Me</button>


Alternatively, you can bind the above function to the onload event which will be called once the web page is completely loaded:


<!DOCTYPE html>
<html>
<body onload="notifyMe()">
<!-- body content-->
</body>
</html>



✌️ I write about modern JavaScript, Node.js, Spring Boot, and web development. Subscribe to my newsletter to get web development tutorials & protips every week.


Also published here.