skip to content
Andrei Calazans

React Native Weekly - W48 2021

/ 4 min read

Welcome to the 36th edition of React Native Weekly!

This is week 48 of 2021: November 22nd to 28th.

Complete Fabric Native Component Example [Android]

Last week we saw the commit that introduced the Fabric native component on iOS, this week, Nicola Corti ncor@fb.com added the Android version.

A few things to notice:

1) adding the custom “MyNativeViewManager” to the view manager registry

diff --git a/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/RNTesterApplication.java b/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/RNTesterApplication.java
index 643c4627618..70d834076ec 100644
--- a/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/RNTesterApplication.java
+++ b/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/RNTesterApplication.java
+              },
+              new ReactPackage() {
+                @NonNull
+                @Override
+                public List<NativeModule> createNativeModules(
+                    @NonNull ReactApplicationContext reactContext) {
+                  return Collections.emptyList();
+                }
+
+                @NonNull
+                @Override
+                public List<ViewManager> createViewManagers(
+                    @NonNull ReactApplicationContext reactContext) {
+                  return Collections.singletonList(new MyNativeViewManager());
+                }

2) the implementation of the custom “MyNativeViewManager”

It extends the core View component and implements the callNativeMethodToChangeBackgroundColor method.

diff --git a/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/component/MyNativeViewManager.java b/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/component/MyNativeViewManager.java
new file mode 100644
index 00000000000..839d6ab4dbb
--- /dev/null
+++ b/packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/component/MyNativeViewManager.java
@@ -0,0 +1,70 @@
+/*
+ * 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.
+ */
+
+package com.facebook.react.uiapp.component;
+
+import android.graphics.Color;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import com.facebook.react.bridge.ReadableArray;
+import com.facebook.react.module.annotations.ReactModule;
+import com.facebook.react.uimanager.SimpleViewManager;
+import com.facebook.react.uimanager.ThemedReactContext;
+import com.facebook.react.uimanager.ViewManagerDelegate;
+import com.facebook.react.uimanager.ViewProps;
+import com.facebook.react.uimanager.annotations.ReactProp;
+import com.facebook.react.viewmanagers.RNTMyNativeViewManagerDelegate;
+import com.facebook.react.viewmanagers.RNTMyNativeViewManagerInterface;
+
+/** View manager for {@link MyNativeView} components. */
+@ReactModule(name = MyNativeViewManager.REACT_CLASS)
+public class MyNativeViewManager extends SimpleViewManager<MyNativeView>
+    implements RNTMyNativeViewManagerInterface<MyNativeView> {
+
+  public static final String REACT_CLASS = "RNTMyNativeView";
+
+  private final ViewManagerDelegate<MyNativeView> mDelegate;
+
+  public MyNativeViewManager() {
+    mDelegate = new RNTMyNativeViewManagerDelegate<>(this);
+  }
+
+  @Nullable
+  @Override
+  protected ViewManagerDelegate<MyNativeView> getDelegate() {
+    return mDelegate;
+  }
+
+  @NonNull
+  @Override
+  public String getName() {
+    return REACT_CLASS;
+  }
+
+  @NonNull
+  @Override
+  protected MyNativeView createViewInstance(@NonNull ThemedReactContext reactContext) {
+    return new MyNativeView(reactContext);
+  }
+
+  @Override
+  public void receiveCommand(
+      @NonNull MyNativeView view, String commandName, @Nullable ReadableArray args) {
+    mDelegate.receiveCommand(view, commandName, args);
+  }
+
+  @Override
+  public void callNativeMethodToChangeBackgroundColor(MyNativeView view, String color) {
+    view.setBackgroundColor(Color.parseColor(color));
+  }
+
+  @Override
+  @ReactProp(name = ViewProps.OPACITY, defaultFloat = 1.f)
+  public void setOpacity(@NonNull MyNativeView view, float opacity) {
+    super.setOpacity(view, opacity);
+  }
+}

3) Component registry plumbing

In the commit you can see a lot of work related to adding the native component to the native view component registry. Technically you would only need to do this once, and then every new native view would just be appended to the list.

Fix onLayout prop bug on KeyboardAvoidingView

Work by Jeffrey Hyer jeffrey.hyer@rainfocus.com, he fixed an issue where the KeyboardAvoidingView didn’t work as expected when you provided it with the onLayout prop.

According to Jeffrey: This happens because the KeyboardAvoidingView component relies on the onLayout prop internally, so when we supply the prop ourselves it overrides the internal implementation.

BEFOREAFTER
example of keyboarding avoiding viewexample of keyboarding avoiding view

Introduce macros to mock C functions

Phillip Pan phillippan@fb.com introduced RCTMockDef, a set of macros to mock C functions. If you are curious he adds an example of how to use it.

Bump Android Gradle Plugin to 7.

Commit

-        classpath("com.android.tools.build:gradle:4.2.2")
+        classpath("com.android.tools.build:gradle:7.0.1")

as a consequence of the above bump, Nicola Corti ncor@fb.com updated the libruntimeexector to be a shared lib instead of a static lib, he comments:

AGP 7.x is changing the path where we can find the precompiled static libraries. Therefore is getting complicated to share prebuilt .a files. I’m updating libruntimeexecutor to be a shared library instead so this will solve this issue for now.

Bump Android build to SDK 31

Commit

Use NSInteger for NS_ENUM instead of NSUInteger

Small chore by Phillip Pan phillippan@fb.com for the code to follow Apple’s recommendation.

React Native Skia

William Candillon and Christian Falch continue sharing updates on their progress with this imperative API. Update one and two.

Community

Done

That’s it for this week. If you want to see more checkout the previous week’s posts here. Subscribe to get notified when new posts are out = )Sa