summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-11-08 15:53:06 -0500
committerGitHub <noreply@github.com>2020-11-08 15:53:06 -0500
commit4e3040941038acc4f739e4077aee14cb64d3aa81 (patch)
treea9c4e19afeba313d5b9b942b4e75f7d06e44475e
parent0cbc6523e67ccae01d1a4d7547ef38017594c149 (diff)
Add api.isAnkiConnected (#1011)
-rw-r--r--ext/bg/js/anki.js9
-rw-r--r--ext/bg/js/backend.js5
-rw-r--r--ext/mixed/js/api.js4
3 files changed, 18 insertions, 0 deletions
diff --git a/ext/bg/js/anki.js b/ext/bg/js/anki.js
index 84d81d49..8395518f 100644
--- a/ext/bg/js/anki.js
+++ b/ext/bg/js/anki.js
@@ -40,6 +40,15 @@ class AnkiConnect {
this._enabled = value;
}
+ async isConnected() {
+ try {
+ await this._invoke('version');
+ return true;
+ } catch (e) {
+ return false;
+ }
+ }
+
async addNote(note) {
if (!this._enabled) { return null; }
await this._checkVersion();
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js
index fe9c9c76..3f00994a 100644
--- a/ext/bg/js/backend.js
+++ b/ext/bg/js/backend.js
@@ -83,6 +83,7 @@ class Backend {
['kanjiFind', {async: true, contentScript: true, handler: this._onApiKanjiFind.bind(this)}],
['termsFind', {async: true, contentScript: true, handler: this._onApiTermsFind.bind(this)}],
['textParse', {async: true, contentScript: true, handler: this._onApiTextParse.bind(this)}],
+ ['isAnkiConnected', {async: true, contentScript: true, handler: this._onApiIsAnkiConnected.bind(this)}],
['addAnkiNote', {async: true, contentScript: true, handler: this._onApiAddAnkiNote.bind(this)}],
['getAnkiNoteInfo', {async: true, contentScript: true, handler: this._onApiGetAnkiNoteInfo.bind(this)}],
['injectAnkiNoteMedia', {async: true, contentScript: true, handler: this._onApiInjectAnkiNoteMedia.bind(this)}],
@@ -420,6 +421,10 @@ class Backend {
return results;
}
+ async _onApiIsAnkiConnected() {
+ return await this._anki.isConnected();
+ }
+
async _onApiAddAnkiNote({note}) {
return await this._anki.addNote(note);
}
diff --git a/ext/mixed/js/api.js b/ext/mixed/js/api.js
index 43db1562..947f1cd8 100644
--- a/ext/mixed/js/api.js
+++ b/ext/mixed/js/api.js
@@ -69,6 +69,10 @@ const api = (() => {
return this._invoke('kanjiFind', {text, optionsContext});
}
+ isAnkiConnected() {
+ return this._invoke('isAnkiConnected');
+ }
+
addAnkiNote(note) {
return this._invoke('addAnkiNote', {note});
}