2017-03-09 15:26:28 +00:00
|
|
|
#ifndef RNFirebaseMessaging_h
|
|
|
|
#define RNFirebaseMessaging_h
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-05-30 12:20:42 +00:00
|
|
|
#if __has_include(<FirebaseMessaging/FirebaseMessaging.h>)
|
2017-05-30 07:26:40 +00:00
|
|
|
#import <FirebaseMessaging/FirebaseMessaging.h>
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2017-05-31 14:53:08 +00:00
|
|
|
#import <React/RCTEventEmitter.h>
|
2017-05-05 08:46:22 +00:00
|
|
|
|
2017-03-21 15:11:07 +00:00
|
|
|
@import UserNotifications;
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-05-30 07:26:40 +00:00
|
|
|
@interface RNFirebaseMessaging : RCTEventEmitter<RCTBridgeModule, FIRMessagingDelegate>
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-03-21 15:11:07 +00:00
|
|
|
typedef void (^RCTRemoteNotificationCallback)(UIBackgroundFetchResult result);
|
|
|
|
typedef void (^RCTWillPresentNotificationCallback)(UNNotificationPresentationOptions result);
|
|
|
|
typedef void (^RCTNotificationResponseCallback)();
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-03-21 15:11:07 +00:00
|
|
|
@property (nonatomic, assign) bool connectedToFCM;
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-03-21 15:11:07 +00:00
|
|
|
#if !TARGET_OS_TV
|
2017-05-30 07:26:40 +00:00
|
|
|
+ (void)didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo;
|
2017-03-21 15:11:07 +00:00
|
|
|
+ (void)didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo fetchCompletionHandler:(nonnull RCTRemoteNotificationCallback)completionHandler;
|
|
|
|
+ (void)didReceiveLocalNotification:(nonnull UILocalNotification *)notification;
|
2017-07-19 11:49:18 +00:00
|
|
|
+ (void)didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull RCTNotificationResponseCallback)completionHandler;
|
|
|
|
+ (void)willPresentNotification:(nonnull UNNotification *)notification withCompletionHandler:(nonnull RCTWillPresentNotificationCallback)completionHandler;
|
2017-03-09 15:26:28 +00:00
|
|
|
#endif
|
2017-03-21 15:11:07 +00:00
|
|
|
|
|
|
|
@end
|
2017-05-30 12:20:42 +00:00
|
|
|
|
|
|
|
#else
|
2017-08-11 15:07:32 +00:00
|
|
|
@interface RNFirebaseMessaging : NSObject
|
2017-05-30 12:20:42 +00:00
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|