fix API calls when Backend isn't ready yet

This commit is contained in:
siikamiika 2020-03-02 00:39:15 +02:00
parent 2abf46b6fa
commit e6e5f23cf8
2 changed files with 33 additions and 0 deletions

View File

@ -48,6 +48,7 @@ class Backend {
this.messageToken = yomichan.generateId(16);
this._messageHandlers = new Map([
['isBackendReady', this._onApiIsBackendReady.bind(this)],
['optionsSchemaGet', this._onApiOptionsSchemaGet.bind(this)],
['optionsGet', this._onApiOptionsGet.bind(this)],
['optionsGetFull', this._onApiOptionsGetFull.bind(this)],
@ -267,6 +268,10 @@ class Backend {
// Message handlers
async _onApiIsBackendReady() {
return true;
}
async _onApiOptionsSchemaGet() {
return this.getOptionsSchema();
}

View File

@ -122,6 +122,30 @@ function apiGetDefaultAnkiFieldTemplates() {
}
function _apiInvoke(action, params={}) {
if (!_isBackendReady) {
if (_isBackendReadyPromise === null) {
_isBackendReadyPromise = new Promise((resolve) => (_isBackendReadyResolve = resolve));
const checkBackendReady = async () => {
try {
if (await _apiInvokeRaw('isBackendReady')) {
_isBackendReady = true;
_isBackendReadyResolve();
}
} catch (e) {
// NOP
}
setTimeout(checkBackendReady, 100); // poll Backend until it responds
};
checkBackendReady();
}
return _isBackendReadyPromise.then(
() => _apiInvokeRaw(action, params)
);
}
return _apiInvokeRaw(action, params);
}
function _apiInvokeRaw(action, params={}) {
const data = {action, params};
return new Promise((resolve, reject) => {
try {
@ -148,3 +172,7 @@ function _apiInvoke(action, params={}) {
function _apiCheckLastError() {
// NOP
}
let _isBackendReady = false;
let _isBackendReadyResolve = null;
let _isBackendReadyPromise = null;