yomichan/ext/bg/js/yomichan.js

160 lines
4.8 KiB
JavaScript
Raw Normal View History

2016-03-26 21:16:21 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class Yomichan {
constructor() {
2016-04-04 05:22:38 +00:00
Handlebars.partials = Handlebars.templates;
2016-04-18 02:06:57 +00:00
Handlebars.registerHelper('kanjiLinks', function(options) {
let result = '';
for (const c of options.fn(this)) {
if (Translator.isKanji(c)) {
2016-04-18 03:50:58 +00:00
result += Handlebars.templates['kanji-link.html']({kanji: c}).trim();
2016-04-18 02:06:57 +00:00
} else {
result += c;
}
}
return result;
});
2016-03-26 21:16:21 +00:00
2016-03-28 03:00:41 +00:00
this.translator = new Translator();
2016-05-04 03:49:09 +00:00
this.xhr = null;
2016-05-06 01:55:43 +00:00
this.setState('disabled');
2016-03-26 21:16:21 +00:00
2016-04-07 03:48:36 +00:00
loadOptions((opts) => {
2016-05-06 01:55:43 +00:00
this.setOptions(opts);
2016-04-06 05:18:55 +00:00
2016-04-07 03:48:36 +00:00
chrome.runtime.onMessage.addListener(this.onMessage.bind(this));
chrome.browserAction.onClicked.addListener(this.onBrowserAction.bind(this));
2016-04-07 04:04:38 +00:00
if (this.options.loadOnStartup) {
2016-05-06 01:55:43 +00:00
this.setState('loading');
2016-04-07 04:04:38 +00:00
}
2016-04-07 03:48:36 +00:00
});
2016-03-26 21:16:21 +00:00
}
onMessage(request, sender, callback) {
2016-05-06 01:55:43 +00:00
const {action, params} = request, handlers = {
findKanji: ({text}) => this.actionFindKanji(text, callback),
findTerm: ({text}) => this.actionFindTerm(text, callback),
2016-05-03 00:27:26 +00:00
getOptions: () => callback(this.options),
getState: () => callback(this.state),
renderText: ({data, template}) => callback(Handlebars.templates[template](data))
2016-04-07 03:48:36 +00:00
};
2016-05-06 01:55:43 +00:00
handlers[action].call(this, params);
2016-05-03 04:53:12 +00:00
return true;
2016-03-26 21:16:21 +00:00
}
onBrowserAction(tab) {
switch (this.state) {
case 'disabled':
2016-05-06 01:55:43 +00:00
this.setState('loading');
2016-03-26 21:16:21 +00:00
break;
case 'enabled':
2016-05-06 01:55:43 +00:00
this.setState('disabled');
2016-03-26 21:16:21 +00:00
break;
}
}
2016-05-06 01:55:43 +00:00
setState(state) {
2016-04-06 05:18:55 +00:00
if (this.state === state) {
return;
}
2016-03-26 21:16:21 +00:00
this.state = state;
2016-03-28 00:04:49 +00:00
switch (state) {
case 'disabled':
chrome.browserAction.setBadgeText({text: ''});
break;
case 'enabled':
chrome.browserAction.setBadgeText({text: 'on'});
break;
case 'loading':
chrome.browserAction.setBadgeText({text: '...'});
2016-05-06 01:55:43 +00:00
this.translator.loadData(() => this.setState('enabled'));
2016-03-28 00:04:49 +00:00
break;
}
2016-04-06 05:18:55 +00:00
Yomichan.notifyChange('state', this.state);
}
2016-05-06 01:55:43 +00:00
setOptions(options) {
2016-04-07 04:02:31 +00:00
this.options = options;
2016-04-06 05:18:55 +00:00
Yomichan.notifyChange('options', this.options);
}
2016-05-06 01:55:43 +00:00
actionFindTerm(text, callback) {
2016-05-03 00:27:26 +00:00
const results = this.translator.findTerm(text);
2016-05-03 03:40:41 +00:00
this.callAnkiApi('canAddNotes', results.results, (definitions) => {
if (definitions !== null) {
results.results = definitions;
}
callback(results);
2016-05-03 00:27:26 +00:00
});
}
2016-05-06 01:55:43 +00:00
actionFindKanji(text, callback) {
2016-05-03 00:27:26 +00:00
const results = this.translator.findKanji(text);
2016-05-03 03:40:41 +00:00
this.callAnkiApi('cannAddNotes', results.results, (definitions) => {
if (definitions !== null) {
results.results = definitions;
}
callback(results);
2016-05-03 00:27:26 +00:00
});
}
2016-05-06 01:55:43 +00:00
callAnkiApi(action, params, callback) {
2016-05-04 03:49:09 +00:00
if (!this.options.enableAnkiConnect) {
2016-05-03 00:27:26 +00:00
callback(null);
2016-05-04 03:49:09 +00:00
return;
}
if (this.xhr !== null) {
this.xhr.abort();
2016-05-03 00:27:26 +00:00
}
2016-05-04 03:49:09 +00:00
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');
2016-05-06 01:55:43 +00:00
this.xhr.send(JSON.stringify({action: action, params: params}));
2016-05-03 00:27:26 +00:00
}
2016-04-06 05:18:55 +00:00
static notifyChange(name, value) {
2016-03-28 00:04:49 +00:00
chrome.tabs.query({}, (tabs) => {
for (const tab of tabs) {
2016-04-06 05:18:55 +00:00
chrome.tabs.sendMessage(tab.id, {name: name, value: value}, () => null);
2016-03-28 00:04:49 +00:00
}
});
2016-03-26 21:16:21 +00:00
}
}
window.yomichan = new Yomichan();