The @verful/notifications
package requires @adonisjs/core >= 5.4.2
Also, it relies on @adonisjs/lucid >= 16.3.2
for database notifications and on @adonisjs/mail >= 7.2.4
for mail notifications.
Install the package from the npm registry as follows.
npm i @verful/notifications
# or
yarn add @verful/notifications
Next, configure the package by running the following ace command.
node ace configure @verful/notifications
Notifications are represented by a simple class, generally stored in the app/Notifications
directory. If you dont see the directory, dont worry, it will be created when you run the make:notification
ace command.
node ace make:notification TestNotification
The command will create a notification class in the app/Notifications
directory. Each notification class contains a via
method and any number of message builder methods, like toMail
or toDatabase
, that convert the notification to a message made for that channel.
Notifications may be sent using the notify
or the notifyLater
methods of the Notifiable
mixin, or using the Notification
module.
First, apply the mixin on the model you are wanting to notify.
import { BaseModel } from '@ioc:Adonis/Lucid/Orm'
import { compose } from '@ioc:Adonis/Core/Helpers'
import { Notifiable } from '@ioc:Verful/Notification/Mixins'
// Notifiable takes the notification table name as it's only param
export default class User extends compose(BaseModel, Notifiable('notifications')){
}
Then use the notify
or the notifyLater
methods to notify the model.
import TestNotification from 'App/Notifications/TestNotification'
user.notify(new TestNotification())
// Uses a in-memory queue to send the notification
user.notifyLater(new TestNotification())
You can also use the Notification
module to send notifications. Sending notifications this way is useful when you need to send a notification to multiple notifiables, like a array of users.
import Notification from '@ioc:Verful/Notification'
Notification.send(users, new TestNotification())
You can also delay notifications using the sendLater
method. This method uses a in-memory queue to send the notifications.
import Notification from '@ioc:Verful/Notification'
Notification.sendLater(users, new TestNotification())
Every notification class has a via
method that determines which channels will be used to deliver the notification.
If you want to use other delivery channels, you can build your own.
The via
method receives a notifiable
instance, that is a instance of the class which the notification is being sent. You may use the notifiable
to determine which channels to sent the notification to.
class TestNotification implements NotificationContract {
public via(notifiable: User){
return notifiable.prefersEmail ? 'mail' : 'database'
}
}
Sending notifications can take some time, to ensure the notification doesn't block HTTP requests, you can use the notifyLater
method of the Notifiable
Mixin and the sendLater
method of the Notification
module to push notifications to a in-memory queue, ensuring that notifications will be sent after the http request ends.
If you want to send a notification via e-mail, you should define a toMail
method on the notification class. This method receives the notifiable
entity and should return a BaseMailer
instance
If you want to use a mail driver other than default driver to send the notification, you can define it in the mailer class
class TestMailer extends BaseMailer {
constructor(private user: User){
super()
}
public prepare(message){
message
.subject('Test email')
.from('[email protected]')
.to(this.user.email)
}
}
class TestNotification implements NotificationContract {
public toMail(notifiable: User){
return new TestMailer(notifiable)
}
}
Mail notifications requires @adonisjs/mail >= 7.2.4
The database
channel stores the notification in a database table. This table contain the notification, and a JSON object that describes the notification
Database notifications requires @adonisjs/lucid >= 16.3.2
You can query the table to display the notifications in your UI. But, before you can do that, you need to create a table to store the notifications. You may use the notifications:table
ace command to generate a migration with the correct table schema.
node ace notifications:table
node ace migration:run
If you want to store a notification in a database, you should define a toDatabase
method on the notification class. This method receives the notifiable
entity and should return a javascript object that can be transformed in JSON
class TestNotification implements NotificationContract {
public toDatabase(notifiable: User){
return {
title: `Hello, ${notifiable.email}, this is a test notification`
}
}
}
After notifications are stored, you can acess them from your notifiable model entities. The Notifiable
mixin includes a notifications
Lucid relationship that returns the notifications for that entity. You can use the notifications like any other Lucid relationship. By default, the readNotifications
and unreadNotifications
methods will sort the notifications using the created_at
timestamp, with the most recent at the beginning.
const user = User.findOrFail(1)
for(const notification of await user.readNotifications()){
console.log(notification.data)
}
If you want to retrieve only the unread notifications, you may use the unreadNotifications
method.
const user = User.findOrFail(1)
for(const notification of await user.unreadNotifications()){
console.log(notification.data)
}
The notifications are normal Lucid Models, you can use anything that applies to a Lucid Model on them
Typically, you will want to mark a notification as read when a user views it. The notification model provides a markAsRead method, which updates the read_at column on the notification's database record:
const user = User.findOrFail(1)
for(const notification of await user.unreadNotifications()){
await notification.markAsRead();
}
If you want to mark all notifications of a user as read, you can use the markNotificationsAsRead
method of the Notifiable
mixin
const user = User.findOrFail(1)
await user.markNotificationsAsRead()
There is also
markAsRead
andmarkNotificationsAsUnread
methods to mark notifications as unread.
You may want to deliver notifications using other channels, for that, you can use any class that implements the NotificationChannelContract
import { NotificationChannelContract } from '@ioc:Verful/Notification'
interface VoiceMessageContract {
text: string
}
export default class VoiceChannel implements NotificationChannelContract {
/**
* Typing the notification argument guarantees type safety in the toChannel
* method of the notification, in this case toVoice
*/
public send(notification: VoiceMessageContract, notifiable: NotifiableModel){}
}
After the channel is created, you must extend the Notification
module, you can use a preload or a provider to do this
// start/notification.ts
import Notification from '@ioc:Verful/Notification'
import VoiceChannel from 'App/Channels/VoiceChannel'
Notification.extend('voice', () => new VoiceChannel())
Then you must setup the config and contract for your channel
// config/notification.ts
{
channels: {
voice: {
driver: 'voice'
}
}
}
// contracts/notification.ts
interface NotificationChannelsList {
voice: {
implementation: VoiceChannel
config: {
driver: 'voice'
}
}
}