first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/*
* 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.
*/
#pragma once
#import <memory>
#import <string>
#import <Foundation/Foundation.h>
namespace facebook::react {
class CallInvoker;
class TurboModule;
} // namespace facebook::react
@interface RCTAnimatedModuleProvider : NSObject
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name
jsInvoker:
(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker;
@end

View File

@@ -0,0 +1,94 @@
/*
* 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 "RCTAnimatedModuleProvider.h"
#import <functional>
#if TARGET_OS_OSX
#import <React/RCTPlatformDisplayLink.h>
#else
#import <QuartzCore/CADisplayLink.h>
#endif
#import <react/renderer/animated/AnimatedModule.h>
#import <react/renderer/animated/NativeAnimatedNodesManagerProvider.h>
@implementation RCTAnimatedModuleProvider {
#if TARGET_OS_OSX
RCTPlatformDisplayLink *_displayLink;
#else
CADisplayLink *_displayLink;
#endif
std::function<void()> _onRender;
}
- (void)_onDisplayLinkTick
{
if (_displayLink != nullptr && _onRender != nullptr) {
_onRender();
}
}
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name
jsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker
{
if (facebook::react::ReactNativeFeatureFlags::cxxNativeAnimatedEnabled()) {
if (name == facebook::react::AnimatedModule::kModuleName) {
__weak RCTAnimatedModuleProvider *weakSelf = self;
auto provider = std::make_shared<facebook::react::NativeAnimatedNodesManagerProvider>(
[weakSelf](std::function<void()> &&onRender, bool isAsync) {
const auto start_render = [weakSelf, onRender]() {
RCTAnimatedModuleProvider *strongSelf = weakSelf;
if (strongSelf) {
strongSelf->_onRender = onRender;
if (strongSelf->_displayLink == nil) {
#if TARGET_OS_OSX
strongSelf->_displayLink =
[RCTPlatformDisplayLink displayLinkWithTarget:strongSelf selector:@selector(_onDisplayLinkTick)];
#else
strongSelf->_displayLink = [CADisplayLink displayLinkWithTarget:strongSelf
selector:@selector(_onDisplayLinkTick)];
#endif
[strongSelf->_displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];
}
}
};
if (isAsync) {
dispatch_async(dispatch_get_main_queue(), ^{
start_render();
});
} else {
start_render();
}
},
[weakSelf](bool isAsync) {
const auto stop_render = [weakSelf]() {
RCTAnimatedModuleProvider *strongSelf = weakSelf;
if (strongSelf) {
if (strongSelf->_displayLink != nil) {
[strongSelf->_displayLink invalidate];
strongSelf->_displayLink = nil;
strongSelf->_onRender = nullptr;
}
}
};
if (isAsync) {
dispatch_async(dispatch_get_main_queue(), ^{
stop_render();
});
} else {
stop_render();
}
});
return std::make_shared<facebook::react::AnimatedModule>(std::move(jsInvoker), std::move(provider));
}
}
return nullptr;
}
@end