feat: let promise reject called
This commit is contained in:
parent
901d3fdf72
commit
3f6d88bbe7
@ -1298,12 +1298,12 @@ var doric = (function (exports) {
|
||||
Context.prototype.callNative = function (namespace, method, args) {
|
||||
var _this = this;
|
||||
var callbackId = uniqueId('callback');
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
return new Promise(function (resolve, reject) {
|
||||
_this.callbacks.set(callbackId, {
|
||||
resolve: resolve,
|
||||
reject: reject,
|
||||
});
|
||||
nativeBridge(_this.id, namespace, method, callbackId, args);
|
||||
});
|
||||
};
|
||||
Context.prototype.register = function (instance) {
|
||||
|
@ -1300,12 +1300,12 @@ var doric = (function (exports) {
|
||||
}
|
||||
callNative(namespace, method, args) {
|
||||
const callbackId = uniqueId('callback');
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
return new Promise((resolve, reject) => {
|
||||
this.callbacks.set(callbackId, {
|
||||
resolve,
|
||||
reject,
|
||||
});
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
});
|
||||
}
|
||||
register(instance) {
|
||||
|
@ -1329,12 +1329,12 @@ class Context {
|
||||
}
|
||||
callNative(namespace, method, args) {
|
||||
const callbackId = uniqueId('callback');
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
return new Promise((resolve, reject) => {
|
||||
this.callbacks.set(callbackId, {
|
||||
resolve,
|
||||
reject,
|
||||
});
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
});
|
||||
}
|
||||
register(instance) {
|
||||
|
@ -118,12 +118,12 @@ export class Context {
|
||||
}
|
||||
callNative(namespace, method, args) {
|
||||
const callbackId = uniqueId('callback');
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
return new Promise((resolve, reject) => {
|
||||
this.callbacks.set(callbackId, {
|
||||
resolve,
|
||||
reject,
|
||||
});
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
});
|
||||
}
|
||||
register(instance) {
|
||||
|
@ -136,12 +136,12 @@ export class Context {
|
||||
}
|
||||
callNative(namespace: string, method: string, args?: any): Promise<any> {
|
||||
const callbackId = uniqueId('callback')
|
||||
nativeBridge(this.id, namespace, method, callbackId, args)
|
||||
return new Promise((resolve, reject) => {
|
||||
this.callbacks.set(callbackId, {
|
||||
resolve,
|
||||
reject,
|
||||
})
|
||||
nativeBridge(this.id, namespace, method, callbackId, args)
|
||||
})
|
||||
}
|
||||
register(instance: Object) {
|
||||
|
@ -174,12 +174,12 @@ export class Context {
|
||||
}
|
||||
callNative(namespace: string, method: string, args?: any): Promise<any> {
|
||||
const callbackId = uniqueId('callback')
|
||||
nativeBridge(this.id, namespace, method, callbackId, args)
|
||||
return new Promise((resolve, reject) => {
|
||||
this.callbacks.set(callbackId, {
|
||||
resolve,
|
||||
reject,
|
||||
})
|
||||
nativeBridge(this.id, namespace, method, callbackId, args)
|
||||
})
|
||||
}
|
||||
register(instance: Object) {
|
||||
|
2
doric-web/dist/index.js
vendored
2
doric-web/dist/index.js
vendored
@ -1302,12 +1302,12 @@ var doric = (function (exports) {
|
||||
}
|
||||
callNative(namespace, method, args) {
|
||||
const callbackId = uniqueId('callback');
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
return new Promise((resolve, reject) => {
|
||||
this.callbacks.set(callbackId, {
|
||||
resolve,
|
||||
reject,
|
||||
});
|
||||
nativeBridge(this.id, namespace, method, callbackId, args);
|
||||
});
|
||||
}
|
||||
register(instance) {
|
||||
|
Reference in New Issue
Block a user