yomichan/ext/fg/js/frontend.js

352 lines
12 KiB
JavaScript
Raw Normal View History

2016-03-27 20:21:52 +00:00
/*
* Copyright (C) 2016-2020 Yomichan Authors
2016-03-27 20:21:52 +00:00
*
* 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
2020-01-01 17:00:31 +00:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-03-27 20:21:52 +00:00
*/
2020-03-11 02:30:36 +00:00
/* global
* TextScanner
2020-04-11 00:00:18 +00:00
* apiBroadcastTab
2020-03-11 02:30:36 +00:00
* apiGetZoom
* apiKanjiFind
* apiOptionsGet
* apiTermsFind
* docSentenceExtract
*/
2016-03-27 20:21:52 +00:00
class Frontend {
constructor(popup, getUrl=null) {
this._id = yomichan.generateId(16);
2019-12-06 19:39:29 +00:00
this.popup = popup;
this._getUrl = getUrl;
this._disabledOverride = false;
this._options = null;
2019-02-11 01:44:16 +00:00
this._pageZoomFactor = 1.0;
this._contentScale = 1.0;
2020-04-12 02:27:31 +00:00
this._orphaned = false;
this._lastShowPromise = Promise.resolve();
2020-02-27 00:52:12 +00:00
this._enabledEventListeners = new EventListenerCollection();
this._textScanner = new TextScanner(
window,
() => this.popup.isProxy() ? [] : [this.popup.getContainer()],
[(x, y) => this.popup.containsPoint(x, y)]
);
this._textScanner.onSearchSource = this.onSearchSource.bind(this);
this._activeModifiers = new Set();
this._optionsUpdatePending = false;
2020-02-27 00:52:12 +00:00
this._windowMessageHandlers = new Map([
['popupClose', () => this._textScanner.clearSelection(false)],
2020-02-27 00:52:12 +00:00
['selectionCopy', () => document.execCommand('copy')]
]);
this._runtimeMessageHandlers = new Map([
2020-03-18 22:00:42 +00:00
['popupSetVisibleOverride', ({visible}) => { this.popup.setVisibleOverride(visible); }],
['rootPopupRequestInformationBroadcast', () => { this._broadcastRootPopupInformation(); }],
['requestDocumentInformationBroadcast', ({uniqueId}) => { this._broadcastDocumentInformation(uniqueId); }]
2020-02-27 00:52:12 +00:00
]);
2017-08-13 23:11:51 +00:00
}
get canClearSelection() {
return this._textScanner.canClearSelection;
}
set canClearSelection(value) {
this._textScanner.canClearSelection = value;
}
2017-08-13 23:11:51 +00:00
async prepare() {
try {
await this.updateOptions();
const {zoomFactor} = await apiGetZoom();
this._pageZoomFactor = zoomFactor;
2019-02-11 01:44:16 +00:00
2019-12-23 19:09:41 +00:00
window.addEventListener('resize', this.onResize.bind(this), false);
const visualViewport = window.visualViewport;
if (visualViewport !== null && typeof visualViewport === 'object') {
window.visualViewport.addEventListener('scroll', this.onVisualViewportScroll.bind(this));
window.visualViewport.addEventListener('resize', this.onVisualViewportResize.bind(this));
}
2020-02-27 02:01:40 +00:00
yomichan.on('orphaned', this.onOrphaned.bind(this));
yomichan.on('optionsUpdated', this.updateOptions.bind(this));
yomichan.on('zoomChanged', this.onZoomChanged.bind(this));
chrome.runtime.onMessage.addListener(this.onRuntimeMessage.bind(this));
this._textScanner.on('clearSelection', this.onClearSelection.bind(this));
this._textScanner.on('activeModifiersChanged', this.onActiveModifiersChanged.bind(this));
this._updateContentScale();
this._broadcastRootPopupInformation();
2017-08-13 23:42:22 +00:00
} catch (e) {
yomichan.logError(e);
}
}
2020-01-11 19:16:58 +00:00
onResize() {
this._updatePopupPosition();
}
2019-10-26 00:11:44 +00:00
onWindowMessage(e) {
const action = e.data;
2020-02-27 00:52:12 +00:00
const handler = this._windowMessageHandlers.get(action);
2019-12-09 03:20:07 +00:00
if (typeof handler !== 'function') { return false; }
2020-02-27 00:52:12 +00:00
handler();
2019-02-11 01:44:16 +00:00
}
onRuntimeMessage({action, params}, sender, callback) {
2020-03-13 21:23:08 +00:00
const {targetPopupId} = params || {};
if (typeof targetPopupId !== 'undefined' && targetPopupId !== this.popup.id) { return; }
2020-03-13 21:23:08 +00:00
2020-02-27 00:52:12 +00:00
const handler = this._runtimeMessageHandlers.get(action);
2019-12-09 03:20:07 +00:00
if (typeof handler !== 'function') { return false; }
2020-02-27 00:52:12 +00:00
const result = handler(params, sender);
2019-12-09 03:20:07 +00:00
callback(result);
return false;
2016-03-28 20:00:48 +00:00
}
2019-12-20 18:44:33 +00:00
onOrphaned() {
this._orphaned = true;
}
onZoomChanged({newZoomFactor}) {
this._pageZoomFactor = newZoomFactor;
this._updateContentScale();
}
onVisualViewportScroll() {
2020-01-11 19:16:58 +00:00
this._updatePopupPosition();
}
onVisualViewportResize() {
this._updateContentScale();
}
2020-04-11 12:32:04 +00:00
setDisabledOverride(disabled) {
this._disabledOverride = disabled;
this._updateTextScannerEnabled();
2020-04-11 12:32:04 +00:00
}
async setPopup(popup) {
this._textScanner.clearSelection(true);
2020-04-11 12:32:04 +00:00
this.popup = popup;
await popup.setOptionsContext(await this.getOptionsContext(), this._id);
2020-04-11 12:32:04 +00:00
}
async updateOptions() {
const optionsContext = await this.getOptionsContext();
this._options = await apiOptionsGet(optionsContext);
this._textScanner.setOptions(this._options);
this._updateTextScannerEnabled();
2020-03-13 21:23:08 +00:00
const ignoreNodes = ['.scan-disable', '.scan-disable *'];
if (!this._options.scanning.enableOnPopupExpressions) {
2020-03-13 21:23:08 +00:00
ignoreNodes.push('.source-text', '.source-text *');
}
this._textScanner.ignoreNodes = ignoreNodes.join(',');
2020-03-13 21:23:08 +00:00
await this.popup.setOptionsContext(optionsContext, this._id);
2020-03-13 21:23:08 +00:00
this._updateContentScale();
2020-03-13 21:23:08 +00:00
const textSourceCurrent = this._textScanner.getCurrentTextSource();
const causeCurrent = this._textScanner.causeCurrent;
if (textSourceCurrent !== null && causeCurrent !== null) {
await this.onSearchSource(textSourceCurrent, causeCurrent);
2020-03-13 21:23:08 +00:00
}
2019-10-12 02:35:59 +00:00
}
async updatePendingOptions() {
if (this._optionsUpdatePending) {
this._optionsUpdatePending = false;
await this.updateOptions();
}
}
async setTextSource(textSource) {
await this.onSearchSource(textSource, 'script');
this._textScanner.setCurrentTextSource(textSource);
}
2019-12-06 19:39:29 +00:00
async onSearchSource(textSource, cause) {
await this.updatePendingOptions();
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) {
const optionsContext = await this.getOptionsContext();
2019-11-03 16:06:31 +00:00
results = (
await this.findTerms(textSource, optionsContext) ||
await this.findKanji(textSource, optionsContext)
2019-11-03 16:06:31 +00:00
);
if (results !== null) {
const focus = (cause === 'mouse');
this.showContent(textSource, focus, results.definitions, results.type, optionsContext);
2019-11-03 16:06:31 +00:00
}
}
2017-08-13 23:11:51 +00:00
} catch (e) {
2019-12-20 18:44:33 +00:00
if (this._orphaned) {
if (textSource !== null && this._options.scanning.modifier !== 'none') {
this._showPopupContent(textSource, await this.getOptionsContext(), 'orphaned');
2017-08-16 03:04:15 +00:00
}
} else {
yomichan.logError(e);
2017-08-16 03:04:15 +00:00
}
2017-08-13 23:42:22 +00:00
} finally {
if (results === null && this._options.scanning.autoHideResults) {
this._textScanner.clearSelection(false);
}
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, optionsContext) {
const {url} = optionsContext;
const sentence = docSentenceExtract(textSource, this._options.anki.sentenceExt);
this._showPopupContent(
textSource,
optionsContext,
type,
2019-12-01 04:32:17 +00:00
{definitions, context: {sentence, url, focus, disableHistory: true}}
2017-08-13 23:11:51 +00:00
);
}
showContentCompleted() {
return this._lastShowPromise;
}
async findTerms(textSource, optionsContext) {
const searchText = this._textScanner.getTextSourceContent(textSource, this._options.scanning.length);
if (searchText.length === 0) { return null; }
const {definitions, length} = await apiTermsFind(searchText, {}, optionsContext);
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, optionsContext) {
const searchText = this._textScanner.getTextSourceContent(textSource, 1);
if (searchText.length === 0) { return null; }
const definitions = await apiKanjiFind(searchText, optionsContext);
if (definitions.length === 0) { return null; }
2017-08-13 23:11:51 +00:00
textSource.setEndOffset(1);
return {definitions, type: 'kanji'};
}
onClearSelection({passive}) {
this.popup.hide(!passive);
2017-12-16 18:56:53 +00:00
this.popup.clearAutoPlayTimer();
this.updatePendingOptions();
}
async onActiveModifiersChanged({modifiers}) {
if (areSetsEqual(modifiers, this._activeModifiers)) { return; }
this._activeModifiers = modifiers;
if (await this.popup.isVisible()) {
this._optionsUpdatePending = true;
return;
}
await this.updateOptions();
}
async getOptionsContext() {
const url = this._getUrl !== null ? await this._getUrl() : window.location.href;
const depth = this.popup.depth;
const modifierKeys = [...this._activeModifiers];
return {depth, url, modifierKeys};
}
_showPopupContent(textSource, optionsContext, type=null, details=null) {
const context = {optionsContext, source: this._id};
this._lastShowPromise = this.popup.showContent(
textSource.getRect(),
textSource.getWritingMode(),
type,
details,
context
);
return this._lastShowPromise;
}
_updateTextScannerEnabled() {
const enabled = (
this._options.general.enable &&
this.popup.depth <= this._options.scanning.popupNestingMaxDepth &&
!this._disabledOverride
);
this._enabledEventListeners.removeAllEventListeners();
this._textScanner.setEnabled(enabled);
if (enabled) {
this._enabledEventListeners.addEventListener(window, 'message', this.onWindowMessage.bind(this));
}
}
_updateContentScale() {
const {popupScalingFactor, popupScaleRelativeToPageZoom, popupScaleRelativeToVisualViewport} = this._options.general;
let contentScale = popupScalingFactor;
if (popupScaleRelativeToPageZoom) {
contentScale /= this._pageZoomFactor;
}
if (popupScaleRelativeToVisualViewport) {
const visualViewport = window.visualViewport;
const visualViewportScale = (visualViewport !== null && typeof visualViewport === 'object' ? visualViewport.scale : 1.0);
contentScale /= visualViewportScale;
}
if (contentScale === this._contentScale) { return; }
this._contentScale = contentScale;
this.popup.setContentScale(this._contentScale);
2020-01-11 19:16:58 +00:00
this._updatePopupPosition();
}
_broadcastRootPopupInformation() {
2020-04-10 12:49:56 +00:00
if (!this.popup.isProxy() && this.popup.depth === 0 && this.popup.frameId === 0) {
2020-04-11 00:00:18 +00:00
apiBroadcastTab('rootPopupInformation', {popupId: this.popup.id, frameId: this.popup.frameId});
}
}
_broadcastDocumentInformation(uniqueId) {
2020-04-11 00:00:18 +00:00
apiBroadcastTab('documentInformationBroadcast', {
uniqueId,
frameId: this.popup.frameId,
title: document.title
});
}
2020-01-11 19:16:58 +00:00
async _updatePopupPosition() {
const textSource = this._textScanner.getCurrentTextSource();
2020-01-11 19:16:58 +00:00
if (textSource !== null && await this.popup.isVisible()) {
this._showPopupContent(textSource, await this.getOptionsContext());
2020-01-11 19:16:58 +00:00
}
}
2017-08-14 03:50:43 +00:00
}