yomichan/ext/fg/js/driver.js

216 lines
6.3 KiB
JavaScript
Raw Normal View History

2016-03-27 13:21:52 -07: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-15 22:44:33 -07:00
class Driver {
2016-03-27 13:21:52 -07:00
constructor() {
2016-07-25 20:07:54 -07:00
this.popup = new Popup();
this.popupTimer = null;
2016-07-25 20:07:54 -07:00
this.lastMousePos = null;
2017-02-26 12:06:37 -08:00
this.mouseDownLeft = false;
this.mouseDownMiddle = false;
2016-07-23 12:47:42 -07:00
this.lastTextSource = null;
2016-09-11 19:47:40 -07:00
this.pendingLookup = false;
2016-09-28 20:14:21 -07:00
this.options = null;
2016-03-27 17:04:49 -07:00
2017-03-02 22:35:02 -08:00
bgOptionsGet().then(options => {
2017-01-27 21:21:05 -08:00
this.options = options;
2017-02-25 19:14:44 -08:00
window.addEventListener('mouseover', this.onMouseOver.bind(this));
window.addEventListener('mousedown', this.onMouseDown.bind(this));
2017-02-26 12:01:14 -08:00
window.addEventListener('mouseup', this.onMouseUp.bind(this));
2017-02-25 19:14:44 -08:00
window.addEventListener('mousemove', this.onMouseMove.bind(this));
window.addEventListener('resize', e => this.searchClear());
chrome.runtime.onMessage.addListener(this.onBgMessage.bind(this));
}).catch(this.handleError.bind(this));
2016-03-27 13:21:52 -07:00
}
popupTimerSet(callback) {
this.popupTimerClear();
2017-01-13 21:06:33 -08:00
this.popupTimer = window.setTimeout(callback, this.options.scanning.delay);
}
popupTimerClear() {
if (this.popupTimer !== null) {
window.clearTimeout(this.popupTimer);
this.popupTimer = null;
}
}
onMouseOver(e) {
if (e.target === this.popup.container && this.popuptimer !== null) {
this.popupTimerClear();
}
}
2016-03-28 19:06:01 -07:00
onMouseMove(e) {
this.lastMousePos = {x: e.clientX, y: e.clientY};
this.popupTimerClear();
2017-02-25 19:14:44 -08:00
if (!this.options.general.enable) {
return;
}
2017-02-26 12:06:37 -08:00
if (this.mouseDownLeft) {
2017-02-26 12:01:14 -08:00
return;
}
2017-02-26 12:06:37 -08:00
if (this.options.scanning.requireShift && !e.shiftKey && !this.mouseDownMiddle) {
return;
}
2017-02-10 21:11:34 -08:00
const searcher = () => this.searchAt(this.lastMousePos);
2017-02-26 12:06:37 -08:00
if (this.popup.isVisible()) {
searcher();
} else {
this.popupTimerSet(searcher);
2016-03-27 17:04:49 -07:00
}
2016-03-28 19:06:01 -07:00
}
2016-03-27 17:04:49 -07:00
2016-03-28 19:06:01 -07:00
onMouseDown(e) {
this.lastMousePos = {x: e.clientX, y: e.clientY};
this.popupTimerClear();
2017-01-07 18:39:36 -08:00
this.searchClear();
2017-02-26 12:01:14 -08:00
if (e.which === 1) {
2017-02-26 12:06:37 -08:00
this.mouseDownLeft = true;
} else if (e.which === 2) {
this.mouseDownMiddle = true;
2017-02-26 12:01:14 -08:00
}
}
onMouseUp(e) {
if (e.which === 1) {
2017-02-26 12:06:37 -08:00
this.mouseDownLeft = false;
} else if (e.which === 2) {
this.mouseDownMiddle = false;
2017-02-26 12:01:14 -08:00
}
2016-03-28 13:00:48 -07:00
}
2016-07-23 15:14:13 -07:00
onBgMessage({action, params}, sender, callback) {
const method = this['api_' + action];
if (typeof(method) === 'function') {
method.call(this, params);
2016-04-05 22:18:55 -07:00
}
2016-03-28 13:00:48 -07:00
callback();
}
2017-02-10 21:11:34 -08:00
searchAt(point) {
2017-01-07 12:21:47 -08:00
if (this.pendingLookup) {
return;
}
2017-03-02 22:35:02 -08:00
const textSource = docRangeFromPoint(point, this.options.scanning.imposter);
2017-01-07 12:21:47 -08:00
if (textSource === null || !textSource.containsPoint(point)) {
return;
}
if (this.lastTextSource !== null && this.lastTextSource.equals(textSource)) {
2017-01-07 18:39:36 -08:00
return;
2016-04-24 20:50:27 -07:00
}
2017-01-07 12:21:47 -08:00
this.pendingLookup = true;
this.searchTerms(textSource).then(found => {
if (!found) {
2017-02-10 21:11:34 -08:00
return this.searchKanji(textSource);
2017-01-07 12:21:47 -08:00
}
}).catch(error => {
this.handleError(error, textSource);
2017-01-07 12:21:47 -08:00
}).then(() => {
this.pendingLookup = false;
});
2016-04-17 17:36:15 -07:00
}
searchTerms(textSource) {
2017-01-13 21:06:33 -08:00
textSource.setEndOffset(this.options.scanning.length);
2016-08-09 21:23:05 -07:00
2017-03-02 22:35:02 -08:00
const findFunc = this.options.general.groupResults ? bgTermsFindGrouped : bgTermsFind;
2017-01-08 15:33:45 -08:00
return findFunc(textSource.text()).then(({definitions, length}) => {
if (definitions.length === 0) {
return false;
2016-09-11 20:18:34 -07:00
} else {
2016-07-24 21:18:17 -07:00
textSource.setEndOffset(length);
2016-05-21 22:59:29 -07:00
2017-03-02 22:35:02 -08:00
const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt);
const url = window.location.href;
2016-07-25 20:07:54 -07:00
2017-01-07 12:21:47 -08:00
this.popup.showNextTo(textSource.getRect());
this.popup.showTermDefs(definitions, this.options, {sentence, url});
2017-01-07 18:52:51 -08:00
this.lastTextSource = textSource;
2017-01-13 21:06:33 -08:00
if (this.options.scanning.selectText) {
2017-01-07 18:52:51 -08:00
textSource.select();
}
2017-01-07 12:21:47 -08:00
return true;
2016-09-11 20:18:34 -07:00
}
2016-09-11 20:41:41 -07:00
});
2016-03-27 13:21:52 -07:00
}
searchKanji(textSource) {
textSource.setEndOffset(1);
2017-03-02 22:35:02 -08:00
return bgKanjiFind(textSource.text()).then(definitions => {
if (definitions.length === 0) {
return false;
} else {
2017-03-02 22:35:02 -08:00
const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt);
const url = window.location.href;
2017-01-07 12:21:47 -08:00
this.popup.showNextTo(textSource.getRect());
this.popup.showKanjiDefs(definitions, this.options, {sentence, url});
2017-01-07 18:52:51 -08:00
this.lastTextSource = textSource;
2017-01-13 21:06:33 -08:00
if (this.options.scanning.selectText) {
2017-01-07 18:52:51 -08:00
textSource.select();
}
2017-01-07 12:21:47 -08:00
return true;
}
});
}
2017-01-07 18:39:36 -08:00
searchClear() {
2017-03-02 22:35:02 -08:00
docImposterDestroy();
2016-04-23 10:10:34 -07:00
this.popup.hide();
2016-04-07 20:51:05 -07:00
2017-01-13 21:06:33 -08:00
if (this.options.scanning.selectText && this.lastTextSource !== null) {
this.lastTextSource.deselect();
2016-04-07 22:41:16 -07:00
}
2016-04-07 20:51:05 -07:00
2016-08-09 21:23:05 -07:00
this.lastTextSource = null;
2016-03-27 13:21:52 -07:00
}
2016-03-27 17:04:49 -07:00
handleError(error, textSource) {
if (window.orphaned) {
if (textSource) {
this.popup.showNextTo(textSource.getRect());
this.popup.showOrphaned();
}
} else {
2017-03-02 22:35:02 -08:00
errorShow(error);
}
2016-07-23 15:14:13 -07:00
}
2017-01-27 21:21:05 -08:00
api_setOptions(options) {
this.options = options;
2016-03-27 17:04:49 -07:00
}
2016-03-27 13:21:52 -07:00
}
2016-09-15 22:44:33 -07:00
window.driver = new Driver();