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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class Client {
|
|
|
|
constructor() {
|
2016-04-18 01:42:44 +00:00
|
|
|
this.popupMousePos = null;
|
|
|
|
this.popupQuery = '';
|
|
|
|
this.popupOffset = 10;
|
|
|
|
this.enabled = false;
|
|
|
|
this.options = {};
|
2016-03-28 00:04:49 +00:00
|
|
|
|
2016-04-15 03:36:00 +00:00
|
|
|
this.popup = document.createElement('iframe');
|
2016-03-30 05:32:40 +00:00
|
|
|
this.popup.classList.add('yomichan-popup');
|
2016-04-15 04:55:21 +00:00
|
|
|
this.popup.addEventListener('mousedown', (e) => e.stopPropagation());
|
|
|
|
this.popup.addEventListener('scroll', (e) => e.stopPropagation());
|
2016-04-02 19:56:47 +00:00
|
|
|
document.body.appendChild(this.popup);
|
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-03-29 03:01:53 +00:00
|
|
|
window.addEventListener('scroll', (e) => this.hidePopup());
|
|
|
|
window.addEventListener('resize', (e) => this.hidePopup());
|
2016-03-27 20:21:52 +00:00
|
|
|
|
2016-04-07 03:48:36 +00:00
|
|
|
getOptions((opts) => {
|
|
|
|
this.setOptions(opts);
|
2016-04-15 04:49:34 +00:00
|
|
|
getState((state) => this.setEnabled(state === 'enabled'));
|
2016-04-07 03:48:36 +00:00
|
|
|
});
|
2016-03-27 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 02:06:01 +00:00
|
|
|
onKeyDown(e) {
|
2016-04-18 01:42:44 +00:00
|
|
|
if (this.enabled && this.popupMousePos !== null && (e.keyCode === 16 || e.charCode === 16)) {
|
|
|
|
this.searchAtPoint(this.popupMousePos);
|
2016-03-28 05:27:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 02:06:01 +00:00
|
|
|
onMouseMove(e) {
|
2016-04-18 01:42:44 +00:00
|
|
|
this.popupMousePos = {x: e.clientX, y: e.clientY};
|
2016-03-29 02:06:01 +00:00
|
|
|
if (this.enabled && (e.shiftKey || e.which === 2)) {
|
2016-04-18 01:42:44 +00:00
|
|
|
this.searchAtPoint(this.popupMousePos);
|
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-18 01:42:44 +00:00
|
|
|
this.popupMousePos = {x: e.clientX, y: e.clientY};
|
2016-03-29 02:06:01 +00:00
|
|
|
if (this.enabled && (e.shiftKey || e.which === 2)) {
|
2016-04-18 01:42:44 +00:00
|
|
|
this.searchAtPoint(this.popupMousePos);
|
2016-03-29 02:06:01 +00:00
|
|
|
} else {
|
|
|
|
this.hidePopup();
|
2016-03-28 20:00:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 00:36:15 +00:00
|
|
|
onBgMessage({name, value}, sender, callback) {
|
2016-04-06 05:18:55 +00:00
|
|
|
switch (name) {
|
|
|
|
case 'state':
|
|
|
|
this.setEnabled(value === 'enabled');
|
|
|
|
break;
|
|
|
|
case 'options':
|
|
|
|
this.setOptions(value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-03-28 20:00:48 +00:00
|
|
|
callback();
|
|
|
|
}
|
|
|
|
|
2016-04-18 00:36:15 +00:00
|
|
|
onFrameMessage(e) {
|
2016-04-18 01:42:44 +00:00
|
|
|
// const {action, data} = e.data;
|
|
|
|
// switch (action) {
|
|
|
|
// }
|
2016-04-18 00:36:15 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 20:00:48 +00:00
|
|
|
searchAtPoint(point) {
|
2016-04-07 05:02:49 +00:00
|
|
|
const range = getRangeAtPoint(point, this.options.scanLength);
|
2016-03-27 20:21:52 +00:00
|
|
|
if (range === null) {
|
|
|
|
this.hidePopup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-11 05:04:58 +00:00
|
|
|
if (this.popup.contains(range.startContainer)) {
|
|
|
|
this.hidePopup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-27 20:21:52 +00:00
|
|
|
const rect = getRangePaddedRect(range);
|
2016-03-28 20:00:48 +00:00
|
|
|
if (point.x < rect.left || point.x > rect.right) {
|
2016-03-27 20:21:52 +00:00
|
|
|
this.hidePopup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-15 04:49:34 +00:00
|
|
|
const popupQuery = range.toString();
|
|
|
|
if (popupQuery === this.popupQuery) {
|
2016-04-08 03:51:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-18 01:38:29 +00:00
|
|
|
findTerm(popupQuery, ({results, length}) => {
|
2016-03-28 01:24:04 +00:00
|
|
|
if (length === 0) {
|
|
|
|
this.hidePopup();
|
|
|
|
} else {
|
2016-04-18 01:38:29 +00:00
|
|
|
const params = {defs: results, root: chrome.extension.getURL('fg')};
|
2016-04-18 01:20:39 +00:00
|
|
|
renderText(params, 'term-list.html', (html) => this.showPopup(range, html, popupQuery, length));
|
2016-03-28 01:24:04 +00:00
|
|
|
}
|
|
|
|
});
|
2016-03-27 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 04:49:34 +00:00
|
|
|
showPopup(range, html, popupQuery, length) {
|
2016-04-08 05:41:16 +00:00
|
|
|
if (this.options.highlightText) {
|
2016-04-15 04:49:34 +00:00
|
|
|
range.setEnd(range.endContainer, range.startOffset + length);
|
|
|
|
|
2016-04-08 05:41:16 +00:00
|
|
|
const selection = window.getSelection();
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(range);
|
|
|
|
}
|
2016-03-27 20:21:52 +00:00
|
|
|
|
|
|
|
const pos = getPopupPositionForRange(this.popup, range, this.popupOffset);
|
2016-03-30 05:32:40 +00:00
|
|
|
|
2016-04-15 04:49:34 +00:00
|
|
|
if (this.popup.getAttribute('srcdoc') !== html) {
|
|
|
|
this.popup.setAttribute('srcdoc', html);
|
|
|
|
}
|
|
|
|
|
2016-03-30 05:32:40 +00:00
|
|
|
this.popup.style.left = pos.x + 'px';
|
|
|
|
this.popup.style.top = pos.y + 'px';
|
|
|
|
this.popup.style.visibility = 'visible';
|
2016-04-15 04:49:34 +00:00
|
|
|
this.popupQuery = popupQuery;
|
2016-03-27 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hidePopup() {
|
2016-04-08 03:51:05 +00:00
|
|
|
if (this.popup.style.visibility === 'hidden') {
|
|
|
|
return;
|
2016-03-28 20:00:48 +00:00
|
|
|
}
|
2016-04-08 03:51:05 +00:00
|
|
|
|
2016-04-08 05:41:16 +00:00
|
|
|
if (this.options.highlightText) {
|
|
|
|
const selection = window.getSelection();
|
|
|
|
selection.removeAllRanges();
|
|
|
|
}
|
2016-04-08 03:51:05 +00:00
|
|
|
|
|
|
|
this.popup.style.visibility = 'hidden';
|
2016-04-15 04:49:34 +00:00
|
|
|
this.popupQuery = '';
|
2016-03-27 20:21:52 +00:00
|
|
|
}
|
2016-03-28 00:04:49 +00:00
|
|
|
|
|
|
|
setEnabled(enabled) {
|
|
|
|
if (!(this.enabled = enabled)) {
|
|
|
|
this.hidePopup();
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 05:18:55 +00:00
|
|
|
|
|
|
|
setOptions(opts) {
|
|
|
|
this.options = opts;
|
|
|
|
}
|
2016-03-27 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.yomiClient = new Client();
|