mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Changelog: [iOS][Fixed] - Expose the extraData dict attached to JavaScript errors to the native ExceptionManager on iOS, similar to Android Attaching the `extraData` dict to JavaScript crash reports is something that was done for Android only in 2019 (D16133080 (https://github.com/facebook/react-native/commit/3a825c036065783aae6fb734028f986dbead80d7)), and somehow we never really got around to adding it in iOS. This diff finally adds the capability to iOS as well. `extraData` can be used to attach various bits of data to a crash report for better debugging and categorization. As with the Android implementation, `extraData` is not attached if the `reportException` API is not used. Reviewed By: dmitryrykun Differential Revision: D35743658 fbshipit-source-id: de4060cb6e514db1d85907441a8962f98e9b8392
51 lines
1.8 KiB
Objective-C
51 lines
1.8 KiB
Objective-C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <string>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol RCTExceptionsManagerDelegate <NSObject>
|
|
|
|
- (void)handleSoftJSExceptionWithMessage:(nullable NSString *)message
|
|
stack:(nullable NSArray *)stack
|
|
exceptionId:(NSNumber *)exceptionId
|
|
extraDataAsJSON:(nullable NSString *)extraDataAsJSON;
|
|
- (void)handleFatalJSExceptionWithMessage:(nullable NSString *)message
|
|
stack:(nullable NSArray *)stack
|
|
exceptionId:(NSNumber *)exceptionId
|
|
extraDataAsJSON:(nullable NSString *)extraDataAsJSON;
|
|
|
|
@optional
|
|
- (void)updateJSExceptionWithMessage:(nullable NSString *)message
|
|
stack:(nullable NSArray *)stack
|
|
exceptionId:(NSNumber *)exceptionId;
|
|
|
|
@end
|
|
|
|
@interface RCTExceptionsManager : NSObject <RCTBridgeModule>
|
|
|
|
- (instancetype)initWithDelegate:(id<RCTExceptionsManagerDelegate>)delegate;
|
|
|
|
- (void)reportSoftException:(nullable NSString *)message
|
|
stack:(nullable NSArray<NSDictionary *> *)stack
|
|
exceptionId:(double)exceptionId;
|
|
- (void)reportFatalException:(nullable NSString *)message
|
|
stack:(nullable NSArray<NSDictionary *> *)stack
|
|
exceptionId:(double)exceptionId;
|
|
- (void)reportEarlyJsException:(std::string)errorMap;
|
|
|
|
@property (nonatomic, weak) id<RCTExceptionsManagerDelegate> delegate;
|
|
|
|
@property (nonatomic, assign) NSUInteger maxReloadAttempts;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|