mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 14:48:25 +00:00
Summary: We are moving to more stable APIs removing all mentiones of the effort name from the codebase. Reviewed By: mdvacca Differential Revision: D12912894 fbshipit-source-id: 4a0c6b9e7454b8b14e62d419e9e9311dc0c56e7a
60 lines
2.0 KiB
Objective-C
60 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 <react/core/LayoutConstraints.h>
|
|
#import <react/core/LayoutContext.h>
|
|
#import <react/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
|
|
layoutConstraints:(facebook::react::LayoutConstraints)layoutConstraints
|
|
layoutContext:(facebook::react::LayoutContext)layoutContext;
|
|
|
|
- (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
|
|
|
|
NS_ASSUME_NONNULL_END
|