使 Fabric 组件与传统原生组件兼容
这个文档仍然是实验性的,随着我们的迭代,细节会有变化。欢迎在工作小组内的讨论中分享你的反馈。
此外,它还包含几个手动步骤。请注意新架构尚未稳定下来,最终的开发者体验会继续迭代改善。我们正在努力开发工具、模板和库,以帮助你在新架构上快速入门,而不需要经历整个设置过程。
创建向后兼容的 Fabric 原生组件可以让用户独立于他们使用的架构继续利用您的库。创建这样一个组件需要以下几个步骤:
- 配置库,使得依赖项能够为旧和新架构正确设置。
- 更新代码库,以便在不可用时不编译新架构类型。
- 统一 JavaScript API,使得用户代码无需更改。
我们将在本指南中使用以下术语:
- 传统原生组件 - 用于指代运行在旧版 React Native 架构上的组件。
- Fabric 原生组件 - 用于指代已经适配新版原生渲染器 Fabric 的组件。为简洁起见,我们称之为Fabric 组件。
新架构对于 TypeScript 的支持尚处于 beta 测试阶段。
虽然最后一步对于所有平台都是相同的,但前两步在 iOS 和 Android 上是不同的。
配置 Fabric 原生组件依赖
iOS
Apple 平台使用 Cocoapods 作为依赖管理器来安装 Fabric 原生组件。
如果您已经在使用install_module_dependencies
函数,那么无需进行任何操作。该函数已经在启用新架构时自动安装适当的依赖项,并在未启用时避免它们。
否则,您的 Fabric 原生组件的podspec
应如下所示:
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
Pod::Spec.new do |s|
# Default fields for a valid podspec
s.name = "<FC Name>"
s.version = package["version"]
s.summary = package["description"]
s.description = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.platforms = { :ios => "11.0" }
s.author = package["author"]
s.source = { :git => package["repository"], :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm,swift}"
# React Native Core dependency
s.dependency "React-Core"
# The following lines are required by the New Architecture.
s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
"OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
}
s.dependency "React-RCTFabric"
s.dependency "React-Codegen"
s.dependency "RCT-Folly"
s.dependency "RCTRequired"
s.dependency "RCTTypeSafety"
s.dependency "ReactCommon/turbomodule/core"
end
当启用新架构时,应安装额外的依赖项,并在未启用时避免安装它们。
为了实现这一点,您可以使用 install_modules_dependencies
。请按照以下步骤更新 .podspec
文件:
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
Pod::Spec.new do |s|
# Default fields for a valid podspec
s.name = "<FC Name>"
s.version = package["version"]
s.summary = package["description"]
s.description = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.platforms = { :ios => "11.0" }
s.author = package["author"]
s.source = { :git => package["repository"], :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm,swift}"
# React Native Core dependency
+ install_modules_dependencies(s)
- s.dependency "React-Core"
- # The following lines are required by the New Architecture.
- s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
- s.pod_target_xcconfig = {
- "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
- }
-
- s.dependency "React-RCTFabric"
- s.dependency "React-Codegen"
- s.dependency "RCT-Folly"
- s.dependency "RCTRequired"
- s.dependency "RCTTypeSafety"
- s.dependency "ReactCommon/turbomodule/core"
end
Android
要创建一个在两种架构中都能使用的原生组件,您需要配置 Gradle 以根据所选架构选择哪些文件需要编译。这可以通过在 Gradle 配置中使用不同的 sourceSets来实现。
请注意,这是目前建议的方法。虽然可能会导致一些代码重复,但它将确保与两种架构的最大兼容性。您将在下一节中了解如何减少重复。
要配置 Fabric 原生组件以选择正确的 sourceSet,您需要按照以下方式更新 build.gradle
文件:
+// Add this function in case you don't have it already
+ def isNewArchitectureEnabled() {
+ return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
+}
// ... other parts of the build file
defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 21)
targetSdkVersion safeExtGet('targetSdkVersion', 31)
+ buildConfigField("boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString())
+ }
+
+ sourceSets {
+ main {
+ if (isNewArchitectureEnabled()) {
+ java.srcDirs += ['src/newarch']
+ } else {
+ java.srcDirs += ['src/oldarch']
+ }
+ }
}
}
这些更改主要做了三个事情:
- 第一行定义了一个函数,用于返回新架构是否已启用。
buildConfigField
行定义了一个名为IS_NEW_ARCHITECTURE_ENABLED
的构建配置布尔字段,并使用第一步中声明的函数进行初始化。这允许您在运行时检查用户是否指定了newArchEnabled
属性。- 最后几行利用第一步中声明的函数来决定我们需要构建哪些源集,具体取决于所选择的架构。
更新代码库
iOS
第二步是指示 Xcode 在构建旧架构的应用程序时避免编译所有使用新架构类型和文件的行。
Fabric 原生组件需要一个头文件和一个实现文件来将实际的View
添加到模块中。
例如,RNMyComponentView.h
头文件可能如下所示:
#import <React/RCTViewComponentView.h>
#import <UIKit/UIKit.h>
#ifndef NativeComponentExampleComponentView_h
#define NativeComponentExampleComponentView_h
NS_ASSUME_NONNULL_BEGIN
@interface RNMyComponentView : RCTViewComponentView
@end
NS_ASSUME_NONNULL_END
#endif /* NativeComponentExampleComponentView_h */
The implementation RNMyComponentView.mm
file, instead, could look like this:
#import "RNMyComponentView.h"
// <react/renderer imports>
#import "RCTFabricComponentsPlugins.h"
using namespace facebook::react;
@interface RNMyComponentView () <RCTMyComponentViewViewProtocol>
@end
@implementation RNMyComponentView {
UIView * _view;
}
+ (ComponentDescriptorProvider)componentDescriptorProvider
{
// ... return the descriptor ...
}
- (instancetype)initWithFrame:(CGRect)frame
{
// ... initialize the object ...
}
- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps
{
// ... set up the props ...
[super updateProps:props oldProps:oldProps];
}
Class<RCTComponentViewProtocol> MyComponentViewCls(void)
{
return RNMyComponentView.class;
}
@end
为了确保 Xcode 跳过这些文件,我们可以将它们同时包含在一些 #ifdef RCT_NEW_ARCH_ENABLED
编译指令中。例如,头文件可以按以下方式更改:
+ #ifdef RCT_NEW_ARCH_ENABLED
#import <React/RCTViewComponentView.h>
#import <UIKit/UIKit.h>
// ... rest of the header file ...
#endif /* NativeComponentExampleComponentView_h */
+ #endif
在实现文件中,应将相同的两行代码添加为第一行和最后一行。
上面的片段使用了与前一个部分中使用的RCT_NEW_ARCH_ENABLED
标志相同。当未设置此标志时,Xcode 在编译期间跳过#ifdef
内的代码,并且不将其包含到已编译二进制文件中。已编译二进制文件将具有 RNMyComponentView.o
对象,但它将是一个空对象。
Android
由于在 Android 上无法使用条件编译块,因此我们将定义两个不同的源集。这将允许创建一个向后兼容的 TurboModule,并根据所使用的架构加载和编译适当的源。
因此,您需要: