2020-03-19 15:46:05 +00:00
|
|
|
/*
|
2021-01-01 19:50:41 +00:00
|
|
|
* Copyright (C) 2020-2021 Yomichan Authors
|
2020-03-19 15:46:05 +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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global
|
2021-02-08 22:52:56 +00:00
|
|
|
* FrameAncestryHandler
|
2020-03-19 15:46:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class FrameOffsetForwarder {
|
2020-07-11 02:13:11 +00:00
|
|
|
constructor(frameId) {
|
|
|
|
this._frameId = frameId;
|
2021-02-08 22:52:56 +00:00
|
|
|
this._frameAncestryHandler = new FrameAncestryHandler(frameId);
|
2020-03-22 01:29:09 +00:00
|
|
|
}
|
2020-03-19 15:46:05 +00:00
|
|
|
|
2020-06-14 18:06:52 +00:00
|
|
|
prepare() {
|
2021-02-08 22:52:56 +00:00
|
|
|
this._frameAncestryHandler.prepare();
|
2021-02-14 20:53:35 +00:00
|
|
|
yomichan.crossFrame.registerHandlers([
|
2021-02-08 22:52:56 +00:00
|
|
|
['FrameOffsetForwarder.getChildFrameRect', {async: false, handler: this._onMessageGetChildFrameRect.bind(this)}]
|
|
|
|
]);
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
|
2020-03-22 12:11:43 +00:00
|
|
|
async getOffset() {
|
2021-02-08 22:52:56 +00:00
|
|
|
if (this._frameAncestryHandler.isRootFrame()) {
|
2020-07-11 02:13:11 +00:00
|
|
|
return [0, 0];
|
|
|
|
}
|
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
const ancestorFrameIds = await this._frameAncestryHandler.getFrameAncestryInfo();
|
2020-03-19 15:46:05 +00:00
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
let childFrameId = this._frameId;
|
|
|
|
const promises = [];
|
|
|
|
for (const frameId of ancestorFrameIds) {
|
2021-02-14 20:53:35 +00:00
|
|
|
promises.push(yomichan.crossFrame.invoke(frameId, 'FrameOffsetForwarder.getChildFrameRect', {frameId: childFrameId}));
|
2021-02-08 22:52:56 +00:00
|
|
|
childFrameId = frameId;
|
2020-07-11 02:13:11 +00:00
|
|
|
}
|
2020-03-19 15:46:05 +00:00
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
const results = await Promise.all(promises);
|
2020-04-18 14:18:33 +00:00
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
let xOffset = 0;
|
|
|
|
let yOffset = 0;
|
|
|
|
for (const {x, y} of results) {
|
|
|
|
xOffset += x;
|
|
|
|
yOffset += y;
|
2020-04-18 13:48:49 +00:00
|
|
|
}
|
2021-02-08 22:52:56 +00:00
|
|
|
return [xOffset, yOffset];
|
2020-04-17 21:55:16 +00:00
|
|
|
}
|
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
// Private
|
2020-04-18 19:26:11 +00:00
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
_onMessageGetChildFrameRect({frameId}) {
|
|
|
|
const frameElement = this._frameAncestryHandler.getChildFrameElement(frameId);
|
|
|
|
if (frameElement === null) { return null; }
|
2020-03-19 15:46:05 +00:00
|
|
|
|
2021-02-08 22:52:56 +00:00
|
|
|
const {x, y, width, height} = frameElement.getBoundingClientRect();
|
|
|
|
return {x, y, width, height};
|
2020-03-19 15:46:05 +00:00
|
|
|
}
|
|
|
|
}
|