mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
103 lines
3.3 KiB
Plaintext
103 lines
3.3 KiB
Plaintext
#import "AppDelegate.h"
|
|
|
|
#import <React/RCTBundleURLProvider.h>
|
|
|
|
#import <React/RCTLinkingManager.h>
|
|
|
|
#import <RNCPushNotificationIOS.h>
|
|
#import "RNQuickActionManager.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
// ===================================================
|
|
// BEGIN Linking support
|
|
// ===================================================
|
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
openURL:(NSURL *)url
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
|
|
{
|
|
return [RCTLinkingManager application:application openURL:url options:options];
|
|
}
|
|
|
|
// ===================================================
|
|
// END Linking support
|
|
// ===================================================
|
|
|
|
|
|
|
|
// ===================================================
|
|
// BEGIN react-native-quick-actions
|
|
// ===================================================
|
|
- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL succeeded)) completionHandler {
|
|
[RNQuickActionManager onQuickActionPress:shortcutItem completionHandler:completionHandler];
|
|
}
|
|
// ===================================================
|
|
// END react-native-quick-actions
|
|
// ===================================================
|
|
|
|
|
|
|
|
|
|
// ===================================================
|
|
// BEGIN react-native-push-notification-ios
|
|
// ===================================================
|
|
|
|
// IOS 10+ Required for localNotification event
|
|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
|
|
didReceiveNotificationResponse:(UNNotificationResponse *)response
|
|
withCompletionHandler:(void (^)(void))completionHandler
|
|
{
|
|
[RNCPushNotificationIOS didReceiveNotificationResponse:response];
|
|
completionHandler();
|
|
}
|
|
// IOS 4-10 Required for the localNotification event.
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
|
|
{
|
|
[RNCPushNotificationIOS didReceiveLocalNotification:notification];
|
|
}
|
|
|
|
// ===================================================
|
|
// END react-native-push-notification-ios
|
|
// ===================================================
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
self.moduleName = @"Joplin";
|
|
// 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 = @{};
|
|
|
|
// BEGIN react-native-push-notification-ios
|
|
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
|
|
center.delegate = self;
|
|
// END react-native-push-notification-ios
|
|
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
{
|
|
#if DEBUG
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
|
#else
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
#endif
|
|
}
|
|
|
|
/// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
|
|
///
|
|
/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
|
|
/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
|
|
/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
|
|
- (BOOL)concurrentRootEnabled
|
|
{
|
|
return true;
|
|
}
|
|
|
|
@end
|