forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for react-native 0.57.0 (wix#3851)
- Loading branch information
1 parent
cbcdda0
commit 444a4fc
Showing
9 changed files
with
477 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
108 changes: 108 additions & 0 deletions
108
...app/src/reactNative55/java/com/reactnativenavigation/react/NavigationReactNativeHost.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
package com.reactnativenavigation.react; | ||
|
||
import android.app.Application; | ||
import android.support.annotation.NonNull; | ||
import android.support.annotation.Nullable; | ||
|
||
import com.facebook.infer.annotation.Assertions; | ||
import com.facebook.react.ReactInstanceManager; | ||
import com.facebook.react.ReactInstanceManagerBuilder; | ||
import com.facebook.react.ReactNativeHost; | ||
import com.facebook.react.ReactPackage; | ||
import com.facebook.react.common.LifecycleState; | ||
import com.facebook.react.devsupport.interfaces.DevBundleDownloadListener; | ||
import com.facebook.react.shell.MainReactPackage; | ||
import com.reactnativenavigation.NavigationApplication; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
/** | ||
* Default implementation of {@link ReactNativeHost} that includes {@link NavigationPackage} | ||
* and user-defined additional packages. | ||
*/ | ||
public class NavigationReactNativeHost extends ReactNativeHost implements BundleDownloadListenerProvider { | ||
|
||
private final boolean isDebug; | ||
private final List<ReactPackage> additionalReactPackages; | ||
private @Nullable NavigationDevBundleDownloadListener bundleListener; | ||
private final DevBundleDownloadListener bundleListenerMediator = new DevBundleDownloadListenerAdapter() { | ||
@Override | ||
public void onSuccess() { | ||
if (bundleListener != null) { | ||
bundleListener.onSuccess(); | ||
} | ||
} | ||
}; | ||
|
||
|
||
public NavigationReactNativeHost(NavigationApplication application) { | ||
this(application, application.isDebug(), application.createAdditionalReactPackages()); | ||
} | ||
|
||
@SuppressWarnings("WeakerAccess") | ||
public NavigationReactNativeHost(Application application, boolean isDebug, final List<ReactPackage> additionalReactPackages) { | ||
super(application); | ||
this.isDebug = isDebug; | ||
this.additionalReactPackages = additionalReactPackages; | ||
} | ||
|
||
@Override | ||
public void setBundleLoaderListener(NavigationDevBundleDownloadListener listener) { | ||
bundleListener = listener; | ||
} | ||
|
||
@Override | ||
public boolean getUseDeveloperSupport() { | ||
return isDebug; | ||
} | ||
|
||
@Override | ||
protected List<ReactPackage> getPackages() { | ||
List<ReactPackage> packages = new ArrayList<>(); | ||
boolean hasMainReactPackage = false; | ||
packages.add(new NavigationPackage(this)); | ||
if (additionalReactPackages != null) { | ||
for (ReactPackage p : additionalReactPackages) { | ||
if (!(p instanceof NavigationPackage)) { | ||
packages.add(p); | ||
} | ||
if (p instanceof MainReactPackage) hasMainReactPackage = true; | ||
} | ||
} | ||
if (!hasMainReactPackage) { | ||
packages.add(new MainReactPackage()); | ||
} | ||
return packages; | ||
} | ||
|
||
protected ReactInstanceManager createReactInstanceManager() { | ||
ReactInstanceManagerBuilder builder = ReactInstanceManager.builder() | ||
.setApplication(getApplication()) | ||
.setJSMainModulePath(getJSMainModuleName()) | ||
.setUseDeveloperSupport(getUseDeveloperSupport()) | ||
.setRedBoxHandler(getRedBoxHandler()) | ||
.setJavaScriptExecutorFactory(getJavaScriptExecutorFactory()) | ||
.setUIImplementationProvider(getUIImplementationProvider()) | ||
.setInitialLifecycleState(LifecycleState.BEFORE_CREATE) | ||
.setDevBundleDownloadListener(getDevBundleDownloadListener()); | ||
|
||
for (ReactPackage reactPackage : getPackages()) { | ||
builder.addPackage(reactPackage); | ||
} | ||
|
||
String jsBundleFile = getJSBundleFile(); | ||
if (jsBundleFile != null) { | ||
builder.setJSBundleFile(jsBundleFile); | ||
} else { | ||
builder.setBundleAssetName(Assertions.assertNotNull(getBundleAssetName())); | ||
} | ||
return builder.build(); | ||
} | ||
|
||
@SuppressWarnings("WeakerAccess") | ||
@NonNull | ||
protected DevBundleDownloadListener getDevBundleDownloadListener() { | ||
return bundleListenerMediator; | ||
} | ||
} |
108 changes: 108 additions & 0 deletions
108
...app/src/reactNative56/java/com/reactnativenavigation/react/NavigationReactNativeHost.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
package com.reactnativenavigation.react; | ||
|
||
import android.app.Application; | ||
import android.support.annotation.NonNull; | ||
import android.support.annotation.Nullable; | ||
|
||
import com.facebook.infer.annotation.Assertions; | ||
import com.facebook.react.ReactInstanceManager; | ||
import com.facebook.react.ReactInstanceManagerBuilder; | ||
import com.facebook.react.ReactNativeHost; | ||
import com.facebook.react.ReactPackage; | ||
import com.facebook.react.common.LifecycleState; | ||
import com.facebook.react.devsupport.interfaces.DevBundleDownloadListener; | ||
import com.facebook.react.shell.MainReactPackage; | ||
import com.reactnativenavigation.NavigationApplication; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
/** | ||
* Default implementation of {@link ReactNativeHost} that includes {@link NavigationPackage} | ||
* and user-defined additional packages. | ||
*/ | ||
public class NavigationReactNativeHost extends ReactNativeHost implements BundleDownloadListenerProvider { | ||
|
||
private final boolean isDebug; | ||
private final List<ReactPackage> additionalReactPackages; | ||
private @Nullable NavigationDevBundleDownloadListener bundleListener; | ||
private final DevBundleDownloadListener bundleListenerMediator = new DevBundleDownloadListenerAdapter() { | ||
@Override | ||
public void onSuccess() { | ||
if (bundleListener != null) { | ||
bundleListener.onSuccess(); | ||
} | ||
} | ||
}; | ||
|
||
|
||
public NavigationReactNativeHost(NavigationApplication application) { | ||
this(application, application.isDebug(), application.createAdditionalReactPackages()); | ||
} | ||
|
||
@SuppressWarnings("WeakerAccess") | ||
public NavigationReactNativeHost(Application application, boolean isDebug, final List<ReactPackage> additionalReactPackages) { | ||
super(application); | ||
this.isDebug = isDebug; | ||
this.additionalReactPackages = additionalReactPackages; | ||
} | ||
|
||
@Override | ||
public void setBundleLoaderListener(NavigationDevBundleDownloadListener listener) { | ||
bundleListener = listener; | ||
} | ||
|
||
@Override | ||
public boolean getUseDeveloperSupport() { | ||
return isDebug; | ||
} | ||
|
||
@Override | ||
protected List<ReactPackage> getPackages() { | ||
List<ReactPackage> packages = new ArrayList<>(); | ||
boolean hasMainReactPackage = false; | ||
packages.add(new NavigationPackage(this)); | ||
if (additionalReactPackages != null) { | ||
for (ReactPackage p : additionalReactPackages) { | ||
if (!(p instanceof NavigationPackage)) { | ||
packages.add(p); | ||
} | ||
if (p instanceof MainReactPackage) hasMainReactPackage = true; | ||
} | ||
} | ||
if (!hasMainReactPackage) { | ||
packages.add(new MainReactPackage()); | ||
} | ||
return packages; | ||
} | ||
|
||
protected ReactInstanceManager createReactInstanceManager() { | ||
ReactInstanceManagerBuilder builder = ReactInstanceManager.builder() | ||
.setApplication(getApplication()) | ||
.setJSMainModulePath(getJSMainModuleName()) | ||
.setUseDeveloperSupport(getUseDeveloperSupport()) | ||
.setRedBoxHandler(getRedBoxHandler()) | ||
.setJavaScriptExecutorFactory(getJavaScriptExecutorFactory()) | ||
.setUIImplementationProvider(getUIImplementationProvider()) | ||
.setInitialLifecycleState(LifecycleState.BEFORE_CREATE) | ||
.setDevBundleDownloadListener(getDevBundleDownloadListener()); | ||
|
||
for (ReactPackage reactPackage : getPackages()) { | ||
builder.addPackage(reactPackage); | ||
} | ||
|
||
String jsBundleFile = getJSBundleFile(); | ||
if (jsBundleFile != null) { | ||
builder.setJSBundleFile(jsBundleFile); | ||
} else { | ||
builder.setBundleAssetName(Assertions.assertNotNull(getBundleAssetName())); | ||
} | ||
return builder.build(); | ||
} | ||
|
||
@SuppressWarnings("WeakerAccess") | ||
@NonNull | ||
protected DevBundleDownloadListener getDevBundleDownloadListener() { | ||
return bundleListenerMediator; | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
.../reactNative57/java/com/reactnativenavigation/react/DevBundleDownloadListenerAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.reactnativenavigation.react; | ||
|
||
import com.facebook.react.bridge.NativeDeltaClient; | ||
import com.facebook.react.devsupport.interfaces.DevBundleDownloadListener; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
public class DevBundleDownloadListenerAdapter implements DevBundleDownloadListener, NavigationDevBundleDownloadListener { | ||
@Override | ||
public void onSuccess(@Nullable NativeDeltaClient nativeDeltaClient) { | ||
onSuccess(); | ||
} | ||
|
||
@Override | ||
public void onSuccess() { | ||
|
||
} | ||
|
||
@Override | ||
public void onProgress(@Nullable String status, @Nullable Integer done, @Nullable Integer total) { | ||
|
||
} | ||
|
||
@Override | ||
public void onFailure(Exception cause) { | ||
|
||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
.../app/src/reactNative57/java/com/reactnativenavigation/react/JsDevReloadHandlerFacade.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.reactnativenavigation.react; | ||
|
||
import com.facebook.react.bridge.NativeDeltaClient; | ||
import com.facebook.react.devsupport.interfaces.DevBundleDownloadListener; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
public class JsDevReloadHandlerFacade implements DevBundleDownloadListener, NavigationDevBundleDownloadListener { | ||
@Override | ||
public void onSuccess(@Nullable NativeDeltaClient nativeDeltaClient) { | ||
onSuccess(); | ||
} | ||
|
||
@Override | ||
public void onProgress(@Nullable String status, @Nullable Integer done, @Nullable Integer total) { | ||
|
||
} | ||
|
||
@Override | ||
public void onFailure(Exception cause) { | ||
|
||
} | ||
|
||
@Override | ||
public void onSuccess() { | ||
|
||
} | ||
} |
107 changes: 107 additions & 0 deletions
107
...app/src/reactNative57/java/com/reactnativenavigation/react/NavigationReactNativeHost.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
package com.reactnativenavigation.react; | ||
|
||
import android.app.Application; | ||
import android.support.annotation.NonNull; | ||
import android.support.annotation.Nullable; | ||
|
||
import com.facebook.infer.annotation.Assertions; | ||
import com.facebook.react.ReactInstanceManager; | ||
import com.facebook.react.ReactInstanceManagerBuilder; | ||
import com.facebook.react.ReactNativeHost; | ||
import com.facebook.react.ReactPackage; | ||
import com.facebook.react.common.LifecycleState; | ||
import com.facebook.react.devsupport.interfaces.DevBundleDownloadListener; | ||
import com.facebook.react.shell.MainReactPackage; | ||
import com.reactnativenavigation.NavigationApplication; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
/** | ||
* Default implementation of {@link ReactNativeHost} that includes {@link NavigationPackage} | ||
* and user-defined additional packages. | ||
*/ | ||
public class NavigationReactNativeHost extends ReactNativeHost implements BundleDownloadListenerProvider { | ||
|
||
private final boolean isDebug; | ||
private final List<ReactPackage> additionalReactPackages; | ||
private @Nullable NavigationDevBundleDownloadListener bundleListener; | ||
private final DevBundleDownloadListener bundleListenerMediator = new DevBundleDownloadListenerAdapter() { | ||
@Override | ||
public void onSuccess() { | ||
if (bundleListener != null) { | ||
bundleListener.onSuccess(); | ||
} | ||
} | ||
}; | ||
|
||
|
||
public NavigationReactNativeHost(NavigationApplication application) { | ||
this(application, application.isDebug(), application.createAdditionalReactPackages()); | ||
} | ||
|
||
@SuppressWarnings("WeakerAccess") | ||
public NavigationReactNativeHost(Application application, boolean isDebug, final List<ReactPackage> additionalReactPackages) { | ||
super(application); | ||
this.isDebug = isDebug; | ||
this.additionalReactPackages = additionalReactPackages; | ||
} | ||
|
||
@Override | ||
public void setBundleLoaderListener(NavigationDevBundleDownloadListener listener) { | ||
bundleListener = listener; | ||
} | ||
|
||
@Override | ||
public boolean getUseDeveloperSupport() { | ||
return isDebug; | ||
} | ||
|
||
@Override | ||
protected List<ReactPackage> getPackages() { | ||
List<ReactPackage> packages = new ArrayList<>(); | ||
boolean hasMainReactPackage = false; | ||
packages.add(new NavigationPackage(this)); | ||
if (additionalReactPackages != null) { | ||
for (ReactPackage p : additionalReactPackages) { | ||
if (!(p instanceof NavigationPackage)) { | ||
packages.add(p); | ||
} | ||
if (p instanceof MainReactPackage) hasMainReactPackage = true; | ||
} | ||
} | ||
if (!hasMainReactPackage) { | ||
packages.add(new MainReactPackage()); | ||
} | ||
return packages; | ||
} | ||
|
||
protected ReactInstanceManager createReactInstanceManager() { | ||
ReactInstanceManagerBuilder builder = ReactInstanceManager.builder() | ||
.setApplication(getApplication()) | ||
.setJSMainModulePath(getJSMainModuleName()) | ||
.setUseDeveloperSupport(getUseDeveloperSupport()) | ||
.setRedBoxHandler(getRedBoxHandler()) | ||
.setJavaScriptExecutorFactory(getJavaScriptExecutorFactory()) | ||
.setInitialLifecycleState(LifecycleState.BEFORE_CREATE) | ||
.setDevBundleDownloadListener(getDevBundleDownloadListener()); | ||
|
||
for (ReactPackage reactPackage : getPackages()) { | ||
builder.addPackage(reactPackage); | ||
} | ||
|
||
String jsBundleFile = getJSBundleFile(); | ||
if (jsBundleFile != null) { | ||
builder.setJSBundleFile(jsBundleFile); | ||
} else { | ||
builder.setBundleAssetName(Assertions.assertNotNull(getBundleAssetName())); | ||
} | ||
return builder.build(); | ||
} | ||
|
||
@SuppressWarnings("WeakerAccess") | ||
@NonNull | ||
protected DevBundleDownloadListener getDevBundleDownloadListener() { | ||
return bundleListenerMediator; | ||
} | ||
} |
Oops, something went wrong.