yomichan/ext/fg/js/driver.js

252 lines
8.3 KiB
JavaScript
Raw Normal View History

2016-03-27 20:21:52 +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/>.
*/
2016-09-16 05:44:33 +00:00
class Driver {
2016-03-27 20:21:52 +00:00
constructor() {
2016-07-26 03:07:54 +00:00
this.popup = new Popup();
this.audio = {};
this.lastMousePos = null;
2016-07-23 19:47:42 +00:00
this.lastTextSource = null;
2016-09-12 02:47:40 +00:00
this.pendingLookup = false;
2016-07-26 03:07:54 +00:00
this.enabled = false;
2016-09-29 03:14:21 +00:00
this.options = null;
2016-07-26 03:07:54 +00:00
this.definitions = null;
this.sequence = 0;
this.fgRoot = chrome.extension.getURL('fg');
2016-03-28 00:04:49 +00:00
2016-04-18 00:36:15 +00:00
chrome.runtime.onMessage.addListener(this.onBgMessage.bind(this));
window.addEventListener('message', this.onFrameMessage.bind(this));
2016-03-29 02:06:01 +00:00
window.addEventListener('mousedown', this.onMouseDown.bind(this));
window.addEventListener('mousemove', this.onMouseMove.bind(this));
window.addEventListener('keydown', this.onKeyDown.bind(this));
2016-09-12 02:47:40 +00:00
window.addEventListener('scroll', e => this.hidePopup());
window.addEventListener('resize', e => this.hidePopup());
2016-09-29 03:14:21 +00:00
getOptions().then(opts => {
this.options = opts;
return getEnabled();
}).then(enabled => {
this.enabled = enabled;
});
2016-03-27 20:21:52 +00:00
}
2016-03-29 02:06:01 +00:00
onKeyDown(e) {
2016-09-12 03:18:34 +00:00
if (this.enabled && this.lastMousePos !== null && (e.keyCode === 16 || e.charCode === 16)) {
this.searchAt(this.lastMousePos, e.ctrlKey ? 'kanji' : 'terms');
} else {
this.hidePopup();
2016-03-28 05:27:30 +00:00
}
}
2016-03-29 02:06:01 +00:00
onMouseMove(e) {
2016-04-23 05:25:12 +00:00
this.lastMousePos = {x: e.clientX, y: e.clientY};
2016-09-12 03:18:34 +00:00
if (this.enabled && (e.shiftKey || e.which === 2)) {
this.searchAt(this.lastMousePos, e.ctrlKey ? 'kanji' : 'terms');
2016-03-28 00:04:49 +00:00
}
2016-03-29 02:06:01 +00:00
}
2016-03-28 00:04:49 +00:00
2016-03-29 02:06:01 +00:00
onMouseDown(e) {
2016-04-23 05:25:12 +00:00
this.lastMousePos = {x: e.clientX, y: e.clientY};
2016-09-12 03:18:34 +00:00
if (this.enabled && (e.shiftKey || e.which === 2)) {
this.searchAt(this.lastMousePos, e.ctrlKey ? 'kanji' : 'terms');
2016-03-29 02:06:01 +00:00
} else {
2016-04-24 04:09:33 +00:00
this.hidePopup();
2016-03-28 20:00:48 +00:00
}
}
2016-07-23 22:14:13 +00:00
onBgMessage({action, params}, sender, callback) {
const method = this['api_' + action];
if (typeof(method) === 'function') {
method.call(this, params);
2016-04-06 05:18:55 +00:00
}
2016-03-28 20:00:48 +00:00
callback();
}
2016-04-18 00:36:15 +00:00
onFrameMessage(e) {
2016-05-22 01:07:57 +00:00
const {action, params} = e.data, method = this['api_' + action];
if (typeof(method) === 'function') {
method.call(this, params);
2016-04-25 03:50:27 +00:00
}
2016-04-18 00:36:15 +00:00
}
searchTerms(textSource) {
2016-07-25 04:18:17 +00:00
textSource.setEndOffset(this.options.scanLength);
2016-08-10 04:23:05 +00:00
2016-09-12 02:47:40 +00:00
this.pendingLookup = true;
2016-09-12 03:59:42 +00:00
findTerm(textSource.text()).then(({definitions, length}) => {
if (definitions.length === 0) {
2016-09-12 03:41:41 +00:00
this.pendingLookup = false;
2016-09-12 03:18:34 +00:00
this.hidePopup();
} else {
2016-07-25 04:18:17 +00:00
textSource.setEndOffset(length);
2016-05-22 05:59:29 +00:00
2016-09-12 03:59:42 +00:00
const sentence = extractSentence(textSource, this.options.sentenceExtent);
2016-09-12 02:47:40 +00:00
definitions.forEach(definition => {
2016-07-26 03:07:54 +00:00
definition.url = window.location.href;
definition.sentence = sentence;
});
2016-09-12 03:18:34 +00:00
const sequence = ++this.sequence;
2016-09-12 03:59:42 +00:00
return renderText({definitions, sequence, root: this.fgRoot, options: this.options}, 'term-list.html').then(content => {
2016-09-12 03:18:34 +00:00
this.definitions = definitions;
2016-09-12 03:41:41 +00:00
this.pendingLookup = false;
2016-09-12 03:18:34 +00:00
this.showPopup(textSource, content);
2016-09-12 03:59:42 +00:00
return canAddDefinitions(definitions, ['term_kanji', 'term_kana']);
2016-09-12 03:18:34 +00:00
}).then(states => {
if (states !== null) {
2016-09-16 04:03:58 +00:00
states.forEach((state, index) => this.popup.invokeApi('setActionState', {index, state, sequence}));
2016-09-12 03:18:34 +00:00
}
});
}
2016-09-12 03:41:41 +00:00
});
2016-03-27 20:21:52 +00:00
}
searchKanji(textSource) {
textSource.setEndOffset(1);
this.pendingLookup = true;
findKanji(textSource.text()).then(definitions => {
if (definitions.length === 0) {
this.pendingLookup = false;
this.hidePopup();
} else {
definitions.forEach(definition => definition.url = window.location.href);
const sequence = ++this.sequence;
return renderText({definitions, sequence, root: this.fgRoot, options: this.options}, 'kanji-list.html').then(content => {
this.definitions = definitions;
this.pendingLookup = false;
this.showPopup(textSource, content);
return canAddDefinitions(definitions, ['kanji']);
}).then(states => {
if (states !== null) {
states.forEach((state, index) => this.popup.invokeApi('setActionState', {index, state, sequence}));
}
});
}
});
}
searchAt(point, mode) {
if (this.pendingLookup) {
return;
}
const textSource = textSourceFromPoint(point);
if (textSource === null || !textSource.containsPoint(point)) {
this.hidePopup();
return;
}
if (this.lastTextSource !== null && this.lastTextSource.equals(textSource)) {
return;
}
switch (mode) {
case 'terms':
this.searchTerms(textSource);
break;
case 'kanji':
this.searchKanji(textSource);
break;
}
}
showPopup(textSource, content) {
this.popup.showNextTo(textSource.getRect(), content);
2016-04-15 04:49:34 +00:00
2016-05-02 04:18:28 +00:00
if (this.options.selectMatchedText) {
textSource.select();
2016-04-08 05:41:16 +00:00
}
2016-03-27 20:21:52 +00:00
this.lastTextSource = textSource;
2016-03-27 20:21:52 +00:00
}
hidePopup() {
2016-04-23 17:10:34 +00:00
this.popup.hide();
2016-04-08 03:51:05 +00:00
if (this.options.selectMatchedText && this.lastTextSource !== null) {
this.lastTextSource.deselect();
2016-04-08 05:41:16 +00:00
}
2016-04-08 03:51:05 +00:00
2016-08-10 04:23:05 +00:00
this.lastTextSource = null;
2016-05-06 03:06:13 +00:00
this.definitions = null;
2016-03-27 20:21:52 +00:00
}
2016-03-28 00:04:49 +00:00
2016-07-23 22:14:13 +00:00
api_setOptions(opts) {
this.options = opts;
}
api_setEnabled(enabled) {
2016-03-28 00:04:49 +00:00
if (!(this.enabled = enabled)) {
this.hidePopup();
}
}
2016-04-06 05:18:55 +00:00
2016-05-22 01:07:57 +00:00
api_addNote({index, mode}) {
2016-08-21 02:32:50 +00:00
const state = {[mode]: false};
2016-09-12 03:59:42 +00:00
addDefinition(this.definitions[index], mode).then(success => {
2016-05-22 01:07:57 +00:00
if (success) {
2016-09-16 04:03:58 +00:00
this.popup.invokeApi('setActionState', {index, state, sequence: this.sequence});
2016-05-22 01:07:57 +00:00
} else {
alert('Note could not be added');
}
});
}
2016-07-18 15:08:31 +00:00
api_playAudio(index) {
const definition = this.definitions[index];
2016-07-20 16:01:40 +00:00
let url = `https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kanji=${encodeURIComponent(definition.expression)}`;
2016-07-18 15:08:31 +00:00
if (definition.reading) {
2016-07-20 16:01:40 +00:00
url += `&kana=${encodeURIComponent(definition.reading)}`;
2016-07-18 15:08:31 +00:00
}
2016-06-14 06:16:17 +00:00
2016-08-10 04:23:05 +00:00
for (const key in this.audio) {
2016-06-15 03:33:19 +00:00
this.audio[key].pause();
2016-06-14 06:16:17 +00:00
}
2016-06-15 03:33:19 +00:00
const audio = this.audio[url] || new Audio(url);
audio.currentTime = 0;
audio.play();
this.audio[url] = audio;
2016-06-14 05:09:39 +00:00
}
2016-05-22 01:07:57 +00:00
api_displayKanji(kanji) {
2016-09-12 03:59:42 +00:00
findKanji(kanji).then(definitions => {
2016-09-12 03:18:34 +00:00
definitions.forEach(definition => definition.url = window.location.href);
2016-09-12 03:35:53 +00:00
const sequence = ++this.sequence;
2016-09-12 03:59:42 +00:00
return renderText({definitions, sequence, root: this.fgRoot, options: this.options}, 'kanji-list.html').then(content => {
2016-09-12 03:35:53 +00:00
this.definitions = definitions;
this.popup.setContent(content, definitions);
2016-09-12 03:59:42 +00:00
return canAddDefinitions(definitions, ['kanji']);
2016-09-12 03:35:53 +00:00
}).then(states => {
if (states !== null) {
2016-09-16 04:03:58 +00:00
states.forEach((state, index) => this.popup.invokeApi('setActionState', {index, state, sequence}));
2016-09-12 03:35:53 +00:00
}
});
2016-09-12 03:18:34 +00:00
});
2016-05-22 01:07:57 +00:00
}
2016-03-27 20:21:52 +00:00
}
2016-09-16 05:44:33 +00:00
window.driver = new Driver();