2015-03-23 20:28:42 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2015-03-23 20:28:42 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 20:28:42 +00:00
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTBridge.h>
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#import <React/RCTErrorCustomizer.h>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2017-10-05 20:17:07 +00:00
|
|
|
@class RCTJSStackFrame;
|
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
@interface RCTRedBox : NSObject <RCTBridgeModule>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-07-18 18:27:55 +00:00
|
|
|
- (void)registerErrorCustomizer:(id<RCTErrorCustomizer>)errorCustomizer;
|
2015-07-14 23:11:42 +00:00
|
|
|
- (void)showError:(NSError *)error;
|
2015-02-20 04:10:52 +00:00
|
|
|
- (void)showErrorMessage:(NSString *)message;
|
|
|
|
- (void)showErrorMessage:(NSString *)message withDetails:(NSString *)details;
|
2016-07-01 02:38:53 +00:00
|
|
|
- (void)showErrorMessage:(NSString *)message withRawStack:(NSString *)rawStack;
|
2015-11-03 22:45:46 +00:00
|
|
|
- (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
|
|
|
|
- (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack;
|
2017-10-05 20:17:07 +00:00
|
|
|
- (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<RCTJSStackFrame *> *)stack;
|
|
|
|
- (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<RCTJSStackFrame *> *)stack;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
- (void)dismiss;
|
2015-06-09 21:51:25 +00:00
|
|
|
|
2017-10-05 20:17:07 +00:00
|
|
|
/** Overrides bridge.bundleURL. Modify on main thread only. You shouldn't need to use this. */
|
|
|
|
@property (nonatomic, strong) NSURL *overrideBundleURL;
|
|
|
|
|
|
|
|
/** Overrides the default behavior of calling [bridge reload] on reload. You shouldn't need to use this. */
|
|
|
|
@property (nonatomic, strong) dispatch_block_t overrideReloadAction;
|
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
@end
|
2015-03-14 01:32:38 +00:00
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
/**
|
|
|
|
* This category makes the red box instance available via the RCTBridge, which
|
|
|
|
* is useful for any class that needs to access the red box or error log.
|
|
|
|
*/
|
|
|
|
@interface RCTBridge (RCTRedBox)
|
|
|
|
|
|
|
|
@property (nonatomic, readonly) RCTRedBox *redBox;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@end
|