react-native/React/Fabric/RCTSurfacePresenter.h

61 lines
1.5 KiB
Objective-C

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <UIKit/UIKit.h>
#import <memory>
#import <React/RCTBridge.h>
#import <React/RCTCxxExceptionManager.h>
#import <fabric/uimanager/FabricUIManager.h>
NS_ASSUME_NONNULL_BEGIN
@class RCTFabricSurface;
@class RCTMountingManager;
/**
* Coordinates presenting of React Native Surfaces and represents application
* facing interface of running React Native core.
* SurfacePresenter incapsulates a bridge object inside and discourage direct
* access to it.
*/
@interface RCTSurfacePresenter : NSObject
- (instancetype)initWithBridge:(RCTBridge *)bridge;
@end
@interface RCTSurfacePresenter (Internal)
/**
* Surface uses those methods to register itself in the Presenter.
* Registering initiates running, rendering and mounting processes.
*/
- (void)registerSurface:(RCTFabricSurface *)surface;
- (void)unregisterSurface:(RCTFabricSurface *)surface;
@end
@interface RCTSurfacePresenter (Deprecated)
/**
* We need to expose `exceptionManager` and `uiManager` for registration
* purposes. Eventually, we will move this down to C++ side.
*/
- (std::shared_ptr<facebook::react::ExceptionManager>)exceptionManager_DO_NOT_USE;
- (std::shared_ptr<facebook::react::FabricUIManager>)uiManager_DO_NOT_USE;
@end
@interface RCTBridge (RCTSurfacePresenter)
- (RCTSurfacePresenter *)surfacePresenter;
@end
NS_ASSUME_NONNULL_END