mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1490ab12ef
Summary:
Includes React Native and its dependencies Fresco, Metro, and Yoga. Excludes samples/examples/docs.
find: ^(?:( *)|( *(?:[\*~#]|::))( )? *)?Copyright (?:\(c\) )?(\d{4})\b.+Facebook[\s\S]+?BSD[\s\S]+?(?:this source tree|the same directory)\.$
replace: $1$2$3Copyright (c) $4-present, Facebook, Inc.\n$2\n$1$2$3This source code is licensed under the MIT license found in the\n$1$2$3LICENSE file in the root directory of this source tree.
Reviewed By: TheSavior, yungsters
Differential Revision: D7007050
fbshipit-source-id: 37dd6bf0ffec0923bfc99c260bb330683f35553e
59 lines
1.9 KiB
Java
59 lines
1.9 KiB
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* 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.uimanager;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
|
|
import com.facebook.react.bridge.ReactApplicationContext;
|
|
import com.facebook.react.bridge.ReactContext;
|
|
import com.facebook.react.bridge.LifecycleEventListener;
|
|
|
|
//
|
|
|
|
/**
|
|
* Wraps {@link ReactContext} with the base {@link Context} passed into the constructor.
|
|
* It provides also a way to start activities using the viewContext to which RN native views belong.
|
|
* It delegates lifecycle listener registration to the original instance of {@link ReactContext}
|
|
* which is supposed to receive the lifecycle events. At the same time we disallow receiving
|
|
* lifecycle events for this wrapper instances.
|
|
* TODO: T7538544 Rename ThemedReactContext to be in alignment with name of ReactApplicationContext
|
|
*/
|
|
public class ThemedReactContext extends ReactContext {
|
|
|
|
private final ReactApplicationContext mReactApplicationContext;
|
|
|
|
public ThemedReactContext(ReactApplicationContext reactApplicationContext, Context base) {
|
|
super(base);
|
|
initializeWithInstance(reactApplicationContext.getCatalystInstance());
|
|
mReactApplicationContext = reactApplicationContext;
|
|
}
|
|
|
|
@Override
|
|
public void addLifecycleEventListener(LifecycleEventListener listener) {
|
|
mReactApplicationContext.addLifecycleEventListener(listener);
|
|
}
|
|
|
|
@Override
|
|
public void removeLifecycleEventListener(LifecycleEventListener listener) {
|
|
mReactApplicationContext.removeLifecycleEventListener(listener);
|
|
}
|
|
|
|
@Override
|
|
public boolean hasCurrentActivity() {
|
|
return mReactApplicationContext.hasCurrentActivity();
|
|
}
|
|
|
|
@Override
|
|
public @Nullable Activity getCurrentActivity() {
|
|
return mReactApplicationContext.getCurrentActivity();
|
|
}
|
|
}
|