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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Client {
|
|
|
|
|
constructor() {
|
2016-07-25 20:07:54 -07:00
|
|
|
|
this.popup = new Popup();
|
|
|
|
|
this.audio = {};
|
|
|
|
|
this.lastMousePos = null;
|
2016-07-23 12:47:42 -07:00
|
|
|
|
this.lastTextSource = null;
|
2016-07-25 20:07:54 -07:00
|
|
|
|
this.activateKey = 16;
|
|
|
|
|
this.activateBtn = 2;
|
|
|
|
|
this.enabled = false;
|
|
|
|
|
this.options = {};
|
|
|
|
|
this.definitions = null;
|
|
|
|
|
this.sequence = 0;
|
|
|
|
|
this.fgRoot = chrome.extension.getURL('fg');
|
2016-03-27 17:04:49 -07:00
|
|
|
|
|
2016-04-17 17:36:15 -07:00
|
|
|
|
chrome.runtime.onMessage.addListener(this.onBgMessage.bind(this));
|
|
|
|
|
window.addEventListener('message', this.onFrameMessage.bind(this));
|
2016-03-28 19:06:01 -07:00
|
|
|
|
window.addEventListener('mousedown', this.onMouseDown.bind(this));
|
|
|
|
|
window.addEventListener('mousemove', this.onMouseMove.bind(this));
|
|
|
|
|
window.addEventListener('keydown', this.onKeyDown.bind(this));
|
2016-03-28 20:01:53 -07:00
|
|
|
|
window.addEventListener('scroll', (e) => this.hidePopup());
|
|
|
|
|
window.addEventListener('resize', (e) => this.hidePopup());
|
2016-03-27 13:21:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-28 19:06:01 -07:00
|
|
|
|
onKeyDown(e) {
|
2016-04-24 11:26:42 -07:00
|
|
|
|
if (this.enabled && this.lastMousePos !== null && (e.keyCode === this.activateKey || e.charCode === this.activateKey)) {
|
2016-04-22 22:25:12 -07:00
|
|
|
|
this.searchAt(this.lastMousePos);
|
2016-03-27 22:27:30 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-28 19:06:01 -07:00
|
|
|
|
onMouseMove(e) {
|
2016-04-22 22:25:12 -07:00
|
|
|
|
this.lastMousePos = {x: e.clientX, y: e.clientY};
|
2016-04-24 11:26:42 -07:00
|
|
|
|
if (this.enabled && (e.shiftKey || e.which === this.activateBtn)) {
|
2016-04-22 22:25:12 -07:00
|
|
|
|
this.searchAt(this.lastMousePos);
|
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) {
|
2016-04-22 22:25:12 -07:00
|
|
|
|
this.lastMousePos = {x: e.clientX, y: e.clientY};
|
2016-04-24 11:26:42 -07:00
|
|
|
|
if (this.enabled && (e.shiftKey || e.which === this.activateBtn)) {
|
2016-04-22 22:25:12 -07:00
|
|
|
|
this.searchAt(this.lastMousePos);
|
2016-03-28 19:06:01 -07:00
|
|
|
|
} else {
|
2016-04-23 21:09:33 -07:00
|
|
|
|
this.hidePopup();
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-17 17:36:15 -07:00
|
|
|
|
onFrameMessage(e) {
|
2016-05-21 18:07:57 -07:00
|
|
|
|
const {action, params} = e.data, method = this['api_' + action];
|
|
|
|
|
if (typeof(method) === 'function') {
|
|
|
|
|
method.call(this, params);
|
2016-04-24 20:50:27 -07:00
|
|
|
|
}
|
2016-04-17 17:36:15 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-22 22:25:12 -07:00
|
|
|
|
searchAt(point) {
|
2016-07-24 21:22:03 -07:00
|
|
|
|
const textSource = Client.textSourceFromPoint(point);
|
2016-07-22 22:14:59 -07:00
|
|
|
|
if (textSource === null || !textSource.containsPoint(point)) {
|
2016-04-23 22:11:29 -07:00
|
|
|
|
this.hidePopup();
|
2016-03-27 13:21:52 -07:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-23 13:06:09 -07:00
|
|
|
|
if (this.lastTextSource !== null && this.lastTextSource.equals(textSource)) {
|
2016-04-07 20:51:05 -07:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-24 21:18:17 -07:00
|
|
|
|
textSource.setEndOffset(this.options.scanLength);
|
2016-07-22 22:14:59 -07:00
|
|
|
|
bgFindTerm(textSource.text(), ({definitions, length}) => {
|
2016-03-27 18:24:04 -07:00
|
|
|
|
if (length === 0) {
|
2016-04-23 10:10:34 -07:00
|
|
|
|
this.hidePopup();
|
2016-03-27 18:24:04 -07:00
|
|
|
|
} else {
|
2016-07-24 21:18:17 -07:00
|
|
|
|
textSource.setEndOffset(length);
|
2016-05-21 22:59:29 -07:00
|
|
|
|
|
2016-07-25 20:32:45 -07:00
|
|
|
|
const sentence = Client.extractSentence(textSource, this.options.sentenceExtent);
|
2016-07-25 20:07:54 -07:00
|
|
|
|
definitions.forEach((definition) => {
|
|
|
|
|
definition.url = window.location.href;
|
|
|
|
|
definition.sentence = sentence;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const sequence = ++this.sequence;
|
2016-05-05 20:27:04 -07:00
|
|
|
|
bgRenderText(
|
2016-05-29 13:26:09 -07:00
|
|
|
|
{definitions, root: this.fgRoot, options: this.options, sequence},
|
2016-04-22 22:25:12 -07:00
|
|
|
|
'term-list.html',
|
2016-05-04 19:31:06 -07:00
|
|
|
|
(content) => {
|
2016-05-05 20:06:13 -07:00
|
|
|
|
this.definitions = definitions;
|
2016-07-22 22:14:59 -07:00
|
|
|
|
this.showPopup(textSource, content);
|
2016-05-05 21:36:50 -07:00
|
|
|
|
|
2016-05-29 13:26:09 -07:00
|
|
|
|
bgCanAddDefinitions(definitions, ['vocab_kanji', 'vocab_kana'], (states) => {
|
2016-05-05 20:27:04 -07:00
|
|
|
|
if (states !== null) {
|
2016-05-29 12:58:51 -07:00
|
|
|
|
states.forEach((state, index) => this.popup.sendMessage('setActionState', {index, state, sequence}));
|
2016-05-05 20:27:04 -07:00
|
|
|
|
}
|
2016-05-05 20:23:06 -07:00
|
|
|
|
});
|
2016-05-04 19:31:06 -07:00
|
|
|
|
}
|
2016-04-22 22:25:12 -07:00
|
|
|
|
);
|
2016-03-27 18:24:04 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
2016-03-27 13:21:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 22:14:59 -07:00
|
|
|
|
showPopup(textSource, content) {
|
|
|
|
|
this.popup.showNextTo(textSource.getRect(), content);
|
2016-04-14 21:49:34 -07:00
|
|
|
|
|
2016-05-01 21:18:28 -07:00
|
|
|
|
if (this.options.selectMatchedText) {
|
2016-07-22 22:14:59 -07:00
|
|
|
|
textSource.select();
|
2016-04-07 22:41:16 -07:00
|
|
|
|
}
|
2016-03-27 13:21:52 -07:00
|
|
|
|
|
2016-07-22 22:14:59 -07:00
|
|
|
|
this.lastTextSource = textSource;
|
2016-03-27 13:21:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hidePopup() {
|
2016-04-23 10:10:34 -07:00
|
|
|
|
this.popup.hide();
|
2016-04-07 20:51:05 -07:00
|
|
|
|
|
2016-07-22 22:14:59 -07:00
|
|
|
|
if (this.options.selectMatchedText && this.lastTextSource !== null) {
|
|
|
|
|
this.lastTextSource.deselect();
|
2016-04-07 22:41:16 -07:00
|
|
|
|
}
|
2016-04-07 20:51:05 -07:00
|
|
|
|
|
2016-07-22 22:14:59 -07:00
|
|
|
|
this.lastTextSource = null;
|
2016-05-05 20:06:13 -07:00
|
|
|
|
this.definitions = null;
|
2016-03-27 13:21:52 -07:00
|
|
|
|
}
|
2016-03-27 17:04:49 -07:00
|
|
|
|
|
2016-07-23 15:14:13 -07:00
|
|
|
|
api_setOptions(opts) {
|
|
|
|
|
this.options = opts;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
api_setEnabled(enabled) {
|
2016-03-27 17:04:49 -07:00
|
|
|
|
if (!(this.enabled = enabled)) {
|
|
|
|
|
this.hidePopup();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-05 22:18:55 -07:00
|
|
|
|
|
2016-05-21 18:07:57 -07:00
|
|
|
|
api_addNote({index, mode}) {
|
|
|
|
|
const state = {};
|
|
|
|
|
state[mode] = false;
|
|
|
|
|
|
2016-05-29 13:26:09 -07:00
|
|
|
|
bgAddDefinition(this.definitions[index], mode, (success) => {
|
2016-05-21 18:07:57 -07:00
|
|
|
|
if (success) {
|
2016-05-29 12:58:51 -07:00
|
|
|
|
this.popup.sendMessage('setActionState', {index, state, sequence: this.sequence});
|
2016-05-21 18:07:57 -07:00
|
|
|
|
} else {
|
|
|
|
|
alert('Note could not be added');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-18 08:08:31 -07:00
|
|
|
|
api_playAudio(index) {
|
|
|
|
|
const definition = this.definitions[index];
|
|
|
|
|
|
2016-07-20 09:01:40 -07:00
|
|
|
|
let url = `https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kanji=${encodeURIComponent(definition.expression)}`;
|
2016-07-18 08:08:31 -07:00
|
|
|
|
if (definition.reading) {
|
2016-07-20 09:01:40 -07:00
|
|
|
|
url += `&kana=${encodeURIComponent(definition.reading)}`;
|
2016-07-18 08:08:31 -07:00
|
|
|
|
}
|
2016-06-13 23:16:17 -07:00
|
|
|
|
|
2016-06-14 20:33:19 -07:00
|
|
|
|
for (let key in this.audio) {
|
|
|
|
|
this.audio[key].pause();
|
2016-06-13 23:16:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-14 20:33:19 -07:00
|
|
|
|
const audio = this.audio[url] || new Audio(url);
|
|
|
|
|
audio.currentTime = 0;
|
|
|
|
|
audio.play();
|
|
|
|
|
|
|
|
|
|
this.audio[url] = audio;
|
2016-06-13 22:09:39 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-21 18:07:57 -07:00
|
|
|
|
api_displayKanji(kanji) {
|
|
|
|
|
bgFindKanji(kanji, (definitions) => {
|
2016-07-25 20:07:54 -07:00
|
|
|
|
definitions.forEach((definition) => {
|
|
|
|
|
definition.url = window.location.href;
|
|
|
|
|
});
|
|
|
|
|
|
2016-05-21 18:07:57 -07:00
|
|
|
|
const sequence = ++this.sequence;
|
|
|
|
|
bgRenderText(
|
2016-05-29 13:26:09 -07:00
|
|
|
|
{definitions, root: this.fgRoot, options: this.options, sequence},
|
2016-05-21 18:07:57 -07:00
|
|
|
|
'kanji-list.html',
|
|
|
|
|
(content) => {
|
|
|
|
|
this.definitions = definitions;
|
|
|
|
|
this.popup.setContent(content, definitions);
|
|
|
|
|
|
2016-05-29 13:26:09 -07:00
|
|
|
|
bgCanAddDefinitions(definitions, ['kanji'], (states) => {
|
2016-05-21 18:07:57 -07:00
|
|
|
|
if (states !== null) {
|
2016-05-29 12:58:51 -07:00
|
|
|
|
states.forEach((state, index) => this.popup.sendMessage('setActionState', {index, state, sequence}));
|
2016-05-21 18:07:57 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-07-24 21:22:03 -07:00
|
|
|
|
|
|
|
|
|
static textSourceFromPoint(point) {
|
|
|
|
|
const element = document.elementFromPoint(point.x, point.y);
|
|
|
|
|
if (element !== null) {
|
2016-07-25 20:43:35 -07:00
|
|
|
|
const names = ['IMG', 'INPUT', 'BUTTON', 'TEXTAREA'];
|
|
|
|
|
if (names.indexOf(element.nodeName) !== -1) {
|
|
|
|
|
return new TextSourceElement(element);
|
2016-07-24 21:22:03 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const range = document.caretRangeFromPoint(point.x, point.y);
|
|
|
|
|
if (range !== null) {
|
|
|
|
|
return new TextSourceRange(range);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-25 20:07:54 -07:00
|
|
|
|
static extractSentence(source, extent) {
|
|
|
|
|
const quotesFwd = {'「': '」', '『': '』', "'": "'", '"': '"'};
|
|
|
|
|
const quotesBwd = {'」': '「', '』': '『', "'": "'", '"': '"'};
|
2016-07-24 21:22:03 -07:00
|
|
|
|
const terminators = '…。..??!!';
|
|
|
|
|
|
2016-07-25 20:07:54 -07:00
|
|
|
|
const sourceLocal = source.clone();
|
|
|
|
|
const position = sourceLocal.setStartOffset(extent);
|
|
|
|
|
sourceLocal.setEndOffset(position + extent);
|
|
|
|
|
const content = sourceLocal.text();
|
|
|
|
|
|
2016-07-24 21:22:03 -07:00
|
|
|
|
let quoteStack = [];
|
|
|
|
|
|
|
|
|
|
let startPos = 0;
|
|
|
|
|
for (let i = position; i >= startPos; --i) {
|
|
|
|
|
const c = content[i];
|
|
|
|
|
|
|
|
|
|
if (quoteStack.length === 0 && (terminators.indexOf(c) !== -1 || c in quotesFwd)) {
|
|
|
|
|
startPos = i + 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (quoteStack.length > 0 && c === quoteStack[0]) {
|
|
|
|
|
quoteStack.pop();
|
|
|
|
|
} else if (c in quotesBwd) {
|
|
|
|
|
quoteStack = [quotesBwd[c]].concat(quoteStack);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quoteStack = [];
|
|
|
|
|
|
|
|
|
|
let endPos = content.length;
|
|
|
|
|
for (let i = position; i < endPos; ++i) {
|
|
|
|
|
const c = content[i];
|
|
|
|
|
|
|
|
|
|
if (quoteStack.length === 0) {
|
|
|
|
|
if (terminators.indexOf(c) !== -1) {
|
|
|
|
|
endPos = i + 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else if (c in quotesBwd) {
|
|
|
|
|
endPos = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (quoteStack.length > 0 && c === quoteStack[0]) {
|
|
|
|
|
quoteStack.pop();
|
|
|
|
|
} else if (c in quotesFwd) {
|
|
|
|
|
quoteStack = [quotesFwd[c]].concat(quoteStack);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return content.substring(startPos, endPos).trim();
|
|
|
|
|
}
|
2016-03-27 13:21:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.yomiClient = new Client();
|