mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
c32d9bc423
- Update deps order - core modules first | Amjad Masad - [ReactNative] Workaround double cmd+r bug | Christopher Chedeau - [react-native] Nicer error for undefined or string tag names | Ben Alpert - [ReactNative] Fix script load from local files | Tadeu Zagallo - [react_native] JS files from D1961099: Format stack trace on native side | Alex Kotliarskyi - [ReactNative] Cleanup TabBar and its example | Christopher Chedeau - [ReactNative] Allow recover from debugger error | Tadeu Zagallo - [react-native] Update react to 0.13.1, jstransform alongside | Ben Alpert - Fixed tap-to-zoom in Groups photo viewer | Sumeet Vaidya - Fix hitTest for auto | Tadeu Zagallo - [ReactNative] Unfork RKRootView | Tadeu Zagallo - [react-packager] Ignore dotfiles in file watching | Amjad Masad
87 lines
2.7 KiB
Objective-C
87 lines
2.7 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* 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 "RCTDevMenu.h"
|
|
|
|
#import "RCTRedBox.h"
|
|
#import "RCTRootView.h"
|
|
#import "RCTSourceCode.h"
|
|
|
|
@interface RCTDevMenu () <UIActionSheetDelegate> {
|
|
BOOL _liveReload;
|
|
}
|
|
|
|
@property (nonatomic, weak) RCTBridge *bridge;
|
|
|
|
@end
|
|
|
|
@implementation RCTDevMenu
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
|
{
|
|
if (self = [super init]) {
|
|
_bridge = bridge;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)show
|
|
{
|
|
NSString *debugTitle = self.bridge.executorClass == Nil ? @"Enable Debugging" : @"Disable Debugging";
|
|
NSString *liveReloadTitle = _liveReload ? @"Disable Live Reload" : @"Enable Live Reload";
|
|
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"React Native: Development"
|
|
delegate:self
|
|
cancelButtonTitle:@"Cancel"
|
|
destructiveButtonTitle:nil
|
|
otherButtonTitles:@"Reload", debugTitle, liveReloadTitle, nil];
|
|
actionSheet.actionSheetStyle = UIBarStyleBlack;
|
|
[actionSheet showInView:[[[[UIApplication sharedApplication] keyWindow] rootViewController] view]];
|
|
}
|
|
|
|
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
|
|
{
|
|
if (buttonIndex == 0) {
|
|
[self.bridge reload];
|
|
} else if (buttonIndex == 1) {
|
|
self.bridge.executorClass = self.bridge.executorClass == Nil ? NSClassFromString(@"RCTWebSocketExecutor") : nil;
|
|
[self.bridge reload];
|
|
} else if (buttonIndex == 2) {
|
|
_liveReload = !_liveReload;
|
|
[self _pollAndReload];
|
|
}
|
|
}
|
|
|
|
- (void)_pollAndReload
|
|
{
|
|
if (_liveReload) {
|
|
RCTSourceCode *sourceCodeModule = self.bridge.modules[NSStringFromClass([RCTSourceCode class])];
|
|
NSURL *url = sourceCodeModule.scriptURL;
|
|
NSURL *longPollURL = [[NSURL alloc] initWithString:@"/onchange" relativeToURL:url];
|
|
[self performSelectorInBackground:@selector(_checkForUpdates:) withObject:longPollURL];
|
|
}
|
|
}
|
|
|
|
- (void)_checkForUpdates:(NSURL *)URL
|
|
{
|
|
NSMutableURLRequest *longPollRequest = [NSMutableURLRequest requestWithURL:URL];
|
|
longPollRequest.timeoutInterval = 30;
|
|
NSHTTPURLResponse *response;
|
|
[NSURLConnection sendSynchronousRequest:longPollRequest returningResponse:&response error:nil];
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
if (_liveReload && response.statusCode == 205) {
|
|
[[RCTRedBox sharedInstance] dismiss];
|
|
[self.bridge reload];
|
|
}
|
|
[self _pollAndReload];
|
|
});
|
|
}
|
|
|
|
@end
|