Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recommend using interop layer first when adding new arch support to libraries #166

Merged
merged 7 commits into from Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -7,11 +7,13 @@ You can find New Architecture updates [here](https://github.com/reactwg/react-na
## Guides

- How to enable the New Architecture
- [For Apps](./docs/enable-apps.md)
- For Apps
- [Enable the New Architecture for Apps](./docs/enable-apps.md)
- For Libraries
- [Prerequisites](./docs/enable-libraries-prerequisites.md)
- [For Android](./docs/enable-libraries-android.md)
- [For iOS](./docs/enable-libraries-ios.md)
- [Make your library compatible with the New Architecture](./docs/enable-libraries.md)
- [Convert Library to TurboModules/Fabric APIs](./docs/enable-libraries-prerequisites.md)
- [Additional information for Android](./docs/enable-libraries-android.md)
- [Additional information for iOS](./docs/enable-libraries-ios.md)
- New Architecture Workflows
- [Create a Fabric Native Component](./docs/fabric-native-components.md)
- [Create a Turbo Native Module](./docs/turbo-modules.md)
Expand Down
5 changes: 4 additions & 1 deletion docs/enable-libraries-prerequisites.md
Expand Up @@ -2,7 +2,10 @@

# Enable the New Architecture for Libraries: Prerequisites

The following steps are prerequisites to ensure your modules and components are ready for the New Architecture.
> [!IMPORTANT]
> Before proceeding to convert your library to natively use TurboModules/Fabric, you should [ensure that it is compatible with the Interop Layer](enable-libraries.md). There is no known performance cost imposed by the Interop Layer, but it will be removed at some point in the future. Today, it's safe and recommended to use the Interop Layer as a first solution to make your library compatible with the New Architecture quickly, and then you can consider migrating to the native APIs in the near future.

This guide explains how to convert your library to use the TurboModules API and Fabric Component API natively, without the interop layer. The following steps are prerequisites to ensure your modules and components are ready for the New Architecture.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably the only nit here is:

Folks will ask themselves what are the pros/cons of using the Interop Layer no? Currently we're not aware of any performance cost imposed by the Interop Layer, but we know we intend to remove them at some point in the future. This is needed for example to remove Old Arch code which will reduce app size.

So we should probably clarify that today, it's safe to use the Interop Layer as a first solution without performance implications, and then consider migrating to the native APIs in the near future.


1. [Define Specs in JavaScript](#define-specs-in-javascript)
2. [Configure Codegen](#configure-codegen)
Expand Down
124 changes: 124 additions & 0 deletions docs/enable-libraries.md
@@ -0,0 +1,124 @@
[../README.md#Guides](../README.md#guides)

# Enable the New Architecture for Libraries

**The first step for supporting the New Architecture in your library is to ensure that it is compatible with the [Interop Layer](https://github.com/reactwg/react-native-new-architecture/discussions/135)**. The Interop Layer makes it possible to use existing native modules written for the legacy architecture with the New Architecture.

If your library is already fully converted to the TurboModules/Fabric APIs, then you can skip this guide. Otherwise, then **you should ensure compatibiltiy with the Interop Layer before proceeding to convert your library to natively use TurboModules/Fabric.**

Starting with React Native 0.74, the Interop Layer is enabled by default. If your library works with it, then no changes will be needed on the user's side in order to use your library.

> [!IMPORTANT]
> If you have already added a Codegen spec to your library, but the library is not fully converted to TurboModules/Fabric, we recommend that you delete it before proceeding. You can add this back when you are ready to convert your library to natively use TurboModules/Fabric without the Interop Layer.

## Ensuring compatibility with the Interop Layer

The Interop Layer will generally work out of the box with simple libraries, but the more complex your library is, the more likely it is that you will need to make some changes. The following sections will guide you through the process of verifying that your library works with the Interop Layer and fixing common issues that developers have encountered.

> [!NOTE]
> It is not necessary to test your library against the New Architecture with bridgeless _disabled_ — it is expected that from React Native 0.74, developers using the New Architecture will have bridgeless _enabled_.

## 1. Test your library with the New Architecture and the Interop Layer

Follow [the guide for testing your library against the latest version of React Native](https://gist.github.com/cipolleschi/82b7a9561b8861330efabbd3eb08c6f5). Be sure to test all of the functionality of your library to ensure that it works as expected.

## 2. Fix any compatibility issues you encounter

The following is a non-exhaustive list of common issues that developers have encountered when testing their libraries with the Interop Layer. If you encounter any of these issues, follow the provided guidance to fix them.

### [JavaScript] `XYZ is not a function (it is undefined)`

When accessing a module directly from `NativeModules` in the new architecture some operators won't work due to the fact that TurboModule uses object prototypes now, in order to lazily load methods. So, if you used an operator like the spread operator or a function like `Object.keys` on `NativeModules.YourModule` then you will need to change to use `Object.create`. Learn more in [facebook/react-native#43221](https://github.com/facebook/react-native/issues/43221).

<details>
<summary>Spread operator example</summary>

```js
// Before: spread operator worked, but it will not with interop
export default {
...NativeModules.RNCNetInfo,
get eventEmitter(): NativeEventEmitter {
...
}
}
```

```js
// After: use Object.create instead
Object.create(NativeModules.RNCNetInfo, {
eventEmitter: {
get: () => {...},
enumerable: true,
},
})
```

</details>

<details>
<summary>Object.keys example</summary>

```js
// Before: Object.keys worked, but it will not with interop
Object.keys(NativeModules.RNCNetInfo).forEach((key) => {
...
})
```

```js
// After: use for ... in instead
for (const key in NativeModules.RNCNetInfo) {
...
}
```

</details>

### [JavaScript] `global.nativeCallSyncHook` can't be used to detect legacy "Remote Debugging in Chrome" with JSC

`global.nativeCallSyncHook === 'undefined'` is a common way to check if you're running in "Remote Debugging in Chrome" (which is not supported with Hermes, only JSC). This is often used to provide some fallback behavior for sync native functions, because they do not work in the legacy remote debugging environment. Use `"RN$Bridgeless" in global && RN$Bridgeless === true` to determine if you are running in bridgeless. Learn more in [LinusU/react-native-get-random-values#57](https://github.com/LinusU/react-native-get-random-values/pull/57).

It is generally not recommended to fork behavior based on whether bridgeless is enabled — this is an escape hatch that should be used sparingly.


<details>
<summary>Example "isRemoteDebuggingInChrome()" function</summary>

```js
function isRemoteDebuggingInChrome () {
// Remote debugging in Chrome is not supported in bridgeless
if ('RN$Bridgeless' in global && RN$Bridgeless === true) {
return false
}

return __DEV__ && typeof global.nativeCallSyncHook === 'undefined'
}
```

</details>

### [iOS/Android] Interop Layer is not compatible with custom ShadowNodes

The Interop Layer doesn't work on either Android or iOS if a legacy view is specifying a custom `ShadowNode`, i.e. in Android by overriding the method `getShadowNodeClass`, `createShadowNodeInstance` etc. Fabric won't call those methods and the widget will most likely be rendered incorrectly (i.e. wrong size, 0 height so unclickable, etc.). You can either work around this by not using custom `ShadowNode` or by converting your library to use TurboModules/Fabric without the Interop Layer.

### [Android] `ThemedContext.getNativeModule()` does not behave the same with Interop Layer

A native view manager used to have a `ThemedContext`, which is a class derived from `ReactContext`. It was common to call `ThemedContext.getNativeModule()` or other methods expected to be inherited from `ReactContext`. However, with the Interop Layer this will call to `ReactContext`'s implementation (the `CatalystInstance` one) but not `BridgelessReactContext`. Accessing the internals to the `CatalystInstance` will cause an exception.

You can solve this by using `ThemedContext.getReactApplicationContext().getNativeModule()`.

### [iOS] Cannot access CallInvoker from "RCTCxxBridge.callInvoker"

In bridgeless mode, React Native does not support a fallback for `jsCallInvoker`, and the `bridge.jsCallInvoker` is `nil`. The app will crash when accessing null pointer. Instead, get `callInvoker` from `getTurboModule:`, e.g. [shopify/react-native-skia#2223](https://github.com/Shopify/react-native-skia/pull/2223).

## 3. Stuck? Get help

Search the ["Libraries" discussion category](https://github.com/reactwg/react-native-new-architecture/discussions/categories/libraries) for similar issues, and if you can't find a solution, post a discussion with details about the issue you are facing.

## 4. Update library status

Once you have verified that your library works with the Interop Layer, update the status of your library on [reactnative.directory](https://reactnative.directory/) to indicate that it is compatible with the New Architecture. If your library is already listed there, set `"newArchitecture": true` in [react-native-libraries.json](https://github.com/react-native-community/directory/blob/main/react-native-libraries.json), otherwise [add your library to the directory](https://github.com/react-native-community/directory?tab=readme-ov-file#how-do-i-add-a-library).

## Next steps

Once your library is compatible with the Interop Layer, release a new version for your users. You can proceed to [converting your library to natively use TurboModules/Fabric](enable-libraries-turbomodules.md) when convenient for you.