android: enable setTimeout and setInterval
This commit is contained in:
1
doric-js/lib/index.web.d.ts
vendored
1
doric-js/lib/index.web.d.ts
vendored
@@ -26,3 +26,4 @@ declare function _rawValue(v: WrappedValue): RawValue;
|
||||
declare function _injectGlobalObject(name: string, args: string): void;
|
||||
declare function __injectGlobalFunction(name: string): void;
|
||||
declare function __invokeMethod(objectName: string, functionName: string, stringifiedArgs: string): void;
|
||||
declare function _prepared(): void;
|
||||
|
@@ -83,6 +83,9 @@ function _rawValue(v) {
|
||||
return v.value;
|
||||
case "object":
|
||||
case "array":
|
||||
if (typeof v.value === 'string') {
|
||||
return JSON.parse(v.value);
|
||||
}
|
||||
return v.value;
|
||||
default:
|
||||
return undefined;
|
||||
@@ -102,21 +105,13 @@ function __injectGlobalFunction(name) {
|
||||
});
|
||||
}
|
||||
function __invokeMethod(objectName, functionName, stringifiedArgs) {
|
||||
NativeClient.log(`invoke:${objectName}.${functionName}(${stringifiedArgs})`);
|
||||
try {
|
||||
const thisObject = Reflect.get(window, objectName);
|
||||
const thisFunction = Reflect.get(thisObject, functionName);
|
||||
const args = JSON.parse(stringifiedArgs);
|
||||
args.forEach(e => {
|
||||
NativeClient.log(`Arg:${e},${typeof e}`);
|
||||
});
|
||||
const rawArgs = args.map(e => _rawValue(e));
|
||||
rawArgs.forEach(e => {
|
||||
NativeClient.log(`RawArg:${e},${typeof e}`);
|
||||
});
|
||||
const ret = Reflect.apply(thisFunction, thisObject, rawArgs);
|
||||
const returnVal = JSON.stringify(_wrappedValue(ret));
|
||||
NativeClient.log(`return:${returnVal}`);
|
||||
const returnVal = ret ? JSON.stringify(_wrappedValue(ret)) : "";
|
||||
NativeClient.returnNative(returnVal);
|
||||
}
|
||||
catch (e) {
|
||||
@@ -124,3 +119,9 @@ function __invokeMethod(objectName, functionName, stringifiedArgs) {
|
||||
NativeClient.returnNative("");
|
||||
}
|
||||
}
|
||||
function _prepared() {
|
||||
window.setTimeout = Reflect.get(window, "doricSetTimeout");
|
||||
window.setInterval = Reflect.get(window, "doricSetInterval");
|
||||
window.clearTimeout = Reflect.get(window, "doricClearTimeout");
|
||||
window.clearInterval = Reflect.get(window, "doricClearInterval");
|
||||
}
|
||||
|
Reference in New Issue
Block a user