mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 04:50:59 +00:00
61b8c61903
- [react_native] JS files for D1885531 | Martin Konicek - Ported TabBarIOS to OSS and unified implementation | Nick Lockwood - [react-packager] Add minify option as query param | Amjad Masad - [ReactNative] Fix ExpandingText prop types | Christopher Chedeau - [react-packager] Make dev a query param option | Amjad Masad
48 lines
1.3 KiB
Objective-C
48 lines
1.3 KiB
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTNavigatorManager.h"
|
|
|
|
#import "RCTBridge.h"
|
|
#import "RCTConvert.h"
|
|
#import "RCTNavigator.h"
|
|
#import "RCTSparseArray.h"
|
|
#import "RCTUIManager.h"
|
|
|
|
@implementation RCTNavigatorManager
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[RCTNavigator alloc] initWithEventDispatcher:self.bridge.eventDispatcher];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(requestedTopOfStack)
|
|
|
|
- (NSDictionary *)customDirectEventTypes
|
|
{
|
|
return @{
|
|
@"topNavigationProgress": @{
|
|
@"registrationName": @"onNavigationProgress"
|
|
},
|
|
};
|
|
}
|
|
|
|
// TODO: remove error callbacks
|
|
- (void)requestSchedulingJavaScriptNavigation:(NSNumber *)reactTag
|
|
errorCallback:(RCTResponseSenderBlock)errorCallback
|
|
callback:(__unused RCTResponseSenderBlock)callback
|
|
{
|
|
RCT_EXPORT();
|
|
|
|
[self.bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, RCTSparseArray *viewRegistry){
|
|
RCTNavigator *navigator = viewRegistry[reactTag];
|
|
if ([navigator isKindOfClass:[RCTNavigator class]]) {
|
|
BOOL wasAcquired = [navigator requestSchedulingJavaScriptNavigation];
|
|
callback(@[@(wasAcquired)]);
|
|
} else {
|
|
RCTLogError(@"Cannot set lock: %@ (tag #%@) is not an RCTNavigator", navigator, reactTag);
|
|
}
|
|
}];
|
|
}
|
|
|
|
@end
|