-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNativeModulesProxy.android.ts
69 lines (63 loc) · 3.12 KB
/
NativeModulesProxy.android.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { UMNativeModulesProxy } from './UMNativeModulesProxy';
import { ProxyNativeModule } from './NativeModulesProxy.types';
import { exportedMethodsKey, modulesConstantsKey } from "./UMNativeModulesProxyCommon";
import { NativeScriptModuleRegistryProvider } from './android-specific/NativeScriptModuleRegistryProvider.android';
import { NativeScriptContext } from './android-specific/NativeScriptContext.android';
const umNativeModulesProxy = new UMNativeModulesProxy(
/**
* TODO: Pass in a non-empty list of Packages.
* @see NativeScriptAdapterModule.java
* @see expo-flutter-adapter.java
*
* @see expo/packages/expo-permissions/android/src/main/java/expo/modules/permissions/PermissionsPackage.kt
*/
new NativeScriptModuleRegistryProvider(new java.util.ArrayList()),
new NativeScriptContext(),
);
const NativeModulesProxy: { [moduleName: string]: ProxyNativeModule } = {};
/**
* @see expo-flutter-adapter.java
*/
function marshalAndroid(nativeValue: unknown): any {
throw new Error("marshalAndroid() not yet implemented.");
}
Object.keys(umNativeModulesProxy.constantsToExport[exportedMethodsKey]).forEach(moduleName => {
NativeModulesProxy[moduleName] = (umNativeModulesProxy.constantsToExport[modulesConstantsKey][moduleName] || {}) as ProxyNativeModule;
umNativeModulesProxy.constantsToExport[exportedMethodsKey][moduleName].forEach(methodInfo => {
NativeModulesProxy[moduleName][methodInfo.name] = (...args: unknown[]): Promise<any> => {
const { key, name, argumentsCount } = methodInfo;
if (argumentsCount !== args.length) {
return Promise.reject(
new Error(
`Native method ${moduleName}.${methodInfo.name} expects ${argumentsCount} ${
argumentsCount === 1 ? 'argument' : 'arguments'
} but received ${args.length}`
)
);
}
// return NativeProxy.callMethod(moduleName, key, args);
return umNativeModulesProxy.callMethod(moduleName, name, ...args)
.then((resolution: unknown) => {
try {
return marshalAndroid(resolution);
} catch (error){
throw new Error(`Failed to marshal native value to JS. Error: ${error.message || error}`);
}
})
};
});
// These are called by EventEmitter (which is a wrapper for NativeEventEmitter)
// only on iOS and they use iOS-specific native module, EXReactNativeEventEmitter.
//
// On Android only {start,stop}Observing are called on the native module
// and these should be exported as Expo methods.
NativeModulesProxy[moduleName].addListener = (...args) => {
// NativeModules.UMReactNativeEventEmitter.addProxiedListener(moduleName, ...args);
console.warn(`NativeModulesProxy[moduleName].addListener() is an iOS-only API; only a stub implementation is provided for Android.`);
};
NativeModulesProxy[moduleName].removeListeners = (...args) => {
// NativeModules.UMReactNativeEventEmitter.removeProxiedListeners(moduleName, ...args);
console.warn(`NativeModulesProxy[moduleName].removeListeners() is an iOS-only API; only a stub implementation is provided for Android.`);
}
});
export default NativeModulesProxy;