mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2a13f12106
Summary: This diff adds back RN reload reason, which was removed earlier in the stack. cc/Rick For callsites which already had a reason, I kept the string exactly the same. For callsites which didn't have a reason, I made up something reasonable. Changelog: [Internal][Fixed] Re-implemented bridge reload reason text. Reviewed By: RSNara Differential Revision: D18074478 fbshipit-source-id: 64a3cd7718674a7ba7228a80e34791ce9f153f9f
36 lines
1.1 KiB
Objective-C
36 lines
1.1 KiB
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its 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/RCTDefines.h>
|
|
|
|
/**
|
|
* A protocol which should be conformed to in order to be notified of RN reload events. These events can be
|
|
* created by CMD+R or dev menu during development, or anywhere the trigger is exposed to JS.
|
|
* The listener must also register itself using the method below.
|
|
*/
|
|
@protocol RCTReloadListener
|
|
- (void)didReceiveReloadCommand;
|
|
@end
|
|
|
|
/**
|
|
* Registers a weakly-held observer of RN reload events.
|
|
*/
|
|
RCT_EXTERN void RCTRegisterReloadCommandListener(id<RCTReloadListener> listener);
|
|
|
|
/**
|
|
* Triggers a reload for all current listeners. Replaces [_bridge reload].
|
|
*/
|
|
RCT_EXTERN void RCTTriggerReloadCommandListeners(NSString *reason);
|
|
|
|
/**
|
|
* This notification fires anytime RCTTriggerReloadCommandListeners() is called.
|
|
*/
|
|
RCT_EXTERN NSString *const RCTTriggerReloadCommandNotification;
|
|
RCT_EXTERN NSString *const RCTTriggerReloadCommandReasonKey; // key in userInfo for RCTTriggerReloadCommandNotification
|