From e74386faa4b5a987c41140df5b28de8dce06f401 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Wed, 4 May 2016 20:43:29 -0700 Subject: [PATCH] WIP --- ext/fg/js/client.js | 35 ++++++++++++++++++++++++++++++++--- ext/fg/js/frame.js | 16 ++++++++++++++-- 2 files changed, 46 insertions(+), 5 deletions(-) diff --git a/ext/fg/js/client.js b/ext/fg/js/client.js index 2d80b35e..a60bc7ff 100644 --- a/ext/fg/js/client.js +++ b/ext/fg/js/client.js @@ -27,6 +27,7 @@ class Client { this.enabled = false; this.options = {}; this.results = null; + this.xhr = null; this.fgRoot = chrome.extension.getURL('fg'); chrome.runtime.onMessage.addListener(this.onBgMessage.bind(this)); @@ -79,8 +80,12 @@ class Client { } onFrameMessage(e) { + const callback = (data) => { + e.source.postMessage(data, e.origin); + }; + const {action, data} = e.data, handlers = { - addNote: this.addNote, + addNote: ({mode, index}) => this.addNote(mode, index, callback), displayKanji: this.displayKanji }; @@ -118,8 +123,9 @@ class Client { }); } - addNote({mode, index}) { - console.log(mode, index); + addNote(mode, index, callback) { + callback({action: 'disableAction', data: {mode: mode, index: index}}); + // this.callAnkiApi('addNote', {mode: mode, definition: this.results[index]}); } displayKanji(kanji) { @@ -165,6 +171,29 @@ class Client { setOptions(opts) { this.options = opts; } + + callAnkiApi(action, data, callback) { + if (!this.options.enableAnkiConnect) { + callback(null); + return; + } + + if (this.xhr !== null) { + this.xhr.abort(); + } + + this.xhr = new XMLHttpRequest(); + this.xhr.addEventListener('loadend', () => { + const resp = this.xhr.responseText; + callback(resp ? JSON.parse(resp) : null); + this.xhr = null; + }); + + this.xhr.open('POST', 'http://127.0.0.1:8888'); + this.xhr.withCredentials = true; + this.xhr.setRequestHeader('Content-Type', 'text/json'); + this.xhr.send(JSON.stringify({action: action, data: data})); + } } window.yomiClient = new Client(); diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index c8528fe7..4d126b94 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -36,9 +36,21 @@ function registerActionLinks() { } } -function domContentLoaded() { +function onDomContentLoaded() { registerKanjiLinks(); registerActionLinks(); } -document.addEventListener('DOMContentLoaded', domContentLoaded, false); +function onMessage(e) { + const {action, data} = e.data, handlers = { + 'disableAction': ({mode, index}) => { + const matches = document.querySelectorAll(`.action-link[data-index="${index}"][data-mode="${mode}"]`); + matches[0].classList.add('disabled'); + } + }; + + handlers[action](data); +} + +document.addEventListener('DOMContentLoaded', onDomContentLoaded, false); +window.addEventListener('message', onMessage);