Interaction
Users can interact with notifications in a number of ways; via the Notification Center, when they display in heads-up mode or via Quick Actions.
Press Action
When a notification is displayed on the device, if the user presses it iOS will cause the application to open. You can hook into this event if required:
import notifee, { EventType } from '@notifee/react-native';
notifee.onBackgroundEvent(async ({ type, detail }) => {
if (type === EventType.PRESS) {
console.log('User pressed the notification.', detail.pressAction.id);
}
});
The detail
provided with the event contains a pressAction
with an id
of default
. Since there is no way to
override the iOS behaviour for notification press, this is automatically set.
If your application has been freshly launched via a notification press, it will generate an App open event.
Quick Actions
Quick Actions are a way of making a notification more interactive, allowing users to perform quick actions directly from the notification (e.g. within the devices Notification Center) and not open the application. For example, an incoming message to a user displayed as a notification could have a "Mark as read" action, along with a "Reply" action which lets the send a message.
At minimum, an action requires a unique identifier & text:
async function setCategories() {
await notifee.setNotificationCategories([
{
id: 'message',
actions: [
{
id: 'mark-as-read',
title: 'Mark as read',
},
],
},
]);
}
Handling interaction
Whenever an user interacts with an action, an event is sent to the device. The payload
contains the id
within the pressAction
property. For example, if the application is in the background and the user
presses a mark-as-read
action, we can access it by listening to the ACTION_PRESS
event:
import notifee, { EventType } from '@notifee/react-native';
notifee.onBackgroundEvent(async ({ type, detail }) => {
if (type === EventType.ACTION_PRESS && detail.pressAction.id === 'mark-as-read') {
console.log('User pressed the "Mark as read" action.');
}
});
Foreground Action
The default behaviour when a user interacts with an action is to trigger an event via the onBackgroundEvent
method
and remove the notification from the device (marking as read). You can however force the action to open the application
into the foreground by setting the foreground
property to true
:
async function setCategories() {
await notifee.setNotificationCategories([
{
id: 'message',
actions: [
{
id: 'view-post',
title: 'View post',
// Trigger the app to open in the foreground
foreground: true,
},
],
},
]);
}
Once pressed, the application will launch & send a ACTION_PRESS
event.
Destructive Action
The action can be further expanded to be a "destructive" one, or only show if the device is unlocked:
async function setCategories() {
await notifee.setNotificationCategories([
{
id: 'message',
actions: [
{
id: 'view-post',
title: 'View post',
foreground: true,
},
{
id: 'delete-chat',
title: 'Delete chat',
destructive: true,
// Only show if device is unlocked
authenticationRequired: true,
},
],
},
]);
}
The action will appear with red text, warning the user the action may have destructive intent.
By default, a destructive action will not cause the application to open, however the ACTION_PRESS
event will still be sent
regardless.
Action input
Notifee also supports allowing users to provide custom user input via an action. To enable this functionality, set the
input
property to true
:
async function setCategories() {
await notifee.setNotificationCategories([
{
id: 'message',
actions: [
{
id: 'reply',
title: 'Reply',
input: true,
},
],
},
]);
}
When the action is pressed, an input box and send button will automatically appear allowing for custom input:
If required, the input box placeholder text and send button text can be customised by providing an object to the input
property:
async function setCategories() {
await notifee.setNotificationCategories([
{
id: 'message',
actions: [
{
id: 'reply',
title: 'Reply',
input: {
placeholderText: 'Send a message...',
buttonText: 'Send Now',
},
},
],
},
]);
}
Accessing input
In most cases you'll want to extract the users input and perform an action (e.g. send an API request to your servers).
Once the "Send" button is pressed, the ACTION_PRESS
event triggers, sending the pressAction
along with an
input
property:
import notifee, { EventType } from '@notifee/react-native';
notifee.onBackgroundEvent(async ({ type, detail }) => {
const { notification, pressAction, input } = detail;
if (type === EventType.ACTION_PRESS && pressAction.id === 'reply') {
updateChatOnServer(notification.data.conversationId, input);
}
});
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 3.0 License and code samples are licensed under the Apache 2.0 License.
All product names, logos, and brands are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, logos, and brands does not imply endorsement.