mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 22:58:19 +00:00
Summary: There is no need to make JS calls to start or stop React Native apps; Scheduler does it automatically. Yay! With this change (because we have to change Scheduler API) we are starting slow process migrating away from using term `reactRootTag` when we refer to running a ReactNative app (aka Surface). We will use `surfaceId` instead. We plan to slowly and gracefully retire `reactTag` term entity replacing it with several appropriate entities specific for particular usage, e.g. `viewId` (some id which makes sense for mounting), `surfaceId`, `nodeId` (unique id representing nodes which were cloned from the original one), or `eventTarget`. Reviewed By: mdvacca Differential Revision: D9999336 fbshipit-source-id: bbc7303c195b070b8c235c9ca35546d1dc693e98
65 lines
2.0 KiB
Objective-C
65 lines
2.0 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 <UIKit/UIKit.h>
|
|
#import <memory>
|
|
|
|
#import <React/RCTPrimitives.h>
|
|
#import <fabric/core/LayoutConstraints.h>
|
|
#import <fabric/core/LayoutContext.h>
|
|
#import <fabric/uimanager/FabricUIManager.h>
|
|
#import <fabric/uimanager/ShadowViewMutation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class RCTMountingManager;
|
|
|
|
/**
|
|
* Exactly same semantic as `facebook::react::SchedulerDelegate`.
|
|
*/
|
|
@protocol RCTSchedulerDelegate
|
|
|
|
- (void)schedulerDidFinishTransaction:(facebook::react::ShadowViewMutationList)mutations
|
|
rootTag:(ReactTag)rootTag;
|
|
|
|
- (void)schedulerDidRequestPreliminaryViewAllocationWithComponentName:(NSString *)componentName;
|
|
|
|
@end
|
|
|
|
/**
|
|
* `facebook::react::Scheduler` as an Objective-C class.
|
|
*/
|
|
@interface RCTScheduler : NSObject
|
|
|
|
@property (atomic, weak, nullable) id<RCTSchedulerDelegate> delegate;
|
|
|
|
- (instancetype)initWithContextContainer:(std::shared_ptr<void>)contextContatiner;
|
|
|
|
- (void)startSurfaceWithSurfaceId:(facebook::react::SurfaceId)surfaceId
|
|
moduleName:(NSString *)moduleName
|
|
initailProps:(NSDictionary *)initialProps;
|
|
|
|
- (void)stopSurfaceWithSurfaceId:(facebook::react::SurfaceId)surfaceId;
|
|
|
|
- (CGSize)measureSurfaceWithLayoutConstraints:(facebook::react::LayoutConstraints)layoutConstraints
|
|
layoutContext:(facebook::react::LayoutContext)layoutContext
|
|
surfaceId:(facebook::react::SurfaceId)surfaceId;
|
|
|
|
- (void)constraintSurfaceLayoutWithLayoutConstraints:(facebook::react::LayoutConstraints)layoutConstraints
|
|
layoutContext:(facebook::react::LayoutContext)layoutContext
|
|
surfaceId:(facebook::react::SurfaceId)surfaceId;
|
|
|
|
@end
|
|
|
|
@interface RCTScheduler (Deprecated)
|
|
|
|
- (std::shared_ptr<facebook::react::FabricUIManager>)uiManager_DO_NOT_USE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|