refactor(android): migrate ReactVideoPackage to Kotlin (#3955)
This commit is contained in:
parent
99585987ea
commit
702a0d9d32
@ -1,50 +0,0 @@
|
|||||||
package com.brentvatne.react;
|
|
||||||
|
|
||||||
import com.brentvatne.exoplayer.DefaultReactExoplayerConfig;
|
|
||||||
import com.brentvatne.exoplayer.ReactExoplayerConfig;
|
|
||||||
import com.brentvatne.exoplayer.ReactExoplayerViewManager;
|
|
||||||
import com.facebook.react.ReactPackage;
|
|
||||||
import com.facebook.react.bridge.JavaScriptModule;
|
|
||||||
import com.facebook.react.bridge.NativeModule;
|
|
||||||
import com.facebook.react.bridge.ReactApplicationContext;
|
|
||||||
import com.facebook.react.uimanager.ViewManager;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class ReactVideoPackage implements ReactPackage {
|
|
||||||
|
|
||||||
private ReactExoplayerConfig config;
|
|
||||||
|
|
||||||
public ReactVideoPackage() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public ReactVideoPackage(ReactExoplayerConfig config) {
|
|
||||||
this.config = config;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
|
|
||||||
List<NativeModule> modules = new ArrayList<NativeModule>();
|
|
||||||
|
|
||||||
modules.add(new VideoDecoderPropertiesModule(reactContext));
|
|
||||||
modules.add(new VideoManagerModule(reactContext));
|
|
||||||
|
|
||||||
return modules;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated RN 0.47
|
|
||||||
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
|
|
||||||
if (config == null) {
|
|
||||||
config = new DefaultReactExoplayerConfig(reactContext);
|
|
||||||
}
|
|
||||||
return Collections.singletonList(new ReactExoplayerViewManager(config));
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,29 @@
|
|||||||
|
package com.brentvatne.react
|
||||||
|
|
||||||
|
import com.brentvatne.exoplayer.DefaultReactExoplayerConfig
|
||||||
|
import com.brentvatne.exoplayer.ReactExoplayerConfig
|
||||||
|
import com.brentvatne.exoplayer.ReactExoplayerViewManager
|
||||||
|
import com.facebook.react.ReactPackage
|
||||||
|
import com.facebook.react.bridge.JavaScriptModule
|
||||||
|
import com.facebook.react.bridge.NativeModule
|
||||||
|
import com.facebook.react.bridge.ReactApplicationContext
|
||||||
|
import com.facebook.react.uimanager.ViewManager
|
||||||
|
|
||||||
|
class ReactVideoPackage @JvmOverloads constructor(private var config: ReactExoplayerConfig? = null) : ReactPackage {
|
||||||
|
|
||||||
|
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> =
|
||||||
|
listOf(
|
||||||
|
VideoDecoderPropertiesModule(reactContext),
|
||||||
|
VideoManagerModule(reactContext)
|
||||||
|
)
|
||||||
|
|
||||||
|
// Deprecated RN 0.47
|
||||||
|
fun createJSModules(): List<Class<out JavaScriptModule>> = emptyList()
|
||||||
|
|
||||||
|
override fun createViewManagers(reactContext: ReactApplicationContext): List<ViewManager<*, *>> {
|
||||||
|
if (config == null) {
|
||||||
|
config = DefaultReactExoplayerConfig(reactContext)
|
||||||
|
}
|
||||||
|
return listOf(ReactExoplayerViewManager(config!!))
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user