Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
95 lines
3.1 KiB
Plaintext
95 lines
3.1 KiB
Plaintext
/*
|
|
* 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
|