Ei kuvausta

MainApplicationReactNativeHost.java 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.test.newarchitecture;
  2. import android.app.Application;
  3. import androidx.annotation.NonNull;
  4. import com.facebook.react.PackageList;
  5. import com.facebook.react.ReactInstanceManager;
  6. import com.facebook.react.ReactNativeHost;
  7. import com.facebook.react.ReactPackage;
  8. import com.facebook.react.ReactPackageTurboModuleManagerDelegate;
  9. import com.facebook.react.bridge.JSIModulePackage;
  10. import com.facebook.react.bridge.JSIModuleProvider;
  11. import com.facebook.react.bridge.JSIModuleSpec;
  12. import com.facebook.react.bridge.JSIModuleType;
  13. import com.facebook.react.bridge.JavaScriptContextHolder;
  14. import com.facebook.react.bridge.ReactApplicationContext;
  15. import com.facebook.react.bridge.UIManager;
  16. import com.facebook.react.fabric.ComponentFactory;
  17. import com.facebook.react.fabric.CoreComponentsRegistry;
  18. import com.facebook.react.fabric.EmptyReactNativeConfig;
  19. import com.facebook.react.fabric.FabricJSIModuleProvider;
  20. import com.facebook.react.fabric.ReactNativeConfig;
  21. import com.facebook.react.uimanager.ViewManagerRegistry;
  22. import com.test.BuildConfig;
  23. import com.test.newarchitecture.components.MainComponentsRegistry;
  24. import com.test.newarchitecture.modules.MainApplicationTurboModuleManagerDelegate;
  25. import java.util.ArrayList;
  26. import java.util.List;
  27. /**
  28. * A {@link ReactNativeHost} that helps you load everything needed for the New Architecture, both
  29. * TurboModule delegates and the Fabric Renderer.
  30. *
  31. * <p>Please note that this class is used ONLY if you opt-in for the New Architecture (see the
  32. * `newArchEnabled` property). Is ignored otherwise.
  33. */
  34. public class MainApplicationReactNativeHost extends ReactNativeHost {
  35. public MainApplicationReactNativeHost(Application application) {
  36. super(application);
  37. }
  38. @Override
  39. public boolean getUseDeveloperSupport() {
  40. return BuildConfig.DEBUG;
  41. }
  42. @Override
  43. protected List<ReactPackage> getPackages() {
  44. List<ReactPackage> packages = new PackageList(this).getPackages();
  45. // Packages that cannot be autolinked yet can be added manually here, for example:
  46. // packages.add(new MyReactNativePackage());
  47. // TurboModules must also be loaded here providing a valid TurboReactPackage implementation:
  48. // packages.add(new TurboReactPackage() { ... });
  49. // If you have custom Fabric Components, their ViewManagers should also be loaded here
  50. // inside a ReactPackage.
  51. return packages;
  52. }
  53. @Override
  54. protected String getJSMainModuleName() {
  55. return "index";
  56. }
  57. @NonNull
  58. @Override
  59. protected ReactPackageTurboModuleManagerDelegate.Builder
  60. getReactPackageTurboModuleManagerDelegateBuilder() {
  61. // Here we provide the ReactPackageTurboModuleManagerDelegate Builder. This is necessary
  62. // for the new architecture and to use TurboModules correctly.
  63. return new MainApplicationTurboModuleManagerDelegate.Builder();
  64. }
  65. @Override
  66. protected JSIModulePackage getJSIModulePackage() {
  67. return new JSIModulePackage() {
  68. @Override
  69. public List<JSIModuleSpec> getJSIModules(
  70. final ReactApplicationContext reactApplicationContext,
  71. final JavaScriptContextHolder jsContext) {
  72. final List<JSIModuleSpec> specs = new ArrayList<>();
  73. // Here we provide a new JSIModuleSpec that will be responsible of providing the
  74. // custom Fabric Components.
  75. specs.add(
  76. new JSIModuleSpec() {
  77. @Override
  78. public JSIModuleType getJSIModuleType() {
  79. return JSIModuleType.UIManager;
  80. }
  81. @Override
  82. public JSIModuleProvider<UIManager> getJSIModuleProvider() {
  83. final ComponentFactory componentFactory = new ComponentFactory();
  84. CoreComponentsRegistry.register(componentFactory);
  85. // Here we register a Components Registry.
  86. // The one that is generated with the template contains no components
  87. // and just provides you the one from React Native core.
  88. MainComponentsRegistry.register(componentFactory);
  89. final ReactInstanceManager reactInstanceManager = getReactInstanceManager();
  90. ViewManagerRegistry viewManagerRegistry =
  91. new ViewManagerRegistry(
  92. reactInstanceManager.getOrCreateViewManagers(reactApplicationContext));
  93. return new FabricJSIModuleProvider(
  94. reactApplicationContext,
  95. componentFactory,
  96. ReactNativeConfig.DEFAULT_CONFIG,
  97. viewManagerRegistry);
  98. }
  99. });
  100. return specs;
  101. }
  102. };
  103. }
  104. }