yomichan/ext/fg/js/frontend.js

251 lines
7.6 KiB
JavaScript
Raw Normal View History

2016-03-27 20:21:52 +00:00
/*
2017-08-16 03:04:15 +00:00
* Copyright (C) 2016-2017 Alex Yatskov <alex@foosoft.net>
2016-03-27 20:21:52 +00:00
* 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/>.
*/
2017-08-14 03:50:43 +00:00
class Frontend {
constructor(popup, ignoreNodes) {
this.popup = popup;
2019-12-05 20:12:43 +00:00
this.textScanner = new TextScanner(
window,
ignoreNodes,
[this.popup.container],
[(x, y) => this.popup.containsPoint(x, y)]
);
this.textScanner.subscribe('textSearch', ({textSource, cause}) => this.searchSource(textSource, cause));
this.textScanner.subscribe('searchClear', () => this.searchClear(true));
2016-09-29 03:14:21 +00:00
this.options = null;
2019-02-11 01:44:16 +00:00
this.optionsContext = {
depth: popup.depth,
url: popup.url
};
this.enabled = false;
this.eventListeners = [];
2019-10-12 02:35:59 +00:00
this.isPreparedPromiseResolve = null;
this.isPreparedPromise = new Promise((resolve) => { this.isPreparedPromiseResolve = resolve; });
2019-10-12 16:59:51 +00:00
this.lastShowPromise = Promise.resolve();
2017-08-13 23:11:51 +00:00
}
static create() {
const data = window.frontendInitializationData || {};
const {id, depth=0, parentFrameId, ignoreNodes, url, proxy=false} = data;
const popup = proxy ? new PopupProxy(depth + 1, id, parentFrameId, url) : PopupProxyHost.instance.createPopup(null, depth);
const frontend = new Frontend(popup, ignoreNodes);
frontend.prepare();
return frontend;
}
2017-08-13 23:11:51 +00:00
async prepare() {
try {
await this.updateOptions();
2019-02-11 01:44:16 +00:00
chrome.runtime.onMessage.addListener(this.onRuntimeMessage.bind(this));
2019-10-12 02:35:59 +00:00
this.isPreparedPromiseResolve();
2017-08-13 23:42:22 +00:00
} catch (e) {
this.onError(e);
}
}
2019-10-12 02:35:59 +00:00
isPrepared() {
return this.isPreparedPromise;
}
2019-10-26 00:11:44 +00:00
async onResize() {
2019-12-05 01:58:35 +00:00
const textSource = this.textScanner.getCurrentTextSource();
if (textSource !== null && await this.popup.isVisibleAsync()) {
2019-10-26 00:11:44 +00:00
this.lastShowPromise = this.popup.showContent(
textSource.getRect(),
textSource.getWritingMode()
);
}
2019-10-26 00:01:42 +00:00
}
2019-10-26 00:11:44 +00:00
onWindowMessage(e) {
const action = e.data;
const handlers = Frontend.windowMessageHandlers;
if (hasOwn(handlers, action)) {
2019-10-26 00:11:44 +00:00
const handler = handlers[action];
handler(this);
2019-02-11 01:44:16 +00:00
}
}
onRuntimeMessage({action, params}, sender, callback) {
const handlers = Frontend.runtimeMessageHandlers;
if (hasOwn(handlers, action)) {
const handler = handlers[action];
const result = handler(this, params);
callback(result);
2016-04-06 05:18:55 +00:00
}
2016-03-28 20:00:48 +00:00
}
2017-08-13 23:42:22 +00:00
onError(error) {
logError(error, false);
2017-08-13 23:11:51 +00:00
}
setEnabled(enabled) {
2019-12-05 01:58:35 +00:00
this.textScanner.setEnabled(enabled);
if (enabled) {
if (!this.enabled) {
this.hookEvents();
this.enabled = true;
}
} else {
if (this.enabled) {
this.clearEventListeners();
this.enabled = false;
}
this.searchClear(false);
}
}
hookEvents() {
this.addEventListener(window, 'message', this.onWindowMessage.bind(this));
this.addEventListener(window, 'resize', this.onResize.bind(this));
}
addEventListener(node, type, listener, options) {
node.addEventListener(type, listener, options);
this.eventListeners.push([node, type, listener, options]);
}
clearEventListeners() {
for (const [node, type, listener, options] of this.eventListeners) {
node.removeEventListener(type, listener, options);
}
this.eventListeners = [];
}
async updateOptions() {
this.options = await apiOptionsGet(this.getOptionsContext());
2019-12-05 01:58:35 +00:00
this.textScanner.setOptions(this.options);
2019-10-12 18:34:45 +00:00
await this.popup.setOptions(this.options);
2019-12-05 01:58:35 +00:00
this.setEnabled(this.options.general.enable);
2019-10-12 02:35:59 +00:00
}
async searchSource(textSource, cause) {
let results = null;
2017-08-16 03:04:15 +00:00
2017-08-13 23:42:22 +00:00
try {
2019-11-03 16:06:31 +00:00
if (textSource !== null) {
results = (
await this.findTerms(textSource) ||
await this.findKanji(textSource)
);
if (results !== null) {
const focus = (cause === 'mouse');
this.showContent(textSource, focus, results.definitions, results.type);
}
}
2017-08-13 23:11:51 +00:00
} catch (e) {
2017-08-16 03:04:15 +00:00
if (window.yomichan_orphaned) {
2019-11-03 16:06:31 +00:00
if (textSource !== null && this.options.scanning.modifier !== 'none') {
this.lastShowPromise = this.popup.showContent(
textSource.getRect(),
textSource.getWritingMode(),
'orphaned'
);
2017-08-16 03:04:15 +00:00
}
} else {
this.onError(e);
}
2017-08-13 23:42:22 +00:00
} finally {
if (results === null && this.options.scanning.autoHideResults) {
this.searchClear(true);
}
2017-08-13 23:11:51 +00:00
}
2019-11-03 16:06:31 +00:00
return results;
2016-04-18 00:36:15 +00:00
}
showContent(textSource, focus, definitions, type) {
2017-08-13 23:11:51 +00:00
const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt);
const url = window.location.href;
this.lastShowPromise = this.popup.showContent(
2017-08-13 23:11:51 +00:00
textSource.getRect(),
textSource.getWritingMode(),
type,
2019-12-01 04:32:17 +00:00
{definitions, context: {sentence, url, focus, disableHistory: true}}
2017-08-13 23:11:51 +00:00
);
}
async findTerms(textSource) {
2019-12-05 01:58:35 +00:00
this.textScanner.setTextSourceScanLength(textSource, this.options.scanning.length);
const searchText = textSource.text();
if (searchText.length === 0) { return null; }
2019-11-05 01:43:40 +00:00
const {definitions, length} = await apiTermsFind(searchText, {}, this.getOptionsContext());
if (definitions.length === 0) { return null; }
textSource.setEndOffset(length);
2017-08-13 23:11:51 +00:00
return {definitions, type: 'terms'};
2016-03-27 20:21:52 +00:00
}
async findKanji(textSource) {
2019-12-05 01:58:35 +00:00
this.textScanner.setTextSourceScanLength(textSource, 1);
const searchText = textSource.text();
if (searchText.length === 0) { return null; }
const definitions = await apiKanjiFind(searchText, this.getOptionsContext());
if (definitions.length === 0) { return null; }
2017-08-13 23:11:51 +00:00
return {definitions, type: 'kanji'};
}
searchClear(changeFocus) {
this.popup.hide(changeFocus);
2017-12-16 18:56:53 +00:00
this.popup.clearAutoPlayTimer();
2019-12-05 01:58:35 +00:00
this.textScanner.searchClear();
}
getOptionsContext() {
this.optionsContext.url = this.popup.url;
return this.optionsContext;
}
2017-08-14 03:50:43 +00:00
}
2016-03-28 00:04:49 +00:00
Frontend.windowMessageHandlers = {
popupClose: (self) => {
self.searchClear(true);
},
selectionCopy: () => {
document.execCommand('copy');
}
};
Frontend.runtimeMessageHandlers = {
optionsUpdate: (self) => {
self.updateOptions();
},
popupSetVisibleOverride: (self, {visible}) => {
self.popup.setVisibleOverride(visible);
},
getUrl: () => {
return {url: window.location.href};
}
};