aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/backend.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r--ext/bg/js/backend.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js
index 3cb9ce1d..407dc965 100644
--- a/ext/bg/js/backend.js
+++ b/ext/bg/js/backend.js
@@ -34,6 +34,9 @@ class Backend {
this.clipboardPasteTarget = document.querySelector('#clipboard-paste-target');
this.popupWindow = null;
+ this.clipboardPopupTimerId = null;
+ this.clipboardInterval = 250;
+ this.clipboardPreviousText = null;
this.apiForwarder = new BackendApiForwarder();
}
@@ -122,6 +125,20 @@ class Backend {
} else {
this.mecab.stopListener();
}
+
+ window.clearInterval(this.clipboardPopupTimerId);
+ if (options.general.enableClipboardPopups) {
+ this.clipboardPopupTimerId = setInterval(() => {
+ this._onApiClipboardGet()
+ .then((result) => {
+ if (this.clipboardPreviousText === result) {
+ return;
+ }
+ this._onCommandSearch({mode: 'popup', query: result});
+ this.clipboardPreviousText = result;
+ });
+ }, this.clipboardInterval);
+ }
}
async getOptionsSchema() {