holmesal / react-native-ios-notification-actions

Add shiny buttons to your iOS push notifications.
MIT License
135 stars 54 forks source link

looking for a maintainer

I'm not actively maintaining this, so use it at your own risk and make sure to check the open issues.

If you're interested in maintaining this repo, drop me a line at: hello(at)alonso.io

react-native-ios-notification-actions

locked unlocked

tl;dr

Notification Actions allow the user to interact with the push notification. Those shiny buttons that show up when you swipe a notification to the left on your lock screen, or pull down a notification that appears on the top of the screen? Each one of those buttons is an action.

Notification Categories allow you to group multiple actions together. This Category is what you'll ultimately associate with a push notification.

The basic workflow is:

  1. Create and configure some actions.
  2. Group them together into a category.
  3. (optional) Implement some appdelegate methods to respond to actions.
  4. Show a local (or remote) notification, and associate it with the category from (2) to show your actions.

Install

rnpm (preferred)

`rnpm install react-native-ios-notification-actions

Manual

  1. `npm install react-native-ios-notification-actions
  2. Drag ./RNNotificationActions/RNNotificationActions.xcodeproj into your project.
  3. Add libRNNotificationActions.a to your Link Binary With Libraries build phase

Getting Started

  1. Follow the instructions here to set up push notifications in your app.
  2. In AppDelegate.m:
    
    // Import 'RNNotificationActions.h' at top.
    #import "RNNotificationActions.h"

// Add support for push notification actions (optional)

Example

import NotificationActions from 'react-native-ios-notification-actions'

// Create an "upvote" action that will display a button when a notification is swiped
let upvoteButton = new NotificationActions.Action({
  activationMode: 'background',
  title: 'Upvote',
  identifier: 'UPVOTE_ACTION'
}, (res, done) => {
  console.info('upvote button pressed with result: ', res);
  done(); //important!
});

// Create a "comment" button that will display a text input when the button is pressed
let commentTextButton = new NotificationActions.Action({
  activationMode: 'background',
  title: 'Reply',
  behavior: 'textInput',
  identifier: 'REPLY_ACTION'
}, (res, done) => {
  console.info('reply typed via notification from source: ', res.source, ' with text: ', res.text);
  done(); //important!
});

// Create a category containing our two actions
let myCategory = new NotificationActions.Category({
  identifier: 'something_happened',
  actions: [upvoteButton, commentTextButton],
  forContext: 'default'
});

// ** important ** update the categories
NotificationActions.updateCategories([myCategory]);

Then, when you present a local notification, you can simply use the same category name:

import {PushNotificationIOS} from 'react-native';

// Lock your screen before 5 seconds elapse!
setTimeout(() => {
    console.info('presenting local notification!');
    PushNotificationIOS.presentLocalNotification({
        alertBody: 'This is a local notification!',
        category: 'something_happened'
    });
}, 5000);

The same goes for remote notifications - just include {category: "your_category_name"} in your push notification payload.

Action options

Category options

TODO / help wanted

More info

Nice overview of interactive notifications