2016-02-22 22:04:42 +00:00
|
|
|
/**
|
2019-03-04 12:38:41 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-02-22 22:04:42 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
|
2017-09-09 15:14:40 +00:00
|
|
|
#import <asl.h>
|
2017-08-09 15:30:08 +00:00
|
|
|
#import "ReactNativeConfig.h"
|
2017-09-08 08:13:26 +00:00
|
|
|
#import "React/RCTLog.h"
|
2016-07-20 09:03:05 +00:00
|
|
|
#import "RCTBundleURLProvider.h"
|
2018-08-23 01:54:29 +00:00
|
|
|
#import "RNSplashScreen.h"
|
2018-06-28 19:31:31 +00:00
|
|
|
#import "RCTLinkingManager.h"
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2020-05-01 07:20:06 +00:00
|
|
|
#import <React/RCTBridge.h>
|
|
|
|
#import <React/RCTBundleURLProvider.h>
|
|
|
|
#import <React/RCTRootView.h>
|
|
|
|
|
|
|
|
#if ENABLE_FLIPPER
|
|
|
|
#import <FlipperKit/FlipperClient.h>
|
|
|
|
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
|
|
|
|
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
|
|
|
|
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
|
|
|
|
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
|
|
|
|
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
|
|
|
|
|
|
|
|
static void InitializeFlipper(UIApplication *application) {
|
|
|
|
FlipperClient *client = [FlipperClient sharedClient];
|
|
|
|
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
|
|
|
|
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
|
|
|
|
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
|
|
|
|
[client addPlugin:[FlipperKitReactPlugin new]];
|
|
|
|
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
|
|
|
|
[client start];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-05-08 12:26:39 +00:00
|
|
|
@implementation AppDelegate
|
|
|
|
{
|
|
|
|
UIView *_blankView;
|
|
|
|
}
|
2016-02-22 22:04:42 +00:00
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
|
|
{
|
2020-05-01 07:20:06 +00:00
|
|
|
#if ENABLE_FLIPPER
|
|
|
|
InitializeFlipper(application);
|
|
|
|
#endif
|
2016-12-11 11:09:12 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2016-02-22 22:04:42 +00:00
|
|
|
NSURL *jsCodeLocation;
|
|
|
|
|
2017-12-22 21:49:58 +00:00
|
|
|
/* Set logging level from React Native */
|
|
|
|
NSString *logLevel = [ReactNativeConfig envFor:@"LOG_LEVEL"];
|
|
|
|
if([logLevel isEqualToString:@"error"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelError);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"warn"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelWarning);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"info"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelInfo);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"debug"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelTrace);
|
2017-09-08 08:13:26 +00:00
|
|
|
}
|
|
|
|
|
2019-05-08 12:26:39 +00:00
|
|
|
NSDictionary *appDefaults = [NSDictionary
|
|
|
|
dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:@"BLANK_PREVIEW"];
|
|
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
|
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
2016-05-19 16:32:38 +00:00
|
|
|
moduleName:@"StatusIm"
|
2019-03-04 12:38:41 +00:00
|
|
|
initialProperties:nil];
|
2016-07-20 09:03:05 +00:00
|
|
|
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
2019-05-08 12:26:39 +00:00
|
|
|
_blankView = [[UIView alloc]initWithFrame:self.window.frame];
|
2020-05-02 09:24:21 +00:00
|
|
|
_blankView.backgroundColor = [UIColor whiteColor];
|
2019-05-08 12:26:39 +00:00
|
|
|
_blankView.alpha = 0;
|
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
UIViewController *rootViewController = [UIViewController new];
|
|
|
|
rootViewController.view = rootView;
|
|
|
|
self.window.rootViewController = rootViewController;
|
|
|
|
[self.window makeKeyAndVisible];
|
2018-08-23 01:54:29 +00:00
|
|
|
[RNSplashScreen show];
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2018-06-28 19:31:31 +00:00
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
|
|
openURL:(NSURL *)url
|
|
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application openURL:url options:options];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
|
|
|
|
restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application
|
|
|
|
continueUserActivity:userActivity
|
|
|
|
restorationHandler:restorationHandler];
|
|
|
|
}
|
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
#if DEBUG
|
|
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
|
|
#else
|
|
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-05-08 12:26:39 +00:00
|
|
|
- (void)applicationWillResignActive:(UIApplication *)application {
|
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"BLANK_PREVIEW"]) {
|
|
|
|
[self.window addSubview:_blankView];
|
|
|
|
[self.window bringSubviewToFront:_blankView];
|
|
|
|
|
|
|
|
[UIView animateWithDuration:0.5 animations:^{
|
|
|
|
_blankView.alpha = 1;
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"BLANK_PREVIEW"]) {
|
|
|
|
[UIView animateWithDuration:0.5 animations:^{
|
|
|
|
_blankView.alpha = 0;
|
|
|
|
} completion:^(BOOL finished) {
|
|
|
|
[_blankView removeFromSuperview];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
@end
|