remove CompositeLazyReactPackage in favor of ReactInstanceManager.Builder's existing ReactPackage list
Reviewed By: andreicoman11 Differential Revision: D3928330 fbshipit-source-id: aee8a7c31d80f5500744029676b9f2b8c87aa98a
This commit is contained in:
parent
1f27dd6643
commit
d22a85211e
|
@ -1,82 +0,0 @@
|
|||
/**
|
||||
* Copyright (c) 2015-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package com.facebook.react;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import com.facebook.react.bridge.JavaScriptModule;
|
||||
import com.facebook.react.bridge.ModuleSpec;
|
||||
import com.facebook.react.bridge.ReactApplicationContext;
|
||||
import com.facebook.react.uimanager.ViewManager;
|
||||
|
||||
public class CompositeLazyReactPackage extends LazyReactPackage {
|
||||
|
||||
private final List<LazyReactPackage> mChildReactPackages;
|
||||
|
||||
/**
|
||||
* The order in which packages are passed matters. It may happen that a NativeModule or
|
||||
* or a ViewManager exists in two or more ReactPackages. In that case the latter will win
|
||||
* i.e. the latter will overwrite the former. This re-occurrence is detected by
|
||||
* comparing a name of a module.
|
||||
*/
|
||||
public CompositeLazyReactPackage(LazyReactPackage... args) {
|
||||
mChildReactPackages = Arrays.asList(args);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public List<ModuleSpec> getNativeModules(ReactApplicationContext reactContext) {
|
||||
// TODO: Consider using proper name here instead of class
|
||||
// This would require us to use ModuleHolder here
|
||||
final Map<Class<?>, ModuleSpec> moduleMap = new HashMap<>();
|
||||
for (LazyReactPackage reactPackage: mChildReactPackages) {
|
||||
for (ModuleSpec module : reactPackage.getNativeModules(reactContext)) {
|
||||
moduleMap.put(module.getType(), module);
|
||||
}
|
||||
}
|
||||
return new ArrayList<>(moduleMap.values());
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||||
final Set<Class<? extends JavaScriptModule>> moduleSet = new HashSet<>();
|
||||
for (ReactPackage reactPackage: mChildReactPackages) {
|
||||
for (Class<? extends JavaScriptModule> jsModule: reactPackage.createJSModules()) {
|
||||
moduleSet.add(jsModule);
|
||||
}
|
||||
}
|
||||
return new ArrayList(moduleSet);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
|
||||
final Map<String, ViewManager> viewManagerMap = new HashMap<>();
|
||||
for (ReactPackage reactPackage: mChildReactPackages) {
|
||||
for (ViewManager viewManager: reactPackage.createViewManagers(reactContext)) {
|
||||
viewManagerMap.put(viewManager.getName(), viewManager);
|
||||
}
|
||||
}
|
||||
return new ArrayList(viewManagerMap.values());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue