2016-03-27 20:21:52 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +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
|
2020-08-09 17:27:21 +00:00
|
|
|
* DocumentUtil
|
2020-03-11 02:30:36 +00:00
|
|
|
* TextScanner
|
2020-08-02 22:59:35 +00:00
|
|
|
* TextSourceElement
|
2020-05-24 17:30:40 +00:00
|
|
|
* api
|
2020-03-11 02:30:36 +00:00
|
|
|
*/
|
2016-03-27 20:21:52 +00:00
|
|
|
|
2020-05-02 16:47:15 +00:00
|
|
|
class Frontend {
|
2020-08-16 20:16:18 +00:00
|
|
|
constructor({
|
|
|
|
frameId,
|
|
|
|
popupFactory,
|
|
|
|
depth,
|
|
|
|
parentPopupId,
|
|
|
|
parentFrameId,
|
|
|
|
useProxyPopup,
|
|
|
|
isSearchPage,
|
|
|
|
allowRootFramePopupProxy
|
|
|
|
}) {
|
2020-08-22 19:49:24 +00:00
|
|
|
this._id = generateId(16);
|
2020-06-21 20:14:05 +00:00
|
|
|
this._popup = null;
|
2020-04-10 00:55:25 +00:00
|
|
|
this._disabledOverride = false;
|
2020-05-02 16:47:15 +00:00
|
|
|
this._options = null;
|
2019-12-23 22:12:09 +00:00
|
|
|
this._pageZoomFactor = 1.0;
|
|
|
|
this._contentScale = 1.0;
|
2019-12-12 02:31:21 +00:00
|
|
|
this._lastShowPromise = Promise.resolve();
|
2020-05-06 23:35:36 +00:00
|
|
|
this._activeModifiers = new Set();
|
|
|
|
this._optionsUpdatePending = false;
|
2020-08-09 17:27:21 +00:00
|
|
|
this._documentUtil = new DocumentUtil();
|
2020-05-08 23:05:50 +00:00
|
|
|
this._textScanner = new TextScanner({
|
|
|
|
node: window,
|
2020-06-21 20:14:05 +00:00
|
|
|
ignoreElements: this._ignoreElements.bind(this),
|
|
|
|
ignorePoint: this._ignorePoint.bind(this),
|
2020-09-06 01:43:19 +00:00
|
|
|
getOptionsContext: this._getUpToDateOptionsContext.bind(this),
|
|
|
|
documentUtil: this._documentUtil,
|
|
|
|
searchTerms: true,
|
|
|
|
searchKanji: true
|
2020-05-08 23:05:50 +00:00
|
|
|
});
|
2020-08-16 20:16:18 +00:00
|
|
|
this._parentPopupId = parentPopupId;
|
2020-06-21 20:14:05 +00:00
|
|
|
this._parentFrameId = parentFrameId;
|
|
|
|
this._useProxyPopup = useProxyPopup;
|
|
|
|
this._isSearchPage = isSearchPage;
|
|
|
|
this._depth = depth;
|
|
|
|
this._frameId = frameId;
|
|
|
|
this._popupFactory = popupFactory;
|
|
|
|
this._allowRootFramePopupProxy = allowRootFramePopupProxy;
|
|
|
|
this._popupCache = new Map();
|
2020-09-08 23:40:15 +00:00
|
|
|
this._popupEventListeners = new EventListenerCollection();
|
2020-06-21 20:14:05 +00:00
|
|
|
this._updatePopupToken = null;
|
2020-09-08 23:40:15 +00:00
|
|
|
this._clearSelectionTimer = null;
|
|
|
|
this._isPointerOverPopup = false;
|
2020-06-21 20:14:05 +00:00
|
|
|
|
2020-02-27 00:52:12 +00:00
|
|
|
this._runtimeMessageHandlers = new Map([
|
2020-09-09 16:54:59 +00:00
|
|
|
['requestFrontendReadyBroadcast', {async: false, handler: this._onMessageRequestFrontendReadyBroadcast.bind(this)}],
|
|
|
|
['setAllVisibleOverride', {async: true, handler: this._onApiSetAllVisibleOverride.bind(this)}],
|
|
|
|
['clearAllVisibleOverride', {async: true, handler: this._onApiClearAllVisibleOverride.bind(this)}]
|
2020-02-27 00:52:12 +00:00
|
|
|
]);
|
2017-08-13 23:11:51 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:47:15 +00:00
|
|
|
get canClearSelection() {
|
|
|
|
return this._textScanner.canClearSelection;
|
|
|
|
}
|
|
|
|
|
|
|
|
set canClearSelection(value) {
|
|
|
|
this._textScanner.canClearSelection = value;
|
|
|
|
}
|
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
get popup() {
|
|
|
|
return this._popup;
|
|
|
|
}
|
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
async prepare() {
|
2020-06-21 20:14:05 +00:00
|
|
|
await this.updateOptions();
|
2017-08-13 23:11:51 +00:00
|
|
|
try {
|
2020-06-21 20:14:05 +00:00
|
|
|
const {zoomFactor} = await api.getZoom();
|
|
|
|
this._pageZoomFactor = zoomFactor;
|
|
|
|
} catch (e) {
|
|
|
|
// Ignore exceptions which may occur due to being on an unsupported page (e.g. about:blank)
|
|
|
|
}
|
2019-02-11 01:44:16 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
this._textScanner.prepare();
|
2019-12-23 19:09:41 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
window.addEventListener('resize', this._onResize.bind(this), false);
|
2020-08-10 01:07:11 +00:00
|
|
|
DocumentUtil.addFullscreenChangeEventListener(this._updatePopup.bind(this));
|
2019-12-30 17:42:25 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
const visualViewport = window.visualViewport;
|
|
|
|
if (visualViewport !== null && typeof visualViewport === 'object') {
|
2020-06-22 23:27:40 +00:00
|
|
|
visualViewport.addEventListener('scroll', this._onVisualViewportScroll.bind(this));
|
|
|
|
visualViewport.addEventListener('resize', this._onVisualViewportResize.bind(this));
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
2019-12-30 17:42:25 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
yomichan.on('optionsUpdated', this.updateOptions.bind(this));
|
|
|
|
yomichan.on('zoomChanged', this._onZoomChanged.bind(this));
|
2020-07-08 23:50:13 +00:00
|
|
|
yomichan.on('closePopups', this._onApiClosePopup.bind(this));
|
2020-06-21 20:14:05 +00:00
|
|
|
chrome.runtime.onMessage.addListener(this._onRuntimeMessage.bind(this));
|
2020-04-27 22:10:37 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
this._textScanner.on('clearSelection', this._onClearSelection.bind(this));
|
|
|
|
this._textScanner.on('activeModifiersChanged', this._onActiveModifiersChanged.bind(this));
|
2020-09-06 01:43:19 +00:00
|
|
|
this._textScanner.on('searched', this._onSearched.bind(this));
|
2016-10-09 00:39:21 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
api.crossFrame.registerHandlers([
|
2020-08-23 19:18:41 +00:00
|
|
|
['getUrl', {async: false, handler: this._onApiGetUrl.bind(this)}],
|
|
|
|
['closePopup', {async: false, handler: this._onApiClosePopup.bind(this)}],
|
|
|
|
['copySelection', {async: false, handler: this._onApiCopySelection.bind(this)}],
|
|
|
|
['getPopupInfo', {async: false, handler: this._onApiGetPopupInfo.bind(this)}],
|
2020-09-09 16:54:59 +00:00
|
|
|
['getDocumentInformation', {async: false, handler: this._onApiGetDocumentInformation.bind(this)}]
|
2020-06-21 20:14:05 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
this._updateContentScale();
|
2020-08-15 21:36:42 +00:00
|
|
|
this._signalFrontendReady();
|
2020-05-07 23:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setDisabledOverride(disabled) {
|
|
|
|
this._disabledOverride = disabled;
|
|
|
|
this._updateTextScannerEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
async setTextSource(textSource) {
|
2020-09-08 22:52:23 +00:00
|
|
|
await this._textScanner.search(textSource);
|
2020-05-07 23:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async getOptionsContext() {
|
2020-06-21 20:14:05 +00:00
|
|
|
let url = window.location.href;
|
|
|
|
if (this._useProxyPopup) {
|
|
|
|
try {
|
|
|
|
url = await api.crossFrame.invoke(this._parentFrameId, 'getUrl', {});
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const depth = this._depth;
|
2020-05-07 23:38:09 +00:00
|
|
|
const modifierKeys = [...this._activeModifiers];
|
|
|
|
return {depth, url, modifierKeys};
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateOptions() {
|
2020-07-18 18:15:36 +00:00
|
|
|
try {
|
|
|
|
await this._updateOptionsInternal();
|
|
|
|
} catch (e) {
|
|
|
|
if (!yomichan.isExtensionUnloaded) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
this._showExtensionUnloaded(null);
|
2020-05-07 23:38:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
showContentCompleted() {
|
|
|
|
return this._lastShowPromise;
|
|
|
|
}
|
|
|
|
|
2020-05-09 16:27:56 +00:00
|
|
|
// Message handlers
|
|
|
|
|
2020-08-15 21:36:42 +00:00
|
|
|
_onMessageRequestFrontendReadyBroadcast({frameId}) {
|
|
|
|
this._signalFrontendReady(frameId);
|
2020-05-09 16:27:56 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
// API message handlers
|
|
|
|
|
|
|
|
_onApiGetUrl() {
|
|
|
|
return window.location.href;
|
|
|
|
}
|
|
|
|
|
2020-07-08 23:50:13 +00:00
|
|
|
_onApiClosePopup() {
|
2020-09-08 23:40:15 +00:00
|
|
|
this._clearSelection(false);
|
2020-07-08 23:50:13 +00:00
|
|
|
}
|
2020-05-07 23:38:09 +00:00
|
|
|
|
2020-07-08 23:50:13 +00:00
|
|
|
_onApiCopySelection() {
|
|
|
|
document.execCommand('copy');
|
2020-01-11 19:16:58 +00:00
|
|
|
}
|
|
|
|
|
2020-08-15 21:36:42 +00:00
|
|
|
_onApiGetPopupInfo() {
|
|
|
|
return {
|
|
|
|
popupId: (this._popup !== null ? this._popup.id : null)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
_onApiGetDocumentInformation() {
|
|
|
|
return {
|
|
|
|
title: document.title
|
|
|
|
};
|
|
|
|
}
|
2020-08-23 19:18:41 +00:00
|
|
|
|
|
|
|
async _onApiSetAllVisibleOverride({value, priority, awaitFrame}) {
|
|
|
|
const result = await this._popupFactory.setAllVisibleOverride(value, priority);
|
|
|
|
if (awaitFrame) {
|
|
|
|
await promiseAnimationFrame(100);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
async _onApiClearAllVisibleOverride({token}) {
|
|
|
|
return await this._popupFactory.clearAllVisibleOverride(token);
|
|
|
|
}
|
2020-08-15 21:36:42 +00:00
|
|
|
|
2020-07-08 23:50:13 +00:00
|
|
|
// Private
|
2019-12-09 03:20:07 +00:00
|
|
|
|
2020-07-08 23:50:13 +00:00
|
|
|
_onResize() {
|
|
|
|
this._updatePopupPosition();
|
2019-02-11 01:44:16 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onRuntimeMessage({action, params}, sender, callback) {
|
2020-07-11 02:12:14 +00:00
|
|
|
const messageHandler = this._runtimeMessageHandlers.get(action);
|
|
|
|
if (typeof messageHandler === 'undefined') { return false; }
|
2020-07-11 19:20:00 +00:00
|
|
|
return yomichan.invokeMessageHandler(messageHandler, params, callback, sender);
|
2016-03-28 20:00:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onZoomChanged({newZoomFactor}) {
|
2019-12-23 22:12:09 +00:00
|
|
|
this._pageZoomFactor = newZoomFactor;
|
|
|
|
this._updateContentScale();
|
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onVisualViewportScroll() {
|
2020-01-11 19:16:58 +00:00
|
|
|
this._updatePopupPosition();
|
2019-12-30 17:42:25 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onVisualViewportResize() {
|
2019-12-30 17:42:25 +00:00
|
|
|
this._updateContentScale();
|
|
|
|
}
|
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
_onClearSelection({passive}) {
|
2020-09-08 23:40:15 +00:00
|
|
|
this._stopClearSelectionDelayed();
|
2020-08-22 17:03:35 +00:00
|
|
|
if (this._popup !== null) {
|
|
|
|
this._popup.hide(!passive);
|
|
|
|
this._popup.clearAutoPlayTimer();
|
2020-09-08 23:40:15 +00:00
|
|
|
this._isPointerOverPopup = false;
|
2020-08-22 17:03:35 +00:00
|
|
|
}
|
2020-05-07 23:38:09 +00:00
|
|
|
this._updatePendingOptions();
|
2019-10-12 02:35:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
async _onActiveModifiersChanged({modifiers}) {
|
|
|
|
if (areSetsEqual(modifiers, this._activeModifiers)) { return; }
|
|
|
|
this._activeModifiers = modifiers;
|
2020-08-22 17:03:35 +00:00
|
|
|
if (this._popup !== null && await this._popup.isVisible()) {
|
2020-05-07 23:38:09 +00:00
|
|
|
this._optionsUpdatePending = true;
|
|
|
|
return;
|
2020-05-03 01:39:24 +00:00
|
|
|
}
|
2020-05-07 23:38:09 +00:00
|
|
|
await this.updateOptions();
|
2020-05-02 16:47:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 20:59:03 +00:00
|
|
|
_onSearched({type, definitions, sentence, input: {cause, empty}, textSource, optionsContext, error}) {
|
2020-09-08 23:40:15 +00:00
|
|
|
const scanningOptions = this._options.scanning;
|
|
|
|
|
2020-09-06 01:43:19 +00:00
|
|
|
if (error !== null) {
|
|
|
|
if (yomichan.isExtensionUnloaded) {
|
2020-09-09 20:59:03 +00:00
|
|
|
if (textSource !== null && !empty) {
|
2020-09-06 01:43:19 +00:00
|
|
|
this._showExtensionUnloaded(textSource);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
yomichan.logError(error);
|
|
|
|
}
|
2020-09-08 23:40:15 +00:00
|
|
|
} if (type !== null) {
|
|
|
|
this._stopClearSelectionDelayed();
|
|
|
|
const focus = (cause === 'mouse');
|
|
|
|
this._showContent(textSource, focus, definitions, type, sentence, optionsContext);
|
2020-09-06 01:43:19 +00:00
|
|
|
} else {
|
2020-09-08 23:40:15 +00:00
|
|
|
if (scanningOptions.autoHideResults) {
|
|
|
|
this._clearSelectionDelayed(scanningOptions.hideDelay, false);
|
2020-09-06 01:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-08 23:40:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_onPopupFramePointerOver() {
|
|
|
|
this._isPointerOverPopup = true;
|
|
|
|
this._stopClearSelectionDelayed();
|
|
|
|
}
|
|
|
|
|
|
|
|
_onPopupFramePointerOut() {
|
|
|
|
this._isPointerOverPopup = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
_clearSelection(passive) {
|
|
|
|
this._stopClearSelectionDelayed();
|
|
|
|
this._textScanner.clearSelection(passive);
|
|
|
|
}
|
|
|
|
|
|
|
|
_clearSelectionDelayed(delay, restart, passive) {
|
|
|
|
if (!this._textScanner.hasSelection()) { return; }
|
|
|
|
if (delay > 0) {
|
|
|
|
if (this._clearSelectionTimer !== null && !restart) { return; } // Already running
|
|
|
|
this._stopClearSelectionDelayed();
|
|
|
|
this._clearSelectionTimer = setTimeout(() => {
|
|
|
|
this._clearSelectionTimer = null;
|
|
|
|
if (this._isPointerOverPopup) { return; }
|
|
|
|
this._clearSelection(passive);
|
|
|
|
}, delay);
|
|
|
|
} else {
|
|
|
|
this._clearSelection(passive);
|
|
|
|
}
|
|
|
|
}
|
2020-09-06 01:43:19 +00:00
|
|
|
|
2020-09-08 23:40:15 +00:00
|
|
|
_stopClearSelectionDelayed() {
|
|
|
|
if (this._clearSelectionTimer !== null) {
|
|
|
|
clearTimeout(this._clearSelectionTimer);
|
|
|
|
this._clearSelectionTimer = null;
|
2020-09-06 01:43:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:15:36 +00:00
|
|
|
async _updateOptionsInternal() {
|
|
|
|
const optionsContext = await this.getOptionsContext();
|
2020-08-09 17:19:42 +00:00
|
|
|
const options = await api.optionsGet(optionsContext);
|
|
|
|
const scanningOptions = options.scanning;
|
|
|
|
this._options = options;
|
2020-07-18 18:15:36 +00:00
|
|
|
|
|
|
|
await this._updatePopup();
|
|
|
|
|
2020-08-09 17:19:42 +00:00
|
|
|
this._textScanner.setOptions({
|
2020-09-09 20:59:03 +00:00
|
|
|
inputs: scanningOptions.inputs,
|
2020-08-09 17:19:42 +00:00
|
|
|
deepContentScan: scanningOptions.deepDomScan,
|
|
|
|
selectText: scanningOptions.selectText,
|
|
|
|
delay: scanningOptions.delay,
|
2020-08-22 18:40:44 +00:00
|
|
|
touchInputEnabled: scanningOptions.touchInputEnabled,
|
|
|
|
scanLength: scanningOptions.length,
|
|
|
|
sentenceExtent: options.anki.sentenceExt,
|
|
|
|
layoutAwareScan: scanningOptions.layoutAwareScan
|
2020-08-09 17:19:42 +00:00
|
|
|
});
|
2020-07-18 18:15:36 +00:00
|
|
|
this._updateTextScannerEnabled();
|
|
|
|
|
|
|
|
const ignoreNodes = ['.scan-disable', '.scan-disable *'];
|
|
|
|
if (!this._options.scanning.enableOnPopupExpressions) {
|
|
|
|
ignoreNodes.push('.source-text', '.source-text *');
|
|
|
|
}
|
|
|
|
this._textScanner.ignoreNodes = ignoreNodes.join(',');
|
|
|
|
|
|
|
|
this._updateContentScale();
|
|
|
|
|
2020-09-08 22:52:23 +00:00
|
|
|
await this._textScanner.searchLast();
|
2020-07-18 18:15:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
async _updatePopup() {
|
2020-09-06 02:03:35 +00:00
|
|
|
const {usePopupWindow, showIframePopupsInRootFrame} = this._options.general;
|
2020-06-21 20:14:05 +00:00
|
|
|
const isIframe = !this._useProxyPopup && (window !== window.parent);
|
|
|
|
|
|
|
|
let popupPromise;
|
2020-09-06 02:03:35 +00:00
|
|
|
if (usePopupWindow) {
|
|
|
|
popupPromise = this._popupCache.get('window');
|
|
|
|
if (typeof popupPromise === 'undefined') {
|
|
|
|
popupPromise = this._getPopupWindow();
|
|
|
|
this._popupCache.set('window', popupPromise);
|
|
|
|
}
|
|
|
|
} else if (
|
2020-06-21 20:14:05 +00:00
|
|
|
isIframe &&
|
|
|
|
showIframePopupsInRootFrame &&
|
2020-08-10 01:07:11 +00:00
|
|
|
DocumentUtil.getFullscreenElement() === null &&
|
2020-06-21 20:14:05 +00:00
|
|
|
this._allowRootFramePopupProxy
|
|
|
|
) {
|
|
|
|
popupPromise = this._popupCache.get('iframe');
|
|
|
|
if (typeof popupPromise === 'undefined') {
|
|
|
|
popupPromise = this._getIframeProxyPopup();
|
|
|
|
this._popupCache.set('iframe', popupPromise);
|
|
|
|
}
|
|
|
|
} else if (this._useProxyPopup) {
|
|
|
|
popupPromise = this._popupCache.get('proxy');
|
|
|
|
if (typeof popupPromise === 'undefined') {
|
|
|
|
popupPromise = this._getProxyPopup();
|
|
|
|
this._popupCache.set('proxy', popupPromise);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
popupPromise = this._popupCache.get('default');
|
|
|
|
if (typeof popupPromise === 'undefined') {
|
|
|
|
popupPromise = this._getDefaultPopup();
|
|
|
|
this._popupCache.set('default', popupPromise);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The token below is used as a unique identifier to ensure that a new _updatePopup call
|
|
|
|
// hasn't been started during the await.
|
|
|
|
const token = {};
|
|
|
|
this._updatePopupToken = token;
|
|
|
|
const popup = await popupPromise;
|
|
|
|
const optionsContext = await this.getOptionsContext();
|
|
|
|
if (this._updatePopupToken !== token) { return; }
|
2020-08-22 17:03:35 +00:00
|
|
|
if (popup !== null) {
|
|
|
|
await popup.setOptionsContext(optionsContext, this._id);
|
|
|
|
}
|
2020-06-21 20:14:05 +00:00
|
|
|
if (this._updatePopupToken !== token) { return; }
|
|
|
|
|
|
|
|
if (this._isSearchPage) {
|
|
|
|
this.setDisabledOverride(!this._options.scanning.enableOnSearchPage);
|
|
|
|
}
|
|
|
|
|
2020-09-08 23:40:15 +00:00
|
|
|
this._clearSelection(true);
|
|
|
|
this._popupEventListeners.removeAllEventListeners();
|
2020-06-21 20:14:05 +00:00
|
|
|
this._popup = popup;
|
2020-09-08 23:40:15 +00:00
|
|
|
this._popupEventListeners.on(popup, 'framePointerOver', this._onPopupFramePointerOver.bind(this));
|
|
|
|
this._popupEventListeners.on(popup, 'framePointerOut', this._onPopupFramePointerOut.bind(this));
|
|
|
|
this._isPointerOverPopup = false;
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async _getDefaultPopup() {
|
2020-08-22 17:03:35 +00:00
|
|
|
const isXmlDocument = (typeof XMLDocument !== 'undefined' && document instanceof XMLDocument);
|
|
|
|
if (isXmlDocument) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-08-22 18:33:41 +00:00
|
|
|
return await this._popupFactory.getOrCreatePopup({
|
|
|
|
frameId: this._frameId,
|
|
|
|
ownerFrameId: this._frameId,
|
|
|
|
depth: this._depth
|
|
|
|
});
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async _getProxyPopup() {
|
2020-08-22 18:33:41 +00:00
|
|
|
return await this._popupFactory.getOrCreatePopup({
|
|
|
|
frameId: this._parentFrameId,
|
|
|
|
ownerFrameId: this._frameId,
|
|
|
|
depth: this._depth,
|
|
|
|
parentPopupId: this._parentPopupId
|
|
|
|
});
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async _getIframeProxyPopup() {
|
2020-08-15 21:36:42 +00:00
|
|
|
const targetFrameId = 0; // Root frameId
|
2020-09-04 21:55:25 +00:00
|
|
|
try {
|
|
|
|
await this._waitForFrontendReady(targetFrameId);
|
|
|
|
} catch (e) {
|
|
|
|
// Root frame not available
|
|
|
|
return await this._getDefaultPopup();
|
|
|
|
}
|
2020-08-22 17:03:35 +00:00
|
|
|
|
2020-08-15 21:36:42 +00:00
|
|
|
const {popupId} = await api.crossFrame.invoke(targetFrameId, 'getPopupInfo');
|
2020-08-22 17:03:35 +00:00
|
|
|
if (popupId === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-08-22 18:33:41 +00:00
|
|
|
const popup = await this._popupFactory.getOrCreatePopup({
|
|
|
|
frameId: targetFrameId,
|
|
|
|
ownerFrameId: this._frameId,
|
|
|
|
id: popupId
|
|
|
|
});
|
2020-06-21 20:14:05 +00:00
|
|
|
popup.on('offsetNotFound', () => {
|
|
|
|
this._allowRootFramePopupProxy = false;
|
|
|
|
this._updatePopup();
|
|
|
|
});
|
|
|
|
return popup;
|
|
|
|
}
|
|
|
|
|
2020-09-06 02:03:35 +00:00
|
|
|
async _getPopupWindow() {
|
|
|
|
return await this._popupFactory.getOrCreatePopup({
|
|
|
|
ownerFrameId: this._frameId,
|
|
|
|
depth: this._depth,
|
|
|
|
popupWindow: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
_ignoreElements() {
|
2020-08-15 21:27:03 +00:00
|
|
|
if (this._popup !== null) {
|
|
|
|
const container = this._popup.container;
|
|
|
|
if (container !== null) {
|
|
|
|
return [container];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [];
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
2020-07-18 18:15:36 +00:00
|
|
|
async _ignorePoint(x, y) {
|
|
|
|
try {
|
|
|
|
return this._popup !== null && await this._popup.containsPoint(x, y);
|
|
|
|
} catch (e) {
|
|
|
|
if (!yomichan.isExtensionUnloaded) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
2020-07-18 18:15:36 +00:00
|
|
|
async _showExtensionUnloaded(textSource) {
|
|
|
|
if (textSource === null) {
|
|
|
|
textSource = this._textScanner.getCurrentTextSource();
|
|
|
|
if (textSource === null) { return; }
|
|
|
|
}
|
|
|
|
this._showPopupContent(textSource, await this.getOptionsContext());
|
|
|
|
}
|
|
|
|
|
2020-09-06 01:43:19 +00:00
|
|
|
_showContent(textSource, focus, definitions, type, sentence, optionsContext) {
|
2020-05-07 23:38:09 +00:00
|
|
|
const {url} = optionsContext;
|
2020-08-02 22:59:35 +00:00
|
|
|
const query = textSource.text();
|
|
|
|
const details = {
|
|
|
|
focus,
|
|
|
|
history: false,
|
|
|
|
params: {
|
|
|
|
type,
|
|
|
|
query,
|
|
|
|
wildcards: 'off'
|
|
|
|
},
|
|
|
|
state: {
|
|
|
|
focusEntry: 0,
|
|
|
|
sentence,
|
|
|
|
url
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
definitions
|
2020-07-25 13:58:06 +00:00
|
|
|
}
|
2020-08-02 22:59:35 +00:00
|
|
|
};
|
|
|
|
if (textSource instanceof TextSourceElement && textSource.fullContent !== query) {
|
|
|
|
details.params.full = textSource.fullContent;
|
|
|
|
details.params['full-visible'] = 'true';
|
|
|
|
}
|
|
|
|
this._showPopupContent(textSource, optionsContext, details);
|
2019-09-10 23:55:14 +00:00
|
|
|
}
|
2019-12-23 18:58:33 +00:00
|
|
|
|
2020-07-25 13:58:06 +00:00
|
|
|
_showPopupContent(textSource, optionsContext, details=null) {
|
2020-08-22 17:03:35 +00:00
|
|
|
this._lastShowPromise = (
|
|
|
|
this._popup !== null ?
|
|
|
|
this._popup.showContent(
|
|
|
|
{
|
|
|
|
source: this._id,
|
|
|
|
optionsContext,
|
|
|
|
elementRect: textSource.getRect(),
|
|
|
|
writingMode: textSource.getWritingMode()
|
|
|
|
},
|
|
|
|
details
|
|
|
|
) :
|
|
|
|
Promise.resolve()
|
2019-12-23 18:58:33 +00:00
|
|
|
);
|
2020-07-18 18:15:36 +00:00
|
|
|
this._lastShowPromise.catch((error) => {
|
|
|
|
if (yomichan.isExtensionUnloaded) { return; }
|
|
|
|
yomichan.logError(error);
|
|
|
|
});
|
2019-12-23 18:58:33 +00:00
|
|
|
return this._lastShowPromise;
|
|
|
|
}
|
2019-12-23 22:12:09 +00:00
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
async _updatePendingOptions() {
|
|
|
|
if (this._optionsUpdatePending) {
|
|
|
|
this._optionsUpdatePending = false;
|
|
|
|
await this.updateOptions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 16:47:15 +00:00
|
|
|
_updateTextScannerEnabled() {
|
|
|
|
const enabled = (
|
|
|
|
this._options.general.enable &&
|
2020-06-21 20:14:05 +00:00
|
|
|
this._depth <= this._options.scanning.popupNestingMaxDepth &&
|
2020-05-02 16:47:15 +00:00
|
|
|
!this._disabledOverride
|
|
|
|
);
|
|
|
|
this._textScanner.setEnabled(enabled);
|
|
|
|
}
|
|
|
|
|
2019-12-23 22:12:09 +00:00
|
|
|
_updateContentScale() {
|
2020-05-02 16:47:15 +00:00
|
|
|
const {popupScalingFactor, popupScaleRelativeToPageZoom, popupScaleRelativeToVisualViewport} = this._options.general;
|
2019-12-23 22:39:00 +00:00
|
|
|
let contentScale = popupScalingFactor;
|
2019-12-30 17:42:25 +00:00
|
|
|
if (popupScaleRelativeToPageZoom) {
|
|
|
|
contentScale /= this._pageZoomFactor;
|
|
|
|
}
|
|
|
|
if (popupScaleRelativeToVisualViewport) {
|
2020-04-27 22:10:37 +00:00
|
|
|
const visualViewport = window.visualViewport;
|
|
|
|
const visualViewportScale = (visualViewport !== null && typeof visualViewport === 'object' ? visualViewport.scale : 1.0);
|
|
|
|
contentScale /= visualViewportScale;
|
2019-12-30 17:42:25 +00:00
|
|
|
}
|
2019-12-23 22:12:09 +00:00
|
|
|
if (contentScale === this._contentScale) { return; }
|
|
|
|
|
|
|
|
this._contentScale = contentScale;
|
2020-06-21 20:14:05 +00:00
|
|
|
if (this._popup !== null) {
|
|
|
|
this._popup.setContentScale(this._contentScale);
|
|
|
|
}
|
2020-01-11 19:16:58 +00:00
|
|
|
this._updatePopupPosition();
|
|
|
|
}
|
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
async _updatePopupPosition() {
|
|
|
|
const textSource = this._textScanner.getCurrentTextSource();
|
2020-06-21 20:14:05 +00:00
|
|
|
if (
|
|
|
|
textSource !== null &&
|
|
|
|
this._popup !== null &&
|
|
|
|
await this._popup.isVisible()
|
|
|
|
) {
|
2020-05-07 23:38:09 +00:00
|
|
|
this._showPopupContent(textSource, await this.getOptionsContext());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-15 21:36:42 +00:00
|
|
|
_signalFrontendReady(targetFrameId=null) {
|
|
|
|
const params = {frameId: this._frameId};
|
|
|
|
if (targetFrameId === null) {
|
|
|
|
api.broadcastTab('frontendReady', params);
|
|
|
|
} else {
|
|
|
|
api.sendMessageToFrame(targetFrameId, 'frontendReady', params);
|
2020-04-04 14:32:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-15 21:36:42 +00:00
|
|
|
async _waitForFrontendReady(frameId) {
|
|
|
|
const promise = yomichan.getTemporaryListenerResult(
|
|
|
|
chrome.runtime.onMessage,
|
|
|
|
({action, params}, {resolve}) => {
|
|
|
|
if (
|
|
|
|
action === 'frontendReady' &&
|
|
|
|
params.frameId === frameId
|
|
|
|
) {
|
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
10000
|
|
|
|
);
|
|
|
|
api.broadcastTab('requestFrontendReadyBroadcast', {frameId: this._frameId});
|
|
|
|
await promise;
|
2020-04-06 22:55:36 +00:00
|
|
|
}
|
2020-09-06 01:43:19 +00:00
|
|
|
|
|
|
|
async _getUpToDateOptionsContext() {
|
|
|
|
await this._updatePendingOptions();
|
|
|
|
return await this.getOptionsContext();
|
|
|
|
}
|
2017-08-14 03:50:43 +00:00
|
|
|
}
|