yomichan/ext/fg/js/float.js

168 lines
4.9 KiB
JavaScript
Raw Normal View History

2017-03-05 01:30:10 +00:00
/*
2020-01-01 17:00:00 +00:00
* Copyright (C) 2016-2020 Alex Yatskov <alex@foosoft.net>
2017-03-05 01:30:10 +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
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
* apiForward
* apiGetMessageToken
* popupNestedInitialize
*/
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() {
super(document.querySelector('#spinner'), document.querySelector('#definitions'));
2017-12-16 18:56:53 +00:00
this.autoPlayAudioTimer = null;
2020-03-13 21:23:08 +00:00
this._popupId = null;
this.optionsContext = {
depth: 0,
url: window.location.href
};
2019-12-20 18:44:33 +00:00
this._orphaned = false;
2020-02-16 17:23:40 +00:00
this._prepareInvoked = false;
this._messageToken = null;
this._messageTokenPromise = null;
2019-12-20 18:44:33 +00:00
2020-02-27 01:02:50 +00:00
this._onKeyDownHandlers = new Map([
['C', (e) => {
if (e.ctrlKey && !window.getSelection().toString()) {
this.onSelectionCopy();
return true;
}
return false;
2020-03-01 17:02:43 +00:00
}],
...this._onKeyDownHandlers
2020-02-27 01:02:50 +00:00
]);
this._windowMessageHandlers = new Map([
['setContent', ({type, details}) => this.setContent(type, details)],
['clearAutoPlayTimer', () => this.clearAutoPlayTimer()],
['setCustomCss', ({css}) => this.setCustomCss(css)],
2020-03-13 21:23:08 +00:00
['prepare', ({popupInfo, url, childrenSupported, scale}) => this.prepare(popupInfo, url, childrenSupported, scale)],
2020-02-27 01:02:50 +00:00
['setContentScale', ({scale}) => this.setContentScale(scale)]
]);
2020-02-27 02:01:40 +00:00
yomichan.on('orphaned', this.onOrphaned.bind(this));
window.addEventListener('message', this.onMessage.bind(this), false);
2017-03-05 01:30:10 +00:00
}
2020-03-13 21:23:08 +00:00
async prepare(popupInfo, url, childrenSupported, scale) {
2020-02-16 17:23:40 +00:00
if (this._prepareInvoked) { return; }
this._prepareInvoked = true;
const {id, depth, parentFrameId} = popupInfo;
2020-03-13 21:23:08 +00:00
this._popupId = id;
this.optionsContext.depth = depth;
this.optionsContext.url = url;
2020-03-13 21:23:08 +00:00
await super.prepare();
if (childrenSupported) {
popupNestedInitialize(id, depth, parentFrameId, url);
}
this.setContentScale(scale);
2020-02-13 11:18:54 +00:00
2020-03-13 21:23:08 +00:00
apiForward('popupPrepareCompleted', {targetPopupId: this._popupId});
}
2017-08-13 23:11:51 +00:00
onError(error) {
2019-12-20 18:44:33 +00:00
if (this._orphaned) {
2019-12-27 22:42:36 +00:00
this.setContent('orphaned');
2017-03-05 01:30:10 +00:00
} else {
logError(error, true);
2017-03-05 01:30:10 +00:00
}
}
2019-12-20 18:44:33 +00:00
onOrphaned() {
this._orphaned = true;
}
2017-08-13 23:11:51 +00:00
onSearchClear() {
window.parent.postMessage('popupClose', '*');
2017-04-01 04:48:10 +00:00
}
2017-08-13 23:11:51 +00:00
onSelectionCopy() {
window.parent.postMessage('selectionCopy', '*');
2017-03-05 01:30:10 +00:00
}
2017-03-05 02:24:57 +00:00
onMessage(e) {
const data = e.data;
if (typeof data !== 'object' || data === null) { return; } // Invalid data
const token = data.token;
if (typeof token !== 'string') { return; } // Invalid data
if (this._messageToken === null) {
// Async
this.getMessageToken()
.then(
() => { this.handleAction(token, data); },
() => {}
);
} else {
// Sync
this.handleAction(token, data);
}
2017-03-05 01:30:10 +00:00
}
2017-04-01 04:48:10 +00:00
async getMessageToken() {
// this._messageTokenPromise is used to ensure that only one call to apiGetMessageToken is made.
if (this._messageTokenPromise === null) {
this._messageTokenPromise = apiGetMessageToken();
}
const messageToken = await this._messageTokenPromise;
if (this._messageToken === null) {
this._messageToken = messageToken;
}
this._messageTokenPromise = null;
}
handleAction(token, {action, params}) {
if (token !== this._messageToken) {
// Invalid token
return;
}
2020-02-27 01:02:50 +00:00
const handler = this._windowMessageHandlers.get(action);
if (typeof handler !== 'function') { return; }
2020-02-27 01:02:50 +00:00
handler(params);
}
2017-12-16 18:56:53 +00:00
autoPlayAudio() {
this.clearAutoPlayTimer();
this.autoPlayAudioTimer = window.setTimeout(() => super.autoPlayAudio(), 400);
}
clearAutoPlayTimer() {
if (this.autoPlayAudioTimer) {
window.clearTimeout(this.autoPlayAudioTimer);
this.autoPlayAudioTimer = null;
}
}
2019-07-09 21:52:44 +00:00
setContentScale(scale) {
document.body.style.fontSize = `${scale}em`;
}
2017-08-15 02:55:04 +00:00
}
DisplayFloat.instance = new DisplayFloat();