react-native/React/Modules/RCTSourceCode.m

44 lines
1.1 KiB
Mathematica
Raw Normal View History

/**
* 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 "RCTSourceCode.h"
2015-08-28 12:45:26 +00:00
#import "RCTDefines.h"
#import "RCTAssert.h"
2015-04-20 21:04:53 +00:00
#import "RCTBridge.h"
#import "RCTUtils.h"
@implementation RCTSourceCode
RCT_EXPORT_MODULE()
2015-04-20 21:04:53 +00:00
@synthesize bridge = _bridge;
2015-08-28 12:45:26 +00:00
#if !RCT_DEV
- (void)setScriptText:(NSString *)scriptText {}
#endif
2015-04-08 15:52:48 +00:00
RCT_EXPORT_METHOD(getScriptText:(RCTResponseSenderBlock)successCallback
failureCallback:(RCTResponseErrorBlock)failureCallback)
{
2015-08-28 12:45:26 +00:00
if (RCT_DEV && self.scriptText && self.scriptURL) {
successCallback(@[@{@"text": self.scriptText, @"url": self.scriptURL.absoluteString}]);
} else {
failureCallback(RCTErrorWithMessage(@"Source code is not available"));
}
}
2015-09-02 20:51:53 +00:00
- (NSDictionary *)constantsToExport
{
NSString *URL = self.bridge.bundleURL.absoluteString ?: @"";
return @{@"scriptURL": URL};
}
@end