1.0.1 • Published 6 days ago

@sendbird/react-native-push-extension v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 days ago

@sendbird/react-native-push-extension

Sendbird Push Notifications extension for React-Native

Installation

yarn add @sendbird/react-native-push-extension

Implementation

Use iOS's App Groups for device token tracking and analysis of Sendbird push notifications. Update the AppDelegate.h and AppDelegate.mm files to implement UserNotificationCenterDelegate and configure NotificationServiceExtension.

Modify the AppDelegate.h

// AppDelegate.h
#import <UserNotifications/UNUserNotificationCenter.h>

@interface AppDelegate : RCTAppDelegate<UNUserNotificationCenterDelegate>

Modify the AppDelegate.mm

// AppDelegate.mm

#import "SendbirdNotificationHelper.h"

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  // ...

  // SendbirdPushExtension: set app group
  [SendbirdNotificationHelper setAppGroup:@"your.app.group.name"]; // Set your App Groups name here

  // ...
}

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
  // SendbirdPushExtension: register device token
  [SendbirdNotificationHelper didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
}

Configuring NotificationServiceExtension

Note: This step is optional If your app is already using NotificationServiceExtension.

In the XCode top menu, click File > New > Target > Notification Service Extension to create it. create-extension

To link the extension, update the Podfile.

target 'NotificationServiceExtension' do
  // The below use_frameworks part may differ by project, so handle it according to your project's Podfile settings.
  // use_frameworks! :linkage => :static

  pod 'sendbird-notifications-extension', :path => '../node_modules/@sendbird/react-native-push-extension'
end

After making the modifications, connect the module to your project with the npx pod-install command. Then modify the NotificationService file in the NotificationServiceExtension created in XCode.

objc

// NotificationService.m

#import "SendbirdNotificationHelper.h"

@implementation NotificationService
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
  // ...

  // SendbirdPushExtension: set app group
  [SendbirdNotificationHelper setAppGroup:@"your.app.group.name"]; // Set your App Groups name here


  // SendbirdPushExtension: call markPushNotificationAsDelivered()
  [SendbirdNotificationHelper markPushNotificationAsDelivered:self.bestAttemptContent.userInfo completionHandler:nil];

  // ...
}

swift

// NotificationService.swift

import sendbird_notifications_extension

override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
  // ...

  // SendbirdPushExtension: set app group
  SendbirdNotificationHelper.setAppGroup("your.app.group.name")

  // SendbirdPushExtension: call markPushNotificationAsDelivered()
  SendbirdNotificationHelper.markPushNotification(asDelivered: bestAttemptContent.userInfo)

  // ...
}

Handling foreground push notifications

iOS typically receives push notifications while the app is in the background. However, notifications can also be delivered when the app is active and in the foreground. If a notification arrives without displaying a banner, it may still be marked as DELIVERED by the Sendbird system. Implement the willPresentNotification method to ensure notifications are presented to the user during these cases.

- (void)userNotificationCenter:(UNUserNotificationCenter *)center
       willPresentNotification:(UNNotification *)notification
         withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler
{
  if (notification.request.content.userInfo[@"sendbird"] != nil) {
    completionHandler(UNNotificationPresentationOptionAlert);
  }
}

Troubleshooting

If you encounter a build error indicating a conflict with Firebase (e.g., [CP-User][RNFB] ~~), adjust the placement of the Embed Frameworks extension in the project's Build Phases.

License

MIT


Made with create-react-native-library

1.0.1

6 days ago

1.0.0

1 month ago

1.0.0-rc.0

1 month ago

1.0.0-beta.2

1 month ago

1.0.0-beta.1

2 months ago

1.0.0-beta.0

2 months ago