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-06-21 20:14:05 +00:00
|
|
|
* DOM
|
|
|
|
* FrameOffsetForwarder
|
|
|
|
* PopupProxy
|
2020-03-11 02:30:36 +00:00
|
|
|
* TextScanner
|
2020-05-24 17:30:40 +00:00
|
|
|
* api
|
2020-03-11 02:30:36 +00:00
|
|
|
* docSentenceExtract
|
|
|
|
*/
|
2016-03-27 20:21:52 +00:00
|
|
|
|
2020-05-02 16:47:15 +00:00
|
|
|
class Frontend {
|
2020-06-21 20:14:05 +00:00
|
|
|
constructor(frameId, popupFactory, frontendInitializationData) {
|
2020-04-26 19:33:50 +00:00
|
|
|
this._id = yomichan.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;
|
2020-04-12 02:27:31 +00:00
|
|
|
this._orphaned = false;
|
2019-12-12 02:31:21 +00:00
|
|
|
this._lastShowPromise = Promise.resolve();
|
2020-05-02 16:47:15 +00:00
|
|
|
this._enabledEventListeners = new EventListenerCollection();
|
2020-05-06 23:35:36 +00:00
|
|
|
this._activeModifiers = new Set();
|
|
|
|
this._optionsUpdatePending = false;
|
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-05-08 23:05:50 +00:00
|
|
|
search: this._search.bind(this)
|
|
|
|
});
|
2020-05-03 01:39:24 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
const {
|
|
|
|
depth=0,
|
|
|
|
id: proxyPopupId,
|
|
|
|
parentFrameId,
|
|
|
|
proxy: useProxyPopup=false,
|
|
|
|
isSearchPage=false,
|
|
|
|
allowRootFramePopupProxy=true
|
|
|
|
} = frontendInitializationData;
|
|
|
|
this._proxyPopupId = proxyPopupId;
|
|
|
|
this._parentFrameId = parentFrameId;
|
|
|
|
this._useProxyPopup = useProxyPopup;
|
|
|
|
this._isSearchPage = isSearchPage;
|
|
|
|
this._depth = depth;
|
|
|
|
this._frameId = frameId;
|
|
|
|
this._frameOffsetForwarder = new FrameOffsetForwarder();
|
|
|
|
this._popupFactory = popupFactory;
|
|
|
|
this._allowRootFramePopupProxy = allowRootFramePopupProxy;
|
|
|
|
this._popupCache = new Map();
|
|
|
|
this._updatePopupToken = null;
|
|
|
|
|
2020-02-27 00:52:12 +00:00
|
|
|
this._windowMessageHandlers = new Map([
|
2020-05-09 16:27:56 +00:00
|
|
|
['popupClose', this._onMessagePopupClose.bind(this)],
|
|
|
|
['selectionCopy', this._onMessageSelectionCopy.bind()]
|
2020-02-27 00:52:12 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
this._runtimeMessageHandlers = new Map([
|
2020-05-09 16:27:56 +00:00
|
|
|
['popupSetVisibleOverride', this._onMessagePopupSetVisibleOverride.bind(this)],
|
|
|
|
['rootPopupRequestInformationBroadcast', this._onMessageRootPopupRequestInformationBroadcast.bind(this)],
|
|
|
|
['requestDocumentInformationBroadcast', this._onMessageRequestDocumentInformationBroadcast.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
|
|
|
this._frameOffsetForwarder.prepare();
|
|
|
|
|
|
|
|
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);
|
|
|
|
DOM.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('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));
|
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));
|
2016-10-09 00:39:21 +00:00
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
api.crossFrame.registerHandlers([
|
|
|
|
['getUrl', {async: false, handler: this._onApiGetUrl.bind(this)}]
|
|
|
|
]);
|
|
|
|
|
|
|
|
this._updateContentScale();
|
|
|
|
this._broadcastRootPopupInformation();
|
2020-05-07 23:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setDisabledOverride(disabled) {
|
|
|
|
this._disabledOverride = disabled;
|
|
|
|
this._updateTextScannerEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
async setTextSource(textSource) {
|
2020-05-08 23:05:50 +00:00
|
|
|
await this._search(textSource, 'script');
|
2020-05-07 23:38:09 +00:00
|
|
|
this._textScanner.setCurrentTextSource(textSource);
|
|
|
|
}
|
|
|
|
|
|
|
|
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() {
|
|
|
|
const optionsContext = await this.getOptionsContext();
|
2020-05-24 17:30:40 +00:00
|
|
|
this._options = await api.optionsGet(optionsContext);
|
2020-06-21 20:14:05 +00:00
|
|
|
|
|
|
|
await this._updatePopup();
|
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
this._textScanner.setOptions(this._options);
|
|
|
|
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();
|
|
|
|
|
|
|
|
const textSourceCurrent = this._textScanner.getCurrentTextSource();
|
|
|
|
const causeCurrent = this._textScanner.causeCurrent;
|
|
|
|
if (textSourceCurrent !== null && causeCurrent !== null) {
|
2020-05-08 23:05:50 +00:00
|
|
|
await this._search(textSourceCurrent, causeCurrent);
|
2020-05-07 23:38:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
showContentCompleted() {
|
|
|
|
return this._lastShowPromise;
|
|
|
|
}
|
|
|
|
|
2020-05-09 16:27:56 +00:00
|
|
|
// Message handlers
|
|
|
|
|
|
|
|
_onMessagePopupClose() {
|
|
|
|
this._textScanner.clearSelection(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onMessageSelectionCopy() {
|
|
|
|
document.execCommand('copy');
|
|
|
|
}
|
|
|
|
|
|
|
|
_onMessagePopupSetVisibleOverride({visible}) {
|
|
|
|
this._popup.setVisibleOverride(visible);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onMessageRootPopupRequestInformationBroadcast() {
|
|
|
|
this._broadcastRootPopupInformation();
|
|
|
|
}
|
|
|
|
|
|
|
|
_onMessageRequestDocumentInformationBroadcast({uniqueId}) {
|
|
|
|
this._broadcastDocumentInformation(uniqueId);
|
|
|
|
}
|
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
// API message handlers
|
|
|
|
|
|
|
|
_onApiGetUrl() {
|
|
|
|
return window.location.href;
|
|
|
|
}
|
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
// Private
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onResize() {
|
2020-01-11 19:16:58 +00:00
|
|
|
this._updatePopupPosition();
|
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onWindowMessage(e) {
|
2019-10-26 00:11:44 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onRuntimeMessage({action, params}, sender, callback) {
|
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
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
_onOrphaned() {
|
2019-12-20 18:44:33 +00:00
|
|
|
this._orphaned = true;
|
|
|
|
}
|
|
|
|
|
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}) {
|
|
|
|
this._popup.hide(!passive);
|
|
|
|
this._popup.clearAutoPlayTimer();
|
|
|
|
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;
|
|
|
|
if (await this._popup.isVisible()) {
|
|
|
|
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-06-21 20:14:05 +00:00
|
|
|
async _updatePopup() {
|
|
|
|
const showIframePopupsInRootFrame = this._options.general.showIframePopupsInRootFrame;
|
|
|
|
const isIframe = !this._useProxyPopup && (window !== window.parent);
|
|
|
|
|
|
|
|
let popupPromise;
|
|
|
|
if (
|
|
|
|
isIframe &&
|
|
|
|
showIframePopupsInRootFrame &&
|
|
|
|
DOM.getFullscreenElement() === null &&
|
|
|
|
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; }
|
|
|
|
await popup.setOptionsContext(optionsContext, this._id);
|
|
|
|
if (this._updatePopupToken !== token) { return; }
|
|
|
|
|
|
|
|
if (this._isSearchPage) {
|
|
|
|
this.setDisabledOverride(!this._options.scanning.enableOnSearchPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._textScanner.clearSelection(true);
|
|
|
|
this._popup = popup;
|
|
|
|
this._depth = popup.depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
async _getDefaultPopup() {
|
|
|
|
return this._popupFactory.getOrCreatePopup(null, null, this._depth);
|
|
|
|
}
|
|
|
|
|
|
|
|
async _getProxyPopup() {
|
|
|
|
const popup = new PopupProxy(null, this._depth + 1, this._proxyPopupId, this._parentFrameId);
|
|
|
|
await popup.prepare();
|
|
|
|
return popup;
|
|
|
|
}
|
|
|
|
|
|
|
|
async _getIframeProxyPopup() {
|
|
|
|
const rootPopupInformationPromise = yomichan.getTemporaryListenerResult(
|
|
|
|
chrome.runtime.onMessage,
|
|
|
|
({action, params}, {resolve}) => {
|
|
|
|
if (action === 'rootPopupInformation') {
|
|
|
|
resolve(params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
api.broadcastTab('rootPopupRequestInformationBroadcast');
|
|
|
|
const {popupId, frameId: parentFrameId} = await rootPopupInformationPromise;
|
|
|
|
|
|
|
|
const popup = new PopupProxy(popupId, 0, null, parentFrameId, this._frameOffsetForwarder);
|
|
|
|
popup.on('offsetNotFound', () => {
|
|
|
|
this._allowRootFramePopupProxy = false;
|
|
|
|
this._updatePopup();
|
|
|
|
});
|
|
|
|
await popup.prepare();
|
|
|
|
|
|
|
|
return popup;
|
|
|
|
}
|
|
|
|
|
|
|
|
_ignoreElements() {
|
2020-06-25 01:46:13 +00:00
|
|
|
return this._popup === null || this._popup.isProxy() ? [] : [this._popup.getContainer()];
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_ignorePoint(x, y) {
|
|
|
|
return this._popup !== null && this._popup.containsPoint(x, y);
|
|
|
|
}
|
|
|
|
|
2020-05-08 23:05:50 +00:00
|
|
|
async _search(textSource, cause) {
|
2020-05-06 23:35:36 +00:00
|
|
|
await this._updatePendingOptions();
|
2020-05-03 01:39:24 +00:00
|
|
|
|
2019-10-25 00:21:21 +00:00
|
|
|
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) {
|
2020-04-26 19:33:50 +00:00
|
|
|
const optionsContext = await this.getOptionsContext();
|
2019-11-03 16:06:31 +00:00
|
|
|
results = (
|
2020-05-06 23:35:36 +00:00
|
|
|
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');
|
2020-05-06 23:35:36 +00:00
|
|
|
this._showContent(textSource, focus, results.definitions, results.type, optionsContext);
|
2019-11-03 16:06:31 +00:00
|
|
|
}
|
2019-10-25 00:21:21 +00:00
|
|
|
}
|
2017-08-13 23:11:51 +00:00
|
|
|
} catch (e) {
|
2019-12-20 18:44:33 +00:00
|
|
|
if (this._orphaned) {
|
2020-05-02 16:47:15 +00:00
|
|
|
if (textSource !== null && this._options.scanning.modifier !== 'none') {
|
2020-04-26 19:33:50 +00:00
|
|
|
this._showPopupContent(textSource, await this.getOptionsContext(), 'orphaned');
|
2017-08-16 03:04:15 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-04-27 22:10:37 +00:00
|
|
|
yomichan.logError(e);
|
2017-08-16 03:04:15 +00:00
|
|
|
}
|
2017-08-13 23:42:22 +00:00
|
|
|
} finally {
|
2020-05-02 16:47:15 +00:00
|
|
|
if (results === null && this._options.scanning.autoHideResults) {
|
|
|
|
this._textScanner.clearSelection(false);
|
2017-09-17 06:08:43 +00:00
|
|
|
}
|
2017-08-13 23:11:51 +00:00
|
|
|
}
|
2019-10-25 00:45:30 +00:00
|
|
|
|
2019-11-03 16:06:31 +00:00
|
|
|
return results;
|
2016-04-18 00:36:15 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
async _findTerms(textSource, optionsContext) {
|
2020-06-21 20:07:51 +00:00
|
|
|
const {length: scanLength, layoutAwareScan} = this._options.scanning;
|
|
|
|
const searchText = this._textScanner.getTextSourceContent(textSource, scanLength, layoutAwareScan);
|
2019-10-25 00:21:21 +00:00
|
|
|
if (searchText.length === 0) { return null; }
|
|
|
|
|
2020-05-24 17:30:40 +00:00
|
|
|
const {definitions, length} = await api.termsFind(searchText, {}, optionsContext);
|
2019-10-25 00:21:21 +00:00
|
|
|
if (definitions.length === 0) { return null; }
|
|
|
|
|
2020-06-21 20:07:51 +00:00
|
|
|
textSource.setEndOffset(length, layoutAwareScan);
|
2017-08-13 23:11:51 +00:00
|
|
|
|
2019-10-25 00:21:21 +00:00
|
|
|
return {definitions, type: 'terms'};
|
2016-03-27 20:21:52 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
async _findKanji(textSource, optionsContext) {
|
2020-06-21 20:07:51 +00:00
|
|
|
const layoutAwareScan = this._options.scanning.layoutAwareScan;
|
|
|
|
const searchText = this._textScanner.getTextSourceContent(textSource, 1, layoutAwareScan);
|
2019-10-25 00:21:21 +00:00
|
|
|
if (searchText.length === 0) { return null; }
|
2019-08-26 01:13:17 +00:00
|
|
|
|
2020-05-24 17:30:40 +00:00
|
|
|
const definitions = await api.kanjiFind(searchText, optionsContext);
|
2019-10-25 00:21:21 +00:00
|
|
|
if (definitions.length === 0) { return null; }
|
2017-08-13 23:11:51 +00:00
|
|
|
|
2020-06-21 20:07:51 +00:00
|
|
|
textSource.setEndOffset(1, layoutAwareScan);
|
2020-05-06 22:49:42 +00:00
|
|
|
|
2019-10-25 00:21:21 +00:00
|
|
|
return {definitions, type: 'kanji'};
|
2016-09-19 00:32:57 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 23:38:09 +00:00
|
|
|
_showContent(textSource, focus, definitions, type, optionsContext) {
|
|
|
|
const {url} = optionsContext;
|
2020-06-21 20:07:51 +00:00
|
|
|
const sentenceExtent = this._options.anki.sentenceExt;
|
|
|
|
const layoutAwareScan = this._options.scanning.layoutAwareScan;
|
|
|
|
const sentence = docSentenceExtract(textSource, sentenceExtent, layoutAwareScan);
|
2020-05-07 23:38:09 +00:00
|
|
|
this._showPopupContent(
|
|
|
|
textSource,
|
|
|
|
optionsContext,
|
|
|
|
type,
|
|
|
|
{definitions, context: {sentence, url, focus, disableHistory: true}}
|
|
|
|
);
|
2019-09-10 23:55:14 +00:00
|
|
|
}
|
2019-12-23 18:58:33 +00:00
|
|
|
|
2020-04-26 19:33:50 +00:00
|
|
|
_showPopupContent(textSource, optionsContext, type=null, details=null) {
|
|
|
|
const context = {optionsContext, source: this._id};
|
2020-05-06 23:35:36 +00:00
|
|
|
this._lastShowPromise = this._popup.showContent(
|
2019-12-23 18:58:33 +00:00
|
|
|
textSource.getRect(),
|
|
|
|
textSource.getWritingMode(),
|
|
|
|
type,
|
2020-04-26 19:33:50 +00:00
|
|
|
details,
|
|
|
|
context
|
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._enabledEventListeners.removeAllEventListeners();
|
|
|
|
this._textScanner.setEnabled(enabled);
|
|
|
|
if (enabled) {
|
2020-05-06 23:35:36 +00:00
|
|
|
this._enabledEventListeners.addEventListener(window, 'message', this._onWindowMessage.bind(this));
|
2020-05-02 16:47:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-04-04 14:32:58 +00:00
|
|
|
_broadcastRootPopupInformation() {
|
2020-06-21 20:14:05 +00:00
|
|
|
if (
|
|
|
|
this._popup !== null &&
|
|
|
|
!this._popup.isProxy() &&
|
|
|
|
this._depth === 0 &&
|
|
|
|
this._frameId === 0
|
|
|
|
) {
|
|
|
|
api.broadcastTab('rootPopupInformation', {
|
|
|
|
popupId: this._popup.id,
|
|
|
|
frameId: this._frameId
|
|
|
|
});
|
2020-04-04 14:32:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 22:55:36 +00:00
|
|
|
_broadcastDocumentInformation(uniqueId) {
|
2020-05-24 17:30:40 +00:00
|
|
|
api.broadcastTab('documentInformationBroadcast', {
|
2020-04-06 22:55:36 +00:00
|
|
|
uniqueId,
|
2020-06-21 20:14:05 +00:00
|
|
|
frameId: this._frameId,
|
2020-04-06 22:55:36 +00:00
|
|
|
title: document.title
|
|
|
|
});
|
|
|
|
}
|
2017-08-14 03:50:43 +00:00
|
|
|
}
|