2019-08-17 18:50:48 -04:00
|
|
|
/*
|
2020-04-10 11:06:55 -07:00
|
|
|
* Copyright (C) 2019-2020 Yomichan Authors
|
2019-08-17 18:50:48 -04: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 12:00:31 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-08-17 18:50:48 -04:00
|
|
|
*/
|
|
|
|
|
2020-03-10 22:30:36 -04:00
|
|
|
/* global
|
2020-06-07 21:40:11 -04:00
|
|
|
* api
|
2020-03-10 22:30:36 -04:00
|
|
|
*/
|
2019-08-17 18:50:48 -04:00
|
|
|
|
2020-06-14 14:06:52 -04:00
|
|
|
class PopupProxy extends EventDispatcher {
|
2020-11-23 15:23:47 -05:00
|
|
|
constructor({
|
|
|
|
id,
|
|
|
|
depth,
|
|
|
|
frameId,
|
|
|
|
ownerFrameId,
|
|
|
|
frameOffsetForwarder
|
|
|
|
}) {
|
2020-06-14 14:06:52 -04:00
|
|
|
super();
|
2020-02-16 17:27:55 -05:00
|
|
|
this._id = id;
|
2019-12-15 16:34:44 -05:00
|
|
|
this._depth = depth;
|
2020-08-22 14:33:41 -04:00
|
|
|
this._frameId = frameId;
|
2020-07-08 19:50:13 -04:00
|
|
|
this._ownerFrameId = ownerFrameId;
|
2020-06-14 14:06:52 -04:00
|
|
|
this._frameOffsetForwarder = frameOffsetForwarder;
|
2020-03-22 14:11:43 +02:00
|
|
|
|
|
|
|
this._frameOffset = null;
|
|
|
|
this._frameOffsetPromise = null;
|
|
|
|
this._frameOffsetUpdatedAt = null;
|
2020-07-03 11:58:52 -04:00
|
|
|
this._frameOffsetExpireTimeout = 1000;
|
2019-12-15 16:34:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Public properties
|
|
|
|
|
2020-03-13 23:23:08 +02:00
|
|
|
get id() {
|
|
|
|
return this._id;
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:44 -05:00
|
|
|
get parent() {
|
|
|
|
return null;
|
|
|
|
}
|
2019-08-17 18:50:48 -04:00
|
|
|
|
2020-08-15 17:27:03 -04:00
|
|
|
set parent(value) {
|
|
|
|
throw new Error('Not supported on PopupProxy');
|
|
|
|
}
|
|
|
|
|
|
|
|
get child() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
set child(value) {
|
|
|
|
throw new Error('Not supported on PopupProxy');
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:44 -05:00
|
|
|
get depth() {
|
|
|
|
return this._depth;
|
|
|
|
}
|
2019-08-17 18:50:48 -04:00
|
|
|
|
2020-08-15 17:27:03 -04:00
|
|
|
get frameContentWindow() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
get container() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-08-22 14:33:41 -04:00
|
|
|
get frameId() {
|
|
|
|
return this._frameId;
|
2020-03-19 15:55:12 +02:00
|
|
|
}
|
|
|
|
|
2020-08-22 14:33:41 -04:00
|
|
|
// Public functions
|
|
|
|
|
2020-08-02 21:51:51 -04:00
|
|
|
setOptionsContext(optionsContext, source) {
|
|
|
|
return this._invokeSafe('setOptionsContext', {id: this._id, optionsContext, source});
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|
|
|
|
|
2019-12-15 22:21:01 -05:00
|
|
|
hide(changeFocus) {
|
2020-08-02 21:51:51 -04:00
|
|
|
return this._invokeSafe('hide', {id: this._id, changeFocus});
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|
|
|
|
|
2020-08-02 21:51:51 -04:00
|
|
|
isVisible() {
|
|
|
|
return this._invokeSafe('isVisible', {id: this._id}, false);
|
2019-10-17 18:39:12 -04:00
|
|
|
}
|
|
|
|
|
2020-09-04 17:58:43 -04:00
|
|
|
setVisibleOverride(value, priority) {
|
|
|
|
return this._invokeSafe('setVisibleOverride', {id: this._id, value, priority}, null);
|
2020-08-23 15:18:41 -04:00
|
|
|
}
|
|
|
|
|
2020-09-04 17:58:43 -04:00
|
|
|
clearVisibleOverride(token) {
|
|
|
|
return this._invokeSafe('clearVisibleOverride', {id: this._id, token}, false);
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|
|
|
|
|
2019-09-14 14:27:25 -04:00
|
|
|
async containsPoint(x, y) {
|
2020-06-14 14:06:52 -04:00
|
|
|
if (this._frameOffsetForwarder !== null) {
|
2020-03-22 14:11:43 +02:00
|
|
|
await this._updateFrameOffset();
|
|
|
|
[x, y] = this._applyFrameOffset(x, y);
|
2020-03-19 02:55:31 +02:00
|
|
|
}
|
2020-08-02 21:51:51 -04:00
|
|
|
return await this._invokeSafe('containsPoint', {id: this._id, x, y}, false);
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|
|
|
|
|
2020-07-24 17:34:53 -04:00
|
|
|
async showContent(details, displayDetails) {
|
|
|
|
const {elementRect} = details;
|
|
|
|
if (typeof elementRect !== 'undefined') {
|
|
|
|
let {x, y, width, height} = elementRect;
|
|
|
|
if (this._frameOffsetForwarder !== null) {
|
|
|
|
await this._updateFrameOffset();
|
|
|
|
[x, y] = this._applyFrameOffset(x, y);
|
|
|
|
}
|
|
|
|
details.elementRect = {x, y, width, height};
|
2020-03-19 02:55:31 +02:00
|
|
|
}
|
2020-08-02 21:51:51 -04:00
|
|
|
return await this._invokeSafe('showContent', {id: this._id, details, displayDetails});
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|
|
|
|
|
2020-05-08 19:04:53 -04:00
|
|
|
setCustomCss(css) {
|
2020-08-02 21:51:51 -04:00
|
|
|
return this._invokeSafe('setCustomCss', {id: this._id, css});
|
2019-10-12 17:12:34 -04:00
|
|
|
}
|
|
|
|
|
2020-08-02 21:51:51 -04:00
|
|
|
clearAutoPlayTimer() {
|
|
|
|
return this._invokeSafe('clearAutoPlayTimer', {id: this._id});
|
2019-12-15 16:21:57 -05:00
|
|
|
}
|
|
|
|
|
2020-05-08 19:04:53 -04:00
|
|
|
setContentScale(scale) {
|
2020-08-02 21:51:51 -04:00
|
|
|
return this._invokeSafe('setContentScale', {id: this._id, scale});
|
2019-12-23 17:12:09 -05:00
|
|
|
}
|
|
|
|
|
2020-08-15 17:27:03 -04:00
|
|
|
isVisibleSync() {
|
|
|
|
throw new Error('Not supported on PopupProxy');
|
|
|
|
}
|
|
|
|
|
|
|
|
updateTheme() {
|
|
|
|
return this._invokeSafe('updateTheme', {id: this._id});
|
|
|
|
}
|
|
|
|
|
2020-09-04 17:58:43 -04:00
|
|
|
setCustomOuterCss(css, useWebExtensionApi) {
|
|
|
|
return this._invokeSafe('setCustomOuterCss', {id: this._id, css, useWebExtensionApi});
|
2020-08-15 17:27:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
getFrameRect() {
|
|
|
|
return new DOMRect(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2020-12-08 20:31:02 -05:00
|
|
|
getFrameSize() {
|
|
|
|
return this._invokeSafe('popup.getFrameSize', {id: this._id}, {width: 0, height: 0, valid: false});
|
|
|
|
}
|
|
|
|
|
|
|
|
setFrameSize(width, height) {
|
|
|
|
return this._invokeSafe('popup.setFrameSize', {id: this._id, width, height});
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:21:57 -05:00
|
|
|
// Private
|
|
|
|
|
2020-05-08 19:04:53 -04:00
|
|
|
_invoke(action, params={}) {
|
2020-08-22 14:33:41 -04:00
|
|
|
return api.crossFrame.invoke(this._frameId, action, params);
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|
2020-03-22 14:11:43 +02:00
|
|
|
|
2020-08-02 21:51:51 -04:00
|
|
|
async _invokeSafe(action, params={}, defaultReturnValue) {
|
|
|
|
try {
|
|
|
|
return await this._invoke(action, params);
|
|
|
|
} catch (e) {
|
|
|
|
if (!yomichan.isExtensionUnloaded) { throw e; }
|
|
|
|
return defaultReturnValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 14:11:43 +02:00
|
|
|
async _updateFrameOffset() {
|
2020-04-05 19:21:06 +03:00
|
|
|
const now = Date.now();
|
2020-03-22 14:11:43 +02:00
|
|
|
const firstRun = this._frameOffsetUpdatedAt === null;
|
2020-07-03 11:58:52 -04:00
|
|
|
const expired = firstRun || this._frameOffsetUpdatedAt < now - this._frameOffsetExpireTimeout;
|
2020-03-22 14:11:43 +02:00
|
|
|
if (this._frameOffsetPromise === null && !expired) { return; }
|
|
|
|
|
|
|
|
if (this._frameOffsetPromise !== null) {
|
2020-03-22 14:39:07 +02:00
|
|
|
if (firstRun) {
|
|
|
|
await this._frameOffsetPromise;
|
|
|
|
}
|
2020-03-22 14:11:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-05 19:21:06 +03:00
|
|
|
const promise = this._updateFrameOffsetInner(now);
|
|
|
|
if (firstRun) {
|
|
|
|
await promise;
|
|
|
|
}
|
|
|
|
}
|
2020-04-05 15:32:57 +03:00
|
|
|
|
2020-04-05 19:21:06 +03:00
|
|
|
async _updateFrameOffsetInner(now) {
|
2020-06-14 14:06:52 -04:00
|
|
|
this._frameOffsetPromise = this._frameOffsetForwarder.getOffset();
|
2020-04-05 19:21:06 +03:00
|
|
|
try {
|
|
|
|
const offset = await this._frameOffsetPromise;
|
2020-04-05 15:32:57 +03:00
|
|
|
this._frameOffset = offset !== null ? offset : [0, 0];
|
2020-06-14 14:06:52 -04:00
|
|
|
if (offset === null) {
|
|
|
|
this.trigger('offsetNotFound');
|
2020-04-18 00:50:05 +03:00
|
|
|
return;
|
|
|
|
}
|
2020-04-05 19:21:06 +03:00
|
|
|
this._frameOffsetUpdatedAt = now;
|
|
|
|
} catch (e) {
|
2020-04-26 16:55:25 -04:00
|
|
|
yomichan.logError(e);
|
2020-04-05 19:21:06 +03:00
|
|
|
} finally {
|
2020-04-05 15:32:57 +03:00
|
|
|
this._frameOffsetPromise = null;
|
2020-03-22 14:11:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_applyFrameOffset(x, y) {
|
|
|
|
const [offsetX, offsetY] = this._frameOffset;
|
|
|
|
return [x + offsetX, y + offsetY];
|
|
|
|
}
|
2019-08-17 18:50:48 -04:00
|
|
|
}
|