yomichan/ext/fg/js/float.js

130 lines
3.8 KiB
JavaScript
Raw Normal View History

2017-03-04 17:30:10 -08:00
/*
2020-01-01 12:00:00 -05:00
* Copyright (C) 2016-2020 Alex Yatskov <alex@foosoft.net>
2017-03-04 17:30:10 -08: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 12:00:31 -05:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2017-03-04 17:30:10 -08:00
*/
2017-08-14 19:55:04 -07:00
class DisplayFloat extends Display {
2017-03-04 17:30:10 -08:00
constructor() {
super(document.querySelector('#spinner'), document.querySelector('#definitions'));
2017-12-16 19:56:53 +01:00
this.autoPlayAudioTimer = null;
this.optionsContext = {
depth: 0,
url: window.location.href
};
2019-12-20 13:44:33 -05:00
this._orphaned = false;
yomichan.on('orphaned', () => this.onOrphaned());
2019-09-15 11:37:36 -04:00
window.addEventListener('message', (e) => this.onMessage(e), false);
2017-03-04 17:30:10 -08:00
}
2017-08-13 16:11:51 -07:00
onError(error) {
2019-12-20 13:44:33 -05:00
if (this._orphaned) {
2019-12-27 17:42:36 -05:00
this.setContent('orphaned');
2017-03-04 17:30:10 -08:00
} else {
logError(error, true);
2017-03-04 17:30:10 -08:00
}
}
2019-12-20 13:44:33 -05:00
onOrphaned() {
this._orphaned = true;
}
2017-08-13 16:11:51 -07:00
onSearchClear() {
window.parent.postMessage('popupClose', '*');
2017-03-31 21:48:10 -07:00
}
2017-08-13 16:11:51 -07:00
onSelectionCopy() {
window.parent.postMessage('selectionCopy', '*');
2017-03-04 17:30:10 -08:00
}
2017-03-04 18:24:57 -08:00
onMessage(e) {
2019-09-15 11:37:36 -04:00
const {action, params} = e.data;
2019-12-11 21:43:59 -05:00
const handler = DisplayFloat._messageHandlers.get(action);
if (typeof handler !== 'function') { return; }
handler(this, params);
2017-03-04 17:30:10 -08:00
}
2017-03-31 21:48:10 -07:00
onKeyDown(e) {
const key = Display.getKeyFromEvent(e);
2019-12-11 21:53:27 -05:00
const handler = DisplayFloat._onKeyDownHandlers.get(key);
if (typeof handler === 'function') {
if (handler(this, e)) {
e.preventDefault();
2019-12-11 21:53:27 -05:00
return true;
2017-03-31 21:48:10 -07:00
}
}
2019-12-11 21:53:27 -05:00
return super.onKeyDown(e);
2017-03-31 21:48:10 -07:00
}
2017-12-16 19:56:53 +01:00
2019-10-12 14:20:54 -04:00
getOptionsContext() {
return this.optionsContext;
}
2017-12-16 19:56:53 +01: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 17:52:44 -04:00
setContentScale(scale) {
document.body.style.fontSize = `${scale}em`;
}
async initialize(options, popupInfo, url, childrenSupported, scale) {
2019-10-12 14:20:54 -04:00
await super.initialize(options);
2019-10-02 21:11:06 -04:00
const {id, depth, parentFrameId} = popupInfo;
this.optionsContext.depth = depth;
this.optionsContext.url = url;
2019-10-11 22:35:59 -04:00
if (childrenSupported) {
popupNestedInitialize(id, depth, parentFrameId, url);
}
this.setContentScale(scale);
2019-10-02 21:11:06 -04:00
}
2017-08-14 19:55:04 -07:00
}
2019-12-11 21:53:27 -05:00
DisplayFloat._onKeyDownHandlers = new Map([
['C', (self, e) => {
if (e.ctrlKey && !window.getSelection().toString()) {
self.onSelectionCopy();
return true;
}
return false;
2019-12-11 21:53:27 -05:00
}]
]);
2019-12-11 21:43:59 -05:00
DisplayFloat._messageHandlers = new Map([
['setContent', (self, {type, details}) => self.setContent(type, details)],
['clearAutoPlayTimer', (self) => self.clearAutoPlayTimer()],
['setCustomCss', (self, {css}) => self.setCustomCss(css)],
['initialize', (self, {options, popupInfo, url, childrenSupported, scale}) => self.initialize(options, popupInfo, url, childrenSupported, scale)],
['setContentScale', (self, {scale}) => self.setContentScale(scale)]
2019-12-11 21:43:59 -05:00
]);
DisplayFloat.instance = new DisplayFloat();