yomichan/ext/client.js

100 lines
2.9 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/>.
*/
class Client {
constructor() {
2016-03-28 00:04:49 +00:00
this.popup = $('<div class="yomichan-popup"/>');
2016-03-27 20:21:52 +00:00
this.popupOffset = 10;
2016-03-28 00:04:49 +00:00
this.enabled = false;
2016-03-28 05:27:30 +00:00
$('body').append(this.popup).click(() => this.hidePopup());
2016-03-28 00:04:49 +00:00
chrome.runtime.onMessage.addListener(this.onMessage.bind(this));
window.addEventListener('mousemove', this.onMouseMove.bind(this));
2016-03-28 05:27:30 +00:00
window.addEventListener('keydown', this.onKeyDown.bind(this));
2016-03-27 20:21:52 +00:00
2016-03-28 00:04:49 +00:00
getState((state) => this.setEnabled(state === 'enabled'));
2016-03-27 20:21:52 +00:00
}
2016-03-28 05:27:30 +00:00
onKeyDown(e) {
if (e.keyCode === 16 || e.charCode === 16) {
this.hidePopup();
}
}
2016-03-27 20:21:52 +00:00
onMouseMove(e) {
2016-03-28 05:27:30 +00:00
if (!this.enabled || (!e.shiftKey && e.which !== 2)) {
2016-03-28 00:04:49 +00:00
return;
}
2016-03-27 20:21:52 +00:00
const range = getRangeAtCursor(e, 10);
if (range === null) {
this.hidePopup();
return;
}
const rect = getRangePaddedRect(range);
if (e.clientX < rect.left || e.clientX > rect.right) {
this.hidePopup();
return;
}
2016-03-28 01:24:04 +00:00
findTerm(range.toString(), ({results, length}) => {
if (length === 0) {
this.hidePopup();
} else {
range.setEnd(range.endContainer, range.startOffset + length);
2016-03-28 05:27:30 +00:00
renderTemplate({defs: results}, 'defs.html', (html) => {
2016-03-28 03:00:41 +00:00
this.popup.html(html);
this.showPopup(range);
});
2016-03-28 01:24:04 +00:00
}
});
2016-03-27 20:21:52 +00:00
}
2016-03-28 00:04:49 +00:00
onMessage(request, sender, callback) {
this.setEnabled(request === 'enabled');
callback();
}
2016-03-27 20:21:52 +00:00
showPopup(range) {
const selection = window.getSelection();
selection.removeAllRanges();
selection.addRange(range);
const pos = getPopupPositionForRange(this.popup, range, this.popupOffset);
this.popup.css({left: pos.x, top: pos.y, visibility: 'visible'});
}
hidePopup() {
const selection = window.getSelection();
selection.removeAllRanges();
this.popup.css({visibility: 'hidden'});
}
2016-03-28 00:04:49 +00:00
setEnabled(enabled) {
if (!(this.enabled = enabled)) {
this.hidePopup();
}
}
2016-03-27 20:21:52 +00:00
}
window.yomiClient = new Client();