2017-03-05 01:30:10 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2016-2020 Yomichan Authors
|
2017-03-05 01:30:10 +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/>.
|
2017-03-05 01:30:10 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
|
|
|
* Display
|
2020-07-08 23:58:06 +00:00
|
|
|
* FrameEndpoint
|
2020-05-24 17:30:40 +00:00
|
|
|
* api
|
2020-03-11 02:30:36 +00:00
|
|
|
*/
|
2017-03-05 01:30:10 +00:00
|
|
|
|
2017-08-15 02:55:04 +00:00
|
|
|
class DisplayFloat extends Display {
|
2017-03-05 01:30:10 +00:00
|
|
|
constructor() {
|
2019-09-15 18:16:23 +00:00
|
|
|
super(document.querySelector('#spinner'), document.querySelector('#definitions'));
|
2020-06-21 20:14:05 +00:00
|
|
|
this._nestedPopupsPrepared = false;
|
2020-07-08 23:50:13 +00:00
|
|
|
this._ownerFrameId = null;
|
2020-07-08 23:58:06 +00:00
|
|
|
this._frameEndpoint = new FrameEndpoint();
|
2020-07-18 18:15:36 +00:00
|
|
|
this._windowMessageHandlers = new Map([
|
|
|
|
['extensionUnloaded', {async: false, handler: this._onMessageExtensionUnloaded.bind(this)}]
|
|
|
|
]);
|
2019-12-20 18:44:33 +00:00
|
|
|
|
2020-07-09 00:02:20 +00:00
|
|
|
this.registerActions([
|
2020-07-27 00:25:15 +00:00
|
|
|
['copyHostSelection', () => this._copySelection()]
|
2020-07-09 00:02:20 +00:00
|
|
|
]);
|
|
|
|
this.registerHotkeys([
|
2020-07-27 00:25:15 +00:00
|
|
|
{key: 'C', modifiers: ['ctrl'], action: 'copyHostSelection'}
|
2020-02-27 01:02:50 +00:00
|
|
|
]);
|
2020-07-19 03:47:02 +00:00
|
|
|
|
|
|
|
this.autoPlayAudioDelay = 400;
|
2017-03-05 01:30:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:27:21 +00:00
|
|
|
async prepare() {
|
2020-03-13 21:23:08 +00:00
|
|
|
await super.prepare();
|
2020-02-12 23:59:26 +00:00
|
|
|
|
2020-08-09 17:11:41 +00:00
|
|
|
this.registerDirectMessageHandlers([
|
2020-07-19 03:47:02 +00:00
|
|
|
['configure', {async: true, handler: this._onMessageConfigure.bind(this)}],
|
|
|
|
['setContentScale', {async: false, handler: this._onMessageSetContentScale.bind(this)}]
|
2020-07-11 02:13:59 +00:00
|
|
|
]);
|
2020-07-18 18:15:36 +00:00
|
|
|
window.addEventListener('message', this._onWindowMessage.bind(this), false);
|
2020-08-02 23:00:36 +00:00
|
|
|
document.documentElement.addEventListener('mouseup', this._onMouseUp.bind(this), false);
|
|
|
|
document.documentElement.addEventListener('click', this._onClick.bind(this), false);
|
|
|
|
document.documentElement.addEventListener('auxclick', this._onClick.bind(this), false);
|
2020-02-13 11:18:54 +00:00
|
|
|
|
2020-07-26 20:51:54 +00:00
|
|
|
this.initializeState();
|
|
|
|
|
2020-07-08 23:58:06 +00:00
|
|
|
this._frameEndpoint.signal();
|
2020-02-12 23:59:26 +00:00
|
|
|
}
|
|
|
|
|
2020-04-27 22:10:37 +00:00
|
|
|
onEscape() {
|
2020-07-08 23:50:13 +00:00
|
|
|
this._invoke('closePopup');
|
2017-04-01 04:48:10 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 19:58:29 +00:00
|
|
|
async setOptionsContext(optionsContext) {
|
|
|
|
super.setOptionsContext(optionsContext);
|
|
|
|
await this.updateOptions();
|
2017-03-05 01:30:10 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 19:58:29 +00:00
|
|
|
async getDocumentTitle() {
|
|
|
|
try {
|
2020-08-15 21:36:42 +00:00
|
|
|
const targetFrameId = 0;
|
|
|
|
const {title} = await api.crossFrame.invoke(targetFrameId, 'getDocumentInformation');
|
2020-07-03 19:58:29 +00:00
|
|
|
return title;
|
|
|
|
} catch (e) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 03:47:02 +00:00
|
|
|
authenticateMessageData(data) {
|
2020-07-11 02:13:59 +00:00
|
|
|
if (!this._frameEndpoint.authenticate(data)) {
|
|
|
|
throw new Error('Invalid authentication');
|
2020-02-17 16:02:21 +00:00
|
|
|
}
|
2020-07-19 03:47:02 +00:00
|
|
|
return data.data;
|
2020-02-17 16:02:21 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 03:47:02 +00:00
|
|
|
// Message handling
|
|
|
|
|
2020-07-18 18:15:36 +00:00
|
|
|
_onWindowMessage(e) {
|
|
|
|
const data = e.data;
|
|
|
|
if (!this._frameEndpoint.authenticate(data)) { return; }
|
|
|
|
|
|
|
|
const {action, params} = data.data;
|
|
|
|
const messageHandler = this._windowMessageHandlers.get(action);
|
|
|
|
if (typeof messageHandler === 'undefined') { return; }
|
|
|
|
|
|
|
|
const callback = () => {}; // NOP
|
|
|
|
yomichan.invokeMessageHandler(messageHandler, params, callback);
|
|
|
|
}
|
|
|
|
|
2020-07-11 02:13:59 +00:00
|
|
|
async _onMessageConfigure({frameId, ownerFrameId, popupId, optionsContext, childrenSupported, scale}) {
|
2020-07-08 23:50:13 +00:00
|
|
|
this._ownerFrameId = ownerFrameId;
|
2020-07-03 19:58:29 +00:00
|
|
|
this.setOptionsContext(optionsContext);
|
|
|
|
|
|
|
|
await this.updateOptions();
|
|
|
|
|
|
|
|
if (childrenSupported && !this._nestedPopupsPrepared) {
|
|
|
|
const {depth, url} = optionsContext;
|
|
|
|
this._prepareNestedPopups(popupId, depth, frameId, url);
|
|
|
|
this._nestedPopupsPrepared = true;
|
2017-12-16 18:56:53 +00:00
|
|
|
}
|
2020-07-03 19:58:29 +00:00
|
|
|
|
|
|
|
this._setContentScale(scale);
|
2017-12-16 18:56:53 +00:00
|
|
|
}
|
2019-07-09 21:52:44 +00:00
|
|
|
|
2020-07-03 19:58:29 +00:00
|
|
|
_onMessageSetContentScale({scale}) {
|
|
|
|
this._setContentScale(scale);
|
|
|
|
}
|
|
|
|
|
2020-07-18 18:15:36 +00:00
|
|
|
_onMessageExtensionUnloaded() {
|
|
|
|
if (yomichan.isExtensionUnloaded) { return; }
|
|
|
|
yomichan.triggerExtensionUnloaded();
|
|
|
|
}
|
|
|
|
|
2020-07-03 19:58:29 +00:00
|
|
|
// Private
|
|
|
|
|
2020-08-02 23:00:36 +00:00
|
|
|
_onMouseUp(e) {
|
|
|
|
switch (e.button) {
|
|
|
|
case 3: // Back
|
|
|
|
if (this._history.hasPrevious()) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4: // Forward
|
|
|
|
if (this._history.hasNext()) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_onClick(e) {
|
|
|
|
switch (e.button) {
|
|
|
|
case 3: // Back
|
|
|
|
if (this._history.hasPrevious()) {
|
|
|
|
e.preventDefault();
|
|
|
|
this._history.back();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4: // Forward
|
|
|
|
if (this._history.hasNext()) {
|
|
|
|
e.preventDefault();
|
|
|
|
this._history.forward();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 19:58:29 +00:00
|
|
|
_copySelection() {
|
2020-07-09 00:02:20 +00:00
|
|
|
if (window.getSelection().toString()) { return false; }
|
2020-07-08 23:50:13 +00:00
|
|
|
this._invoke('copySelection');
|
2020-07-09 00:02:20 +00:00
|
|
|
return true;
|
2020-07-03 19:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_setContentScale(scale) {
|
|
|
|
const body = document.body;
|
|
|
|
if (body === null) { return; }
|
|
|
|
body.style.fontSize = `${scale}em`;
|
|
|
|
}
|
|
|
|
|
2020-06-21 20:14:05 +00:00
|
|
|
async _prepareNestedPopups(id, depth, parentFrameId, url) {
|
|
|
|
let complete = false;
|
|
|
|
|
|
|
|
const onOptionsUpdated = async () => {
|
2020-07-03 16:02:21 +00:00
|
|
|
const optionsContext = this.getOptionsContext();
|
2020-06-21 20:14:05 +00:00
|
|
|
const options = await api.optionsGet(optionsContext);
|
|
|
|
const maxPopupDepthExceeded = !(typeof depth === 'number' && depth < options.scanning.popupNestingMaxDepth);
|
|
|
|
if (maxPopupDepthExceeded || complete) { return; }
|
|
|
|
|
|
|
|
complete = true;
|
|
|
|
yomichan.off('optionsUpdated', onOptionsUpdated);
|
|
|
|
|
|
|
|
try {
|
2020-07-19 03:47:02 +00:00
|
|
|
await this.setupNestedPopups({
|
|
|
|
id,
|
|
|
|
depth,
|
|
|
|
parentFrameId,
|
|
|
|
url,
|
|
|
|
proxy: true
|
|
|
|
});
|
2020-06-21 20:14:05 +00:00
|
|
|
} catch (e) {
|
|
|
|
yomichan.logError(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
yomichan.on('optionsUpdated', onOptionsUpdated);
|
|
|
|
|
|
|
|
await onOptionsUpdated();
|
|
|
|
}
|
|
|
|
|
2020-07-08 23:50:13 +00:00
|
|
|
_invoke(action, params={}) {
|
|
|
|
return api.crossFrame.invoke(this._ownerFrameId, action, params);
|
|
|
|
}
|
2017-08-15 02:55:04 +00:00
|
|
|
}
|