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-03-26 21:16:21 +00:00
|
|
|
this.updateState('disabled');
|
|
|
|
|
2016-04-07 03:48:36 +00:00
|
|
|
loadOptions((opts) => {
|
|
|
|
this.updateOptions(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) {
|
|
|
|
this.updateState('loading');
|
|
|
|
}
|
2016-04-07 03:48:36 +00:00
|
|
|
});
|
2016-03-26 21:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onMessage(request, sender, callback) {
|
2016-04-25 01:34:31 +00:00
|
|
|
const {action, data} = request, handlers = {
|
2016-04-25 01:59:29 +00:00
|
|
|
findKanji: ({text}) => this.translator.findKanji(text),
|
2016-04-18 01:38:29 +00:00
|
|
|
findTerm: ({text}) => this.translator.findTerm(text),
|
2016-04-07 03:48:36 +00:00
|
|
|
getState: () => this.state,
|
|
|
|
getOptions: () => this.options,
|
|
|
|
renderText: ({data, template}) => Handlebars.templates[template](data)
|
|
|
|
};
|
|
|
|
|
|
|
|
const result = handlers[action].call(this, data);
|
2016-04-06 05:18:55 +00:00
|
|
|
if (callback !== null) {
|
|
|
|
callback(result);
|
2016-03-26 21:16:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onBrowserAction(tab) {
|
|
|
|
switch (this.state) {
|
|
|
|
case 'disabled':
|
|
|
|
this.updateState('loading');
|
|
|
|
break;
|
|
|
|
case 'enabled':
|
|
|
|
this.updateState('disabled');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateState(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-04-04 05:22:38 +00:00
|
|
|
this.translator.loadData(() => this.updateState('enabled'));
|
2016-03-28 00:04:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-04-06 05:18:55 +00:00
|
|
|
Yomichan.notifyChange('state', this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateOptions(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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|