How to Add Digest to In-App Notifications
Leverage the digest functionality to send in-app notifications
Introduction
In this guide, you’ll learn how to add digest notifications to a React app. But before exploring the actual code, let’s understand what a digest notification is and how it works.
You can find the entire code(frontend as well as backend) for this app here.
What is a Digest Notification?
Often times when you associate notifications with user activity, the end user can be bombarded with messages because of the nature of the activity. Take for example the case of commenting in the context of a social media app. If you were to send a notification to a user for every comment they receive, and they happen to receive 100 comments, it could lead to user fatigue since you would have to send 100 messages.
This is where digest notifications come into the picture!
A digest notification is a notification that consolidates information from several notifications into one and delivers that notification to the end user instead of several separate messages.
How does Digest Notification Work?
Novu has a built-in digest engine that collects multiple trigger events, aggregates them into a single message and delivers it to the subscriber. You can use the digest engine by adding a digest node
to your workflow in the workflow editor in the Novu dashboard.
Let’s see it in action now!
Add Digest Notification To An App
To get started with this, you need the following:
- A Novu account. Sign up for free if you don’t have one yet.
- A working React development environment.
Workflow setup in Novu
Once, you have these, follow the steps below:
- Head over to the Novu Dashboard.
- Click
Workflows
on the left sidebar of your Novu dashboard. - Click the
Create Workflow
button on the top right:
Creating workflows is simple
Once you click the create workflow
button, you’ll see a dropdown. Select blank workflow
from the dropdown:
Select `blank workflow` from the dropdown
You’ll now be taken to the workflow editor:
Workflow editor allows you to create and edit workflows
Once here, you can add the channels you want to use for sending notifications and configure them. For this guide, we’ll use the In-App
channel. You’ll also see the Digest
action on the right sidebar.
Each node that is added below the digest node will only be triggered after the specified time interval
For example, in our case, say we want the In-App notification to be sent after every 6 hours. Next, add the digest
action below the trigger node
, and add the in-app
channel node below the digest
node as shown below:
Adding digest node
The digest
node allows you to set a specific time interval for when notifications should be sent:
Manipulating values in the digest node
Once, you’ve configured it. Go ahead and configure the in-app
channel as per your need:
You can configure the in-app node as per your requirements
Here’s a brief explanation of all the options:
- 1-Preview: This shows you a glimpse of what each notification item will look like in the Notification Center UI.
- 2-Avatar: If turned on, each notification item will show the avatar of the subscriber.
- 3-Action: With this, you can add a primary and secondary call to action button to each notification item.
- 4-Notification Feeds: This displays a stream of specific notifications. You can have multiple feeds to show specific notifications in multiple tabs.
- 5-Redirect URL - This is the URL to which a subscriber can be directed when they click on a notification item.
- 6-Filter - This feature allows you to configure the criteria for delivering notifications. For instance, you can apply a filter based on a subscriber’s online status to send them an email if they were online within the last hour.
In our case, we’re going to use the following:
Values we're gonna use
Once you’re done configuring this to your liking, click on the update
button on the top right.
It’ll automatically create a trigger code that you can use in your app. To get it, click on the get snippet
button on the top right and copy it:
Getting trigger code
Now, let’s see how to add Novu to our app!
Add Novu to the Backend and Configure it
In your backend, install the novu package using the following code:
Now, create a route which you want to hit when called from the front end. In our demo app, this is the route:
Now, we need to write a controller function that will handle the logic for what is to be sent in the trigger function’s payload. In our case, this is the controller function:
To make it modular, we’ll keep the trigger code in a separate function in a separate file (novu.js
, in our case) and the trigger function is getting called in the controller function above by the name getDigest
.
If you’re following the guide, you’ve already copied the trigger function. But before we can add it to our app, we need one key thing - Subscribers.
Subscribers are entities to which the notifications are sent. You can see a list of subscribers in the Novu dashboard as well.
In our app, we’ll create a subscriber in Node.js as we’re writing our backend in Node.js, but we also have backend SDKs (Node.js, PHP, .NET, Go, Ruby, Python and Kotlin) to choose from. The recommended way to create a subscriber in NodeJS is as follows:
Here, we’re creating a subscriber with the subscriberID
of aa234u787.
You can read more about subscribers here.
Back in our app, we can now add the trigger function:
Now, we just need to hit the route defined above from the front end and add Novu to it.
Add Novu’s Notification Center to the front end
In the front end, install the Novu notification centre package using the following command:
Now, import and render the component in your app. The code to do so is as follows:
You can, of course, modify things as you need. For example, in our app, this is what we’ve done in the header:
You’ll also need to plug in your applicationIdentifier
. You can get your application id
from the settings menu in the Novu dashboard.
Beyond this, we just need to call the API we had written above when the form is submitted with the data we want in the payload. The code to do so is as follows:
The app is done now!
Congratulations for following the guide up until this point. We can style our app a little using some CSS.
If you’ve done everything as recommended, you’ll end up with an app that looks like this:
Filtering by channel
In this app, when we enter some text in the input box and click send, the notification appears in the bell icon after the delay specified above (when we’re creating the workflow).
This is how we add digest to in-app notifications!
Was this page helpful?