131 lines
4.5 KiB
Plaintext
131 lines
4.5 KiB
Plaintext
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
#import <Firebase.h>
|
|
#import "RNSplashScreen.h"
|
|
#import <RNNotifee/RNNotifee.h>
|
|
|
|
#import <FBSDKCoreKit/FBSDKCoreKit.h>
|
|
|
|
@interface AppDelegate () <UNUserNotificationCenterDelegate>
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
|
|
if ([FIRApp defaultApp] == nil) {
|
|
[FIRApp configure];
|
|
}
|
|
|
|
// ตั้งค่า Notifee delegate ก่อน
|
|
[RNNotifee onBackgroundEvent:^(NSDictionary * _Nonnull event) {
|
|
// Handle background events
|
|
}];
|
|
|
|
// เพิ่ม notification center delegate
|
|
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
|
|
center.delegate = self;
|
|
|
|
// ขอ permission สำหรับ push notification
|
|
[application registerForRemoteNotifications];
|
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
|
moduleName:@"csareactrn60"
|
|
initialProperties:nil];
|
|
|
|
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
|
|
|
|
|
|
self.moduleName = @"RnDiffApp";
|
|
// You can add your custom initial props in the dictionary below.
|
|
// They will be passed down to the ViewController used by React Native.
|
|
self.initialProps = @{};
|
|
|
|
[RNSplashScreen show];
|
|
|
|
[[FBSDKApplicationDelegate sharedInstance] application:application
|
|
didFinishLaunchingWithOptions:launchOptions];
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
openURL:(NSURL *)url
|
|
sourceApplication:(NSString *)sourceApplication
|
|
annotation:(id)annotation {
|
|
|
|
BOOL handled = [[FBSDKApplicationDelegate sharedInstance] application:application
|
|
openURL:url
|
|
sourceApplication:sourceApplication
|
|
annotation:annotation
|
|
];
|
|
// Add any custom logic here.
|
|
return handled;
|
|
}
|
|
|
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
{
|
|
#if DEBUG
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
|
#else
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
#endif
|
|
}
|
|
|
|
// เพิ่ม methods สำหรับ handle notifications
|
|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
|
|
willPresentNotification:(UNNotification *)notification
|
|
withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler {
|
|
|
|
// ให้ Notifee จัดการ notification ก่อน
|
|
if ([RNNotifee willPresentNotification:notification withCompletionHandler:completionHandler]) {
|
|
return;
|
|
}
|
|
|
|
// ถ้า Notifee ไม่จัดการ ให้แสดงแบบปกติ
|
|
completionHandler(UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionSound);
|
|
}
|
|
|
|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
|
|
didReceiveNotificationResponse:(UNNotificationResponse *)response
|
|
withCompletionHandler:(void (^)(void))completionHandler {
|
|
|
|
// ให้ Notifee จัดการ response ก่อน
|
|
if ([RNNotifee didReceiveNotificationResponse:response withCompletionHandler:completionHandler]) {
|
|
return;
|
|
}
|
|
|
|
completionHandler();
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
NSLog(@"APNs device token received: %@", deviceToken);
|
|
// ส่ง token ให้ทั้ง Firebase และ Notifee
|
|
[FIRMessaging messaging].APNSToken = deviceToken;
|
|
[RNNotifee didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
|
|
NSLog(@"Failed to register for remote notifications: %@", error);
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
|
|
[[FIRMessaging messaging] appDidReceiveMessage:userInfo];
|
|
completionHandler(UIBackgroundFetchResultNoData);
|
|
}
|
|
|
|
@end
|