mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/33645 With React 18, we now need to allow users on Fabric to opt-in for Concurrent Root. This commit adds a new method that can be called on the ReactActivityDelegate that can be used to set the `concurrentRoot` flag on the `initialProps` on the Render. Changelog: [Android] [Added] - Expose an API to enable Concurrent Root on Android Reviewed By: mdvacca Differential Revision: D35614879 fbshipit-source-id: 2de83e8115d3748c0346cdec6f31b2ab1f899478
226 lines
7.0 KiB
Java
226 lines
7.0 KiB
Java
/*
|
|
* 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.
|
|
*/
|
|
|
|
package com.facebook.react;
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.res.Configuration;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.view.KeyEvent;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import com.facebook.infer.annotation.Assertions;
|
|
import com.facebook.react.bridge.Callback;
|
|
import com.facebook.react.modules.core.PermissionListener;
|
|
|
|
/**
|
|
* Delegate class for {@link ReactActivity}. You can subclass this to provide custom implementations
|
|
* for e.g. {@link #getReactNativeHost()}, if your Application class doesn't implement {@link
|
|
* ReactApplication}.
|
|
*/
|
|
public class ReactActivityDelegate {
|
|
|
|
private final @Nullable Activity mActivity;
|
|
private final @Nullable String mMainComponentName;
|
|
|
|
private @Nullable PermissionListener mPermissionListener;
|
|
private @Nullable Callback mPermissionsCallback;
|
|
private ReactDelegate mReactDelegate;
|
|
private boolean mConcurrentRootEnabled;
|
|
|
|
@Deprecated
|
|
public ReactActivityDelegate(Activity activity, @Nullable String mainComponentName) {
|
|
mActivity = activity;
|
|
mMainComponentName = mainComponentName;
|
|
}
|
|
|
|
public ReactActivityDelegate(ReactActivity activity, @Nullable String mainComponentName) {
|
|
mActivity = activity;
|
|
mMainComponentName = mainComponentName;
|
|
}
|
|
|
|
/**
|
|
* Public API to populate the launch options that will be passed to React. Here you can customize
|
|
* the values that will be passed as `initialProperties` to the Renderer.
|
|
*
|
|
* @return Either null or a key-value map as a Bundle
|
|
*/
|
|
protected @Nullable Bundle getLaunchOptions() {
|
|
return null;
|
|
}
|
|
|
|
private @NonNull Bundle composeLaunchOptions() {
|
|
Bundle composedLaunchOptions = getLaunchOptions();
|
|
if (isConcurrentRootEnabled()) {
|
|
if (composedLaunchOptions == null) {
|
|
composedLaunchOptions = new Bundle();
|
|
}
|
|
composedLaunchOptions.putBoolean("concurrentRoot", true);
|
|
}
|
|
return composedLaunchOptions;
|
|
}
|
|
|
|
protected ReactRootView createRootView() {
|
|
return new ReactRootView(getContext());
|
|
}
|
|
|
|
/**
|
|
* Get the {@link ReactNativeHost} used by this app. By default, assumes {@link
|
|
* Activity#getApplication()} is an instance of {@link ReactApplication} and calls {@link
|
|
* ReactApplication#getReactNativeHost()}. Override this method if your application class does not
|
|
* implement {@code ReactApplication} or you simply have a different mechanism for storing a
|
|
* {@code ReactNativeHost}, e.g. as a static field somewhere.
|
|
*/
|
|
protected ReactNativeHost getReactNativeHost() {
|
|
return ((ReactApplication) getPlainActivity().getApplication()).getReactNativeHost();
|
|
}
|
|
|
|
public ReactInstanceManager getReactInstanceManager() {
|
|
return mReactDelegate.getReactInstanceManager();
|
|
}
|
|
|
|
public String getMainComponentName() {
|
|
return mMainComponentName;
|
|
}
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
String mainComponentName = getMainComponentName();
|
|
Bundle launchOptions = composeLaunchOptions();
|
|
mReactDelegate =
|
|
new ReactDelegate(
|
|
getPlainActivity(), getReactNativeHost(), mainComponentName, launchOptions) {
|
|
@Override
|
|
protected ReactRootView createRootView() {
|
|
return ReactActivityDelegate.this.createRootView();
|
|
}
|
|
};
|
|
if (mainComponentName != null) {
|
|
loadApp(mainComponentName);
|
|
}
|
|
}
|
|
|
|
protected void loadApp(String appKey) {
|
|
mReactDelegate.loadApp(appKey);
|
|
getPlainActivity().setContentView(mReactDelegate.getReactRootView());
|
|
}
|
|
|
|
protected void onPause() {
|
|
mReactDelegate.onHostPause();
|
|
}
|
|
|
|
protected void onResume() {
|
|
mReactDelegate.onHostResume();
|
|
|
|
if (mPermissionsCallback != null) {
|
|
mPermissionsCallback.invoke();
|
|
mPermissionsCallback = null;
|
|
}
|
|
}
|
|
|
|
protected void onDestroy() {
|
|
mReactDelegate.onHostDestroy();
|
|
}
|
|
|
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
mReactDelegate.onActivityResult(requestCode, resultCode, data, true);
|
|
}
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
|
if (getReactNativeHost().hasInstance()
|
|
&& getReactNativeHost().getUseDeveloperSupport()
|
|
&& keyCode == KeyEvent.KEYCODE_MEDIA_FAST_FORWARD) {
|
|
event.startTracking();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean onKeyUp(int keyCode, KeyEvent event) {
|
|
return mReactDelegate.shouldShowDevMenuOrReload(keyCode, event);
|
|
}
|
|
|
|
public boolean onKeyLongPress(int keyCode, KeyEvent event) {
|
|
if (getReactNativeHost().hasInstance()
|
|
&& getReactNativeHost().getUseDeveloperSupport()
|
|
&& keyCode == KeyEvent.KEYCODE_MEDIA_FAST_FORWARD) {
|
|
getReactNativeHost().getReactInstanceManager().showDevOptionsDialog();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean onBackPressed() {
|
|
return mReactDelegate.onBackPressed();
|
|
}
|
|
|
|
public boolean onNewIntent(Intent intent) {
|
|
if (getReactNativeHost().hasInstance()) {
|
|
getReactNativeHost().getReactInstanceManager().onNewIntent(intent);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public void onWindowFocusChanged(boolean hasFocus) {
|
|
if (getReactNativeHost().hasInstance()) {
|
|
getReactNativeHost().getReactInstanceManager().onWindowFocusChange(hasFocus);
|
|
}
|
|
}
|
|
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
|
if (getReactNativeHost().hasInstance()) {
|
|
getReactInstanceManager().onConfigurationChanged(getContext(), newConfig);
|
|
}
|
|
}
|
|
|
|
@TargetApi(Build.VERSION_CODES.M)
|
|
public void requestPermissions(
|
|
String[] permissions, int requestCode, PermissionListener listener) {
|
|
mPermissionListener = listener;
|
|
getPlainActivity().requestPermissions(permissions, requestCode);
|
|
}
|
|
|
|
public void onRequestPermissionsResult(
|
|
final int requestCode, final String[] permissions, final int[] grantResults) {
|
|
mPermissionsCallback =
|
|
new Callback() {
|
|
@Override
|
|
public void invoke(Object... args) {
|
|
if (mPermissionListener != null
|
|
&& mPermissionListener.onRequestPermissionsResult(
|
|
requestCode, permissions, grantResults)) {
|
|
mPermissionListener = null;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
protected Context getContext() {
|
|
return Assertions.assertNotNull(mActivity);
|
|
}
|
|
|
|
protected Activity getPlainActivity() {
|
|
return ((Activity) getContext());
|
|
}
|
|
|
|
/**
|
|
* Override this method to enable Concurrent Root on the surface for this Activity. See:
|
|
* https://reactjs.org/blog/2022/03/29/react-v18.html
|
|
*
|
|
* <p>This requires to be rendering on Fabric (i.e. on the New Architecture).
|
|
*
|
|
* @return Wether you want to enable Concurrent Root for this surface or not.
|
|
*/
|
|
protected boolean isConcurrentRootEnabled() {
|
|
return false;
|
|
}
|
|
}
|