2016-04-19 03:42:50 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2016-2022 Yomichan Authors
|
2016-04-19 03:42:50 +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/>.
|
2016-04-19 03:42:50 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
2020-08-10 01:07:11 +00:00
|
|
|
* DocumentUtil
|
2020-07-08 23:58:06 +00:00
|
|
|
* FrameClient
|
2022-04-03 20:20:55 +00:00
|
|
|
* ThemeController
|
2020-05-20 00:33:06 +00:00
|
|
|
* dynamicLoader
|
2020-03-11 02:30:36 +00:00
|
|
|
*/
|
2016-04-19 03:42:50 +00:00
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* This class is the container which hosts the display of search results.
|
|
|
|
*/
|
2020-08-22 18:35:29 +00:00
|
|
|
class Popup extends EventDispatcher {
|
2022-05-17 01:45:22 +00:00
|
|
|
/**
|
|
|
|
* Information about how popup content should be shown, specifically related to the outer popup frame.
|
|
|
|
* @typedef {object} ContentDetails
|
|
|
|
* @property {?object} optionsContext The options context for the content to show.
|
|
|
|
* @property {Rect[]} sourceRects The rectangles of the source content.
|
|
|
|
* @property {'horizontal-tb' | 'vertical-rl' | 'vertical-lr' | 'sideways-rl' | 'sideways-lr'} writingMode The normalized CSS writing-mode value of the source content.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A rectangle representing a DOM region, similar to DOMRect.
|
|
|
|
* @typedef {object} Rect
|
|
|
|
* @property {number} left The left position of the rectangle.
|
|
|
|
* @property {number} top The top position of the rectangle.
|
|
|
|
* @property {number} right The right position of the rectangle.
|
|
|
|
* @property {number} bottom The bottom position of the rectangle.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A rectangle representing a DOM region, similar to DOMRect but with a `valid` property.
|
|
|
|
* @typedef {object} ValidRect
|
|
|
|
* @property {number} left The left position of the rectangle.
|
|
|
|
* @property {number} top The top position of the rectangle.
|
|
|
|
* @property {number} right The right position of the rectangle.
|
|
|
|
* @property {number} bottom The bottom position of the rectangle.
|
|
|
|
* @property {boolean} valid Whether or not the rectangle is valid.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A rectangle representing a DOM region for placing the popup frame.
|
|
|
|
* @typedef {object} SizeRect
|
|
|
|
* @property {number} left The left position of the rectangle.
|
|
|
|
* @property {number} top The top position of the rectangle.
|
|
|
|
* @property {number} width The width of the rectangle.
|
|
|
|
* @property {number} height The height of the rectangle.
|
|
|
|
* @property {boolean} after Whether or not the rectangle is positioned to the right of the source rectangle.
|
|
|
|
* @property {boolean} below Whether or not the rectangle is positioned below the source rectangle.
|
|
|
|
*/
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Creates a new instance.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {object} details The details used to construct the new instance.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} details.id The ID of the popup.
|
|
|
|
* @param {number} details.depth The depth of the popup.
|
|
|
|
* @param {number} details.frameId The ID of the host frame.
|
|
|
|
* @param {boolean} details.childrenSupported Whether or not the popup is able to show child popups.
|
|
|
|
*/
|
2020-11-23 20:23:47 +00:00
|
|
|
constructor({
|
|
|
|
id,
|
|
|
|
depth,
|
|
|
|
frameId,
|
|
|
|
childrenSupported
|
|
|
|
}) {
|
2020-08-22 18:35:29 +00:00
|
|
|
super();
|
2019-12-16 02:43:47 +00:00
|
|
|
this._id = id;
|
|
|
|
this._depth = depth;
|
2020-03-18 22:24:14 +00:00
|
|
|
this._frameId = frameId;
|
2020-11-23 20:23:47 +00:00
|
|
|
this._childrenSupported = childrenSupported;
|
2019-12-16 02:43:47 +00:00
|
|
|
this._parent = null;
|
|
|
|
this._child = null;
|
|
|
|
this._injectPromise = null;
|
2020-05-02 16:59:13 +00:00
|
|
|
this._injectPromiseComplete = false;
|
2020-08-23 19:18:41 +00:00
|
|
|
this._visible = new DynamicProperty(false);
|
2021-08-02 23:25:10 +00:00
|
|
|
this._visibleValue = false;
|
2020-04-26 19:33:50 +00:00
|
|
|
this._optionsContext = null;
|
2019-12-23 22:12:09 +00:00
|
|
|
this._contentScale = 1.0;
|
2020-02-17 04:41:17 +00:00
|
|
|
this._targetOrigin = chrome.runtime.getURL('/').replace(/\/$/, '');
|
2019-12-16 02:43:47 +00:00
|
|
|
|
2022-04-03 21:09:51 +00:00
|
|
|
this._optionsAssigned = false;
|
|
|
|
this._initialWidth = 400;
|
|
|
|
this._initialHeight = 250;
|
|
|
|
this._horizontalOffset = 0;
|
|
|
|
this._verticalOffset = 10;
|
|
|
|
this._horizontalOffset2 = 10;
|
|
|
|
this._verticalOffset2 = 0;
|
|
|
|
this._verticalTextPosition = 'before';
|
2022-05-17 01:45:22 +00:00
|
|
|
this._horizontalTextPositionBelow = true;
|
2022-04-03 21:09:51 +00:00
|
|
|
this._displayMode = 'default';
|
2022-05-17 01:45:22 +00:00
|
|
|
this._displayModeIsFullWidth = false;
|
2022-04-03 21:09:51 +00:00
|
|
|
this._scaleRelativeToVisualViewport = true;
|
|
|
|
this._useSecureFrameUrl = true;
|
|
|
|
this._useShadowDom = true;
|
|
|
|
this._customOuterCss = '';
|
|
|
|
|
2020-05-08 23:10:06 +00:00
|
|
|
this._frameSizeContentScale = null;
|
2020-07-08 23:58:06 +00:00
|
|
|
this._frameClient = null;
|
2020-05-08 23:10:06 +00:00
|
|
|
this._frame = document.createElement('iframe');
|
2020-11-26 19:13:53 +00:00
|
|
|
this._frame.className = 'yomichan-popup';
|
2020-05-08 23:10:06 +00:00
|
|
|
this._frame.style.width = '0';
|
|
|
|
this._frame.style.height = '0';
|
2019-12-16 02:04:53 +00:00
|
|
|
|
2020-06-25 01:46:13 +00:00
|
|
|
this._container = this._frame;
|
|
|
|
this._shadow = null;
|
|
|
|
|
2022-04-03 20:20:55 +00:00
|
|
|
this._themeController = new ThemeController(this._frame);
|
|
|
|
|
2020-02-16 23:52:04 +00:00
|
|
|
this._fullscreenEventListeners = new EventListenerCollection();
|
2017-03-16 03:13:58 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* The ID of the popup.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2020-02-16 22:27:55 +00:00
|
|
|
get id() {
|
|
|
|
return this._id;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* The parent of the popup.
|
|
|
|
* @type {Popup}
|
|
|
|
*/
|
2019-12-16 02:43:47 +00:00
|
|
|
get parent() {
|
|
|
|
return this._parent;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the parent popup.
|
|
|
|
* @param {Popup} value The parent popup to assign.
|
|
|
|
*/
|
2020-08-15 21:27:03 +00:00
|
|
|
set parent(value) {
|
|
|
|
this._parent = value;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* The child of the popup.
|
|
|
|
* @type {Popup}
|
|
|
|
*/
|
2020-02-16 22:27:55 +00:00
|
|
|
get child() {
|
|
|
|
return this._child;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the child popup.
|
|
|
|
* @param {Popup} value The child popup to assign.
|
|
|
|
*/
|
2020-08-15 21:27:03 +00:00
|
|
|
set child(value) {
|
|
|
|
this._child = value;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* The depth of the popup.
|
|
|
|
* @type {numer}
|
|
|
|
*/
|
2019-12-16 02:43:47 +00:00
|
|
|
get depth() {
|
|
|
|
return this._depth;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Gets the content window of the frame, which can be `null`
|
|
|
|
* depending on the current state of the frame.
|
|
|
|
* @type {?Window}
|
|
|
|
*/
|
2020-08-15 21:27:03 +00:00
|
|
|
get frameContentWindow() {
|
|
|
|
return this._frame.contentWindow;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Gets the DOM node that contains the frame.
|
|
|
|
* @type {Element}
|
|
|
|
*/
|
2020-08-15 21:27:03 +00:00
|
|
|
get container() {
|
|
|
|
return this._container;
|
2020-04-04 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Gets the ID of the frame.
|
|
|
|
* @type {number}
|
|
|
|
*/
|
2020-08-22 18:33:41 +00:00
|
|
|
get frameId() {
|
|
|
|
return this._frameId;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Prepares the popup for use.
|
|
|
|
*/
|
2020-05-08 23:10:06 +00:00
|
|
|
prepare() {
|
2020-09-08 23:40:15 +00:00
|
|
|
this._frame.addEventListener('mouseover', this._onFrameMouseOver.bind(this));
|
|
|
|
this._frame.addEventListener('mouseout', this._onFrameMouseOut.bind(this));
|
2020-05-08 23:10:06 +00:00
|
|
|
this._frame.addEventListener('mousedown', (e) => e.stopPropagation());
|
|
|
|
this._frame.addEventListener('scroll', (e) => e.stopPropagation());
|
|
|
|
this._frame.addEventListener('load', this._onFrameLoad.bind(this));
|
2020-08-23 19:18:41 +00:00
|
|
|
this._visible.on('change', this._onVisibleChange.bind(this));
|
2020-07-18 18:15:36 +00:00
|
|
|
yomichan.on('extensionUnloaded', this._onExtensionUnloaded.bind(this));
|
2020-08-23 19:18:41 +00:00
|
|
|
this._onVisibleChange({value: this.isVisibleSync()});
|
2022-04-03 20:20:55 +00:00
|
|
|
this._themeController.prepare();
|
2020-05-08 23:10:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the options context for the popup.
|
|
|
|
* @param {object} optionsContext The options context object.
|
|
|
|
*/
|
2020-11-13 01:32:46 +00:00
|
|
|
async setOptionsContext(optionsContext) {
|
2020-11-14 00:51:51 +00:00
|
|
|
await this._setOptionsContext(optionsContext);
|
2021-11-21 20:54:58 +00:00
|
|
|
await this._invokeSafe('Display.setOptionsContext', {optionsContext});
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Hides the popup.
|
|
|
|
* @param {boolean} changeFocus Whether or not the parent popup or host frame should be focused.
|
|
|
|
*/
|
2019-12-16 01:11:32 +00:00
|
|
|
hide(changeFocus) {
|
2019-12-16 02:48:29 +00:00
|
|
|
if (!this.isVisibleSync()) {
|
2019-12-16 01:11:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-16 01:54:20 +00:00
|
|
|
this._setVisible(false);
|
2019-12-16 02:43:47 +00:00
|
|
|
if (this._child !== null) {
|
|
|
|
this._child.hide(false);
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
if (changeFocus) {
|
2019-12-16 01:54:20 +00:00
|
|
|
this._focusParent();
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Returns whether or not the popup is currently visible.
|
|
|
|
* @returns {Promise<boolean>} `true` if the popup is visible, `false` otherwise.
|
|
|
|
*/
|
2019-12-16 02:49:20 +00:00
|
|
|
async isVisible() {
|
2019-12-16 02:48:29 +00:00
|
|
|
return this.isVisibleSync();
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Force assigns the visibility of the popup.
|
|
|
|
* @param {boolean} value Whether or not the popup should be visible.
|
|
|
|
* @param {number} priority The priority of the override.
|
|
|
|
* @returns {Promise<string?>} A token used which can be passed to `clearVisibleOverride`,
|
|
|
|
* or null if the override wasn't assigned.
|
|
|
|
*/
|
2020-08-23 19:18:41 +00:00
|
|
|
async setVisibleOverride(value, priority) {
|
|
|
|
return this._visible.setOverride(value, priority);
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Clears a visibility override that was generated by `setVisibleOverride`.
|
|
|
|
* @param {string} token The token returned from `setVisibleOverride`.
|
|
|
|
* @returns {Promise<boolean>} `true` if the override existed and was removed, `false` otherwise.
|
|
|
|
*/
|
2020-08-23 19:18:41 +00:00
|
|
|
async clearVisibleOverride(token) {
|
|
|
|
return this._visible.clearOverride(token);
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Checks whether a point is contained within the popup's rect.
|
|
|
|
* @param {number} x The x coordinate.
|
|
|
|
* @param {number} y The y coordinate.
|
|
|
|
* @returns {Promise<boolean>} `true` if the point is contained within the popup's rect, `false` otherwise.
|
|
|
|
*/
|
2019-12-16 01:11:32 +00:00
|
|
|
async containsPoint(x, y) {
|
2020-07-03 15:54:51 +00:00
|
|
|
for (let popup = this; popup !== null && popup.isVisibleSync(); popup = popup.child) {
|
|
|
|
const rect = popup.getFrameRect();
|
2022-05-17 01:45:22 +00:00
|
|
|
if (rect.valid && x >= rect.left && y >= rect.top && x < rect.right && y < rect.bottom) {
|
2019-12-16 01:11:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Shows and updates the positioning and content of the popup.
|
2022-05-17 01:45:22 +00:00
|
|
|
* @param {ContentDetails} details Settings for the outer popup.
|
|
|
|
* @param {Display.ContentDetails} displayDetails The details parameter passed to `Display.setContent`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2020-07-24 21:34:53 +00:00
|
|
|
async showContent(details, displayDetails) {
|
2022-04-03 21:09:51 +00:00
|
|
|
if (!this._optionsAssigned) { throw new Error('Options not assigned'); }
|
2020-04-26 19:33:50 +00:00
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
const {optionsContext, sourceRects, writingMode} = details;
|
2020-11-13 01:32:46 +00:00
|
|
|
if (optionsContext !== null) {
|
|
|
|
await this._setOptionsContextIfDifferent(optionsContext);
|
2020-04-26 19:33:50 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
await this._show(sourceRects, writingMode);
|
2020-07-24 21:34:53 +00:00
|
|
|
|
|
|
|
if (displayDetails !== null) {
|
2021-11-21 20:54:58 +00:00
|
|
|
this._invokeSafe('Display.setContent', {details: displayDetails});
|
2020-07-24 21:34:53 +00:00
|
|
|
}
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the custom styles for the popup content.
|
|
|
|
* @param {string} css The CSS rules.
|
|
|
|
*/
|
2020-05-08 23:04:53 +00:00
|
|
|
setCustomCss(css) {
|
2021-11-21 20:54:58 +00:00
|
|
|
this._invokeSafe('Display.setCustomCss', {css});
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Stops the audio auto-play timer, if one has started.
|
|
|
|
*/
|
2020-08-03 01:51:51 +00:00
|
|
|
clearAutoPlayTimer() {
|
2021-11-21 20:54:58 +00:00
|
|
|
this._invokeSafe('Display.clearAutoPlayTimer');
|
2019-12-16 01:11:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the scaling factor of the popup content.
|
|
|
|
* @param {number} scale The scaling factor.
|
|
|
|
*/
|
2019-12-23 22:12:09 +00:00
|
|
|
setContentScale(scale) {
|
|
|
|
this._contentScale = scale;
|
2020-11-26 19:13:53 +00:00
|
|
|
this._frame.style.fontSize = `${scale}px`;
|
2021-11-21 20:54:58 +00:00
|
|
|
this._invokeSafe('Display.setContentScale', {scale});
|
2019-12-23 22:12:09 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Returns whether or not the popup is currently visible, synchronously.
|
|
|
|
* @returns {boolean} `true` if the popup is visible, `false` otherwise.
|
|
|
|
*/
|
2019-12-16 02:48:29 +00:00
|
|
|
isVisibleSync() {
|
2020-08-23 19:18:41 +00:00
|
|
|
return this._visible.value;
|
2019-12-16 01:48:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Updates the outer theme of the popup.
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2022-04-03 20:20:55 +00:00
|
|
|
async updateTheme() {
|
|
|
|
this._themeController.updateTheme();
|
2019-12-16 01:48:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the custom styles for the outer popup container.
|
|
|
|
* @param {string} css The CSS rules.
|
|
|
|
* @param {boolean} useWebExtensionApi Whether or not web extension APIs should be used to inject the rules.
|
|
|
|
* When web extension APIs are used, a DOM node is not generated, making it harder to detect the changes.
|
|
|
|
*/
|
2020-02-16 18:29:55 +00:00
|
|
|
async setCustomOuterCss(css, useWebExtensionApi) {
|
2020-06-25 01:46:13 +00:00
|
|
|
let parentNode = null;
|
2020-11-29 17:00:41 +00:00
|
|
|
const inShadow = (this._shadow !== null);
|
|
|
|
if (inShadow) {
|
2020-06-25 01:46:13 +00:00
|
|
|
useWebExtensionApi = false;
|
|
|
|
parentNode = this._shadow;
|
|
|
|
}
|
2020-11-23 20:23:47 +00:00
|
|
|
const node = await dynamicLoader.loadStyle('yomichan-popup-outer-user-stylesheet', 'code', css, useWebExtensionApi, parentNode);
|
2020-11-29 17:00:41 +00:00
|
|
|
this.trigger('customOuterCssChanged', {node, useWebExtensionApi, inShadow});
|
2019-12-16 02:25:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Gets the rectangle of the DOM frame, synchronously.
|
2022-05-17 01:45:22 +00:00
|
|
|
* @returns {ValidRect} The rect.
|
2021-11-01 01:45:57 +00:00
|
|
|
* `valid` is `false` for `PopupProxy`, since the DOM node is hosted in a different frame.
|
|
|
|
*/
|
2020-05-08 23:10:06 +00:00
|
|
|
getFrameRect() {
|
2022-05-17 01:45:22 +00:00
|
|
|
const {left, top, right, bottom} = this._frame.getBoundingClientRect();
|
|
|
|
return {left, top, right, bottom, valid: true};
|
2019-12-16 02:09:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Gets the size of the DOM frame.
|
|
|
|
* @returns {Promise<{width: number, height: number, valid: boolean}>} The size and whether or not it is valid.
|
|
|
|
*/
|
2020-12-09 01:31:02 +00:00
|
|
|
async getFrameSize() {
|
2021-10-01 01:05:34 +00:00
|
|
|
const {width, height} = this._frame.getBoundingClientRect();
|
|
|
|
return {width, height, valid: true};
|
2020-12-09 01:31:02 +00:00
|
|
|
}
|
|
|
|
|
2021-11-01 01:45:57 +00:00
|
|
|
/**
|
|
|
|
* Sets the size of the DOM frame.
|
|
|
|
* @param {number} width The desired width of the popup.
|
|
|
|
* @param {number} height The desired height of the popup.
|
|
|
|
* @returns {Promise<boolean>} `true` if the size assignment was successful, `false` otherwise.
|
|
|
|
*/
|
2020-12-09 01:31:02 +00:00
|
|
|
async setFrameSize(width, height) {
|
|
|
|
this._setFrameSize(width, height);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-16 01:54:20 +00:00
|
|
|
// Private functions
|
|
|
|
|
2020-09-08 23:40:15 +00:00
|
|
|
_onFrameMouseOver() {
|
|
|
|
this.trigger('framePointerOver', {});
|
|
|
|
}
|
|
|
|
|
|
|
|
_onFrameMouseOut() {
|
|
|
|
this.trigger('framePointerOut', {});
|
|
|
|
}
|
|
|
|
|
2019-12-16 01:54:20 +00:00
|
|
|
_inject() {
|
2020-05-02 16:59:13 +00:00
|
|
|
let injectPromise = this._injectPromise;
|
|
|
|
if (injectPromise === null) {
|
2021-05-23 16:29:54 +00:00
|
|
|
injectPromise = this._injectInner1();
|
2020-05-02 16:59:13 +00:00
|
|
|
this._injectPromise = injectPromise;
|
|
|
|
injectPromise.then(
|
|
|
|
() => {
|
|
|
|
if (injectPromise !== this._injectPromise) { return; }
|
|
|
|
this._injectPromiseComplete = true;
|
|
|
|
},
|
2021-05-23 16:29:54 +00:00
|
|
|
() => {}
|
2020-05-02 16:59:13 +00:00
|
|
|
);
|
2019-08-19 00:51:19 +00:00
|
|
|
}
|
2020-05-02 16:59:13 +00:00
|
|
|
return injectPromise;
|
2019-08-19 00:51:19 +00:00
|
|
|
}
|
|
|
|
|
2021-05-23 16:29:54 +00:00
|
|
|
async _injectInner1() {
|
|
|
|
try {
|
|
|
|
await this._injectInner2();
|
|
|
|
return true;
|
|
|
|
} catch (e) {
|
|
|
|
this._resetFrame();
|
|
|
|
if (e.source === this) { return false; } // Passive error
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async _injectInner2() {
|
2022-04-03 21:09:51 +00:00
|
|
|
if (!this._optionsAssigned) {
|
2020-06-22 23:26:59 +00:00
|
|
|
throw new Error('Options not initialized');
|
|
|
|
}
|
|
|
|
|
2022-04-03 21:09:51 +00:00
|
|
|
const useSecurePopupFrameUrl = this._useSecureFrameUrl;
|
2020-06-22 23:26:59 +00:00
|
|
|
|
2022-04-03 21:09:51 +00:00
|
|
|
await this._setUpContainer(this._useShadowDom);
|
2020-05-06 23:27:21 +00:00
|
|
|
|
2020-07-08 23:58:06 +00:00
|
|
|
const setupFrame = (frame) => {
|
2020-05-06 23:27:21 +00:00
|
|
|
frame.removeAttribute('src');
|
|
|
|
frame.removeAttribute('srcdoc');
|
|
|
|
this._observeFullscreen(true);
|
|
|
|
this._onFullscreenChanged();
|
2021-05-23 16:29:54 +00:00
|
|
|
const {contentDocument} = frame;
|
|
|
|
if (contentDocument === null) {
|
|
|
|
// This can occur when running inside a sandboxed frame without "allow-same-origin"
|
|
|
|
const error = new Error('Popup not supoprted in this context');
|
|
|
|
error.source = this; // Used to detect a passive error which should be ignored
|
|
|
|
throw error;
|
|
|
|
}
|
2021-02-13 04:23:26 +00:00
|
|
|
const url = chrome.runtime.getURL('/popup.html');
|
2020-06-22 23:26:59 +00:00
|
|
|
if (useSecurePopupFrameUrl) {
|
2021-05-23 16:29:54 +00:00
|
|
|
contentDocument.location.href = url;
|
2020-06-22 23:26:59 +00:00
|
|
|
} else {
|
|
|
|
frame.setAttribute('src', url);
|
2020-06-21 19:52:43 +00:00
|
|
|
}
|
2020-07-08 23:58:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const frameClient = new FrameClient();
|
|
|
|
this._frameClient = frameClient;
|
|
|
|
await frameClient.connect(this._frame, this._targetOrigin, this._frameId, setupFrame);
|
2020-02-17 16:02:21 +00:00
|
|
|
|
2020-05-06 23:27:21 +00:00
|
|
|
// Configure
|
2021-11-21 20:54:58 +00:00
|
|
|
await this._invokeSafe('Display.configure', {
|
2020-11-22 16:19:21 +00:00
|
|
|
depth: this._depth,
|
|
|
|
parentPopupId: this._id,
|
|
|
|
parentFrameId: this._frameId,
|
2020-05-06 23:27:21 +00:00
|
|
|
childrenSupported: this._childrenSupported,
|
2020-11-22 16:19:21 +00:00
|
|
|
scale: this._contentScale,
|
|
|
|
optionsContext: this._optionsContext
|
2019-08-19 00:51:19 +00:00
|
|
|
});
|
2016-04-23 03:48:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:59:13 +00:00
|
|
|
_onFrameLoad() {
|
|
|
|
if (!this._injectPromiseComplete) { return; }
|
|
|
|
this._resetFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
_resetFrame() {
|
2020-06-25 01:46:13 +00:00
|
|
|
const parent = this._container.parentNode;
|
2020-05-02 16:59:13 +00:00
|
|
|
if (parent !== null) {
|
2020-06-25 01:46:13 +00:00
|
|
|
parent.removeChild(this._container);
|
2020-05-02 16:59:13 +00:00
|
|
|
}
|
2020-05-08 23:10:06 +00:00
|
|
|
this._frame.removeAttribute('src');
|
|
|
|
this._frame.removeAttribute('srcdoc');
|
2020-05-02 16:59:13 +00:00
|
|
|
|
2020-07-08 23:58:06 +00:00
|
|
|
this._frameClient = null;
|
2020-05-02 16:59:13 +00:00
|
|
|
this._injectPromise = null;
|
|
|
|
this._injectPromiseComplete = false;
|
|
|
|
}
|
|
|
|
|
2020-06-25 01:46:13 +00:00
|
|
|
async _setUpContainer(usePopupShadowDom) {
|
|
|
|
if (usePopupShadowDom && typeof this._frame.attachShadow === 'function') {
|
|
|
|
const container = document.createElement('div');
|
|
|
|
container.style.setProperty('all', 'initial', 'important');
|
|
|
|
const shadow = container.attachShadow({mode: 'closed', delegatesFocus: true});
|
|
|
|
shadow.appendChild(this._frame);
|
|
|
|
|
|
|
|
this._container = container;
|
|
|
|
this._shadow = shadow;
|
|
|
|
} else {
|
|
|
|
const frameParentNode = this._frame.parentNode;
|
|
|
|
if (frameParentNode !== null) {
|
|
|
|
frameParentNode.removeChild(this._frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._container = this._frame;
|
|
|
|
this._shadow = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
await this._injectStyles();
|
|
|
|
}
|
|
|
|
|
2020-02-17 02:49:28 +00:00
|
|
|
async _injectStyles() {
|
|
|
|
try {
|
2020-06-25 01:46:13 +00:00
|
|
|
await this._injectPopupOuterStylesheet();
|
2020-02-17 02:49:28 +00:00
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2022-04-03 21:09:51 +00:00
|
|
|
await this.setCustomOuterCss(this._customOuterCss, true);
|
2020-02-17 02:49:28 +00:00
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 01:46:13 +00:00
|
|
|
async _injectPopupOuterStylesheet() {
|
|
|
|
let fileType = 'file';
|
|
|
|
let useWebExtensionApi = true;
|
|
|
|
let parentNode = null;
|
|
|
|
if (this._shadow !== null) {
|
|
|
|
fileType = 'file-content';
|
|
|
|
useWebExtensionApi = false;
|
|
|
|
parentNode = this._shadow;
|
|
|
|
}
|
2021-02-13 02:03:30 +00:00
|
|
|
await dynamicLoader.loadStyle('yomichan-popup-outer-stylesheet', fileType, '/css/popup-outer.css', useWebExtensionApi, parentNode);
|
2020-06-25 01:46:13 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 23:52:04 +00:00
|
|
|
_observeFullscreen(observe) {
|
|
|
|
if (!observe) {
|
|
|
|
this._fullscreenEventListeners.removeAllEventListeners();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._fullscreenEventListeners.size > 0) {
|
|
|
|
// Already observing
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-10 01:07:11 +00:00
|
|
|
DocumentUtil.addFullscreenChangeEventListener(this._onFullscreenChanged.bind(this), this._fullscreenEventListeners);
|
2020-02-16 23:52:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_onFullscreenChanged() {
|
2020-05-02 16:58:24 +00:00
|
|
|
const parent = this._getFrameParentElement();
|
2020-06-25 01:46:13 +00:00
|
|
|
if (parent !== null && this._container.parentNode !== parent) {
|
|
|
|
parent.appendChild(this._container);
|
2020-02-16 23:52:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
async _show(sourceRects, writingMode) {
|
2021-05-23 16:29:54 +00:00
|
|
|
const injected = await this._inject();
|
|
|
|
if (!injected) { return; }
|
2017-08-13 23:42:22 +00:00
|
|
|
|
2022-04-03 21:09:51 +00:00
|
|
|
const viewport = this._getViewport(this._scaleRelativeToVisualViewport);
|
2022-05-17 01:45:22 +00:00
|
|
|
let {left, top, width, height, after, below} = this._getPosition(sourceRects, writingMode, viewport);
|
2020-01-11 19:45:40 +00:00
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
if (this._displayModeIsFullWidth) {
|
|
|
|
left = viewport.left;
|
|
|
|
top = below ? viewport.bottom - height : viewport.top;
|
2020-01-11 19:45:40 +00:00
|
|
|
width = viewport.right - viewport.left;
|
|
|
|
}
|
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
const frame = this._frame;
|
|
|
|
frame.dataset.popupDisplayMode = this._displayMode;
|
|
|
|
frame.dataset.after = `${after}`;
|
|
|
|
frame.dataset.below = `${below}`;
|
|
|
|
frame.style.left = `${left}px`;
|
|
|
|
frame.style.top = `${top}px`;
|
2020-12-09 01:31:02 +00:00
|
|
|
this._setFrameSize(width, height);
|
2019-08-17 22:50:48 +00:00
|
|
|
|
2019-12-16 01:54:20 +00:00
|
|
|
this._setVisible(true);
|
2019-12-16 02:43:47 +00:00
|
|
|
if (this._child !== null) {
|
|
|
|
this._child.hide(true);
|
2019-10-06 01:57:13 +00:00
|
|
|
}
|
2019-08-31 15:51:31 +00:00
|
|
|
}
|
2016-04-23 03:48:00 +00:00
|
|
|
|
2020-12-09 01:31:02 +00:00
|
|
|
_setFrameSize(width, height) {
|
|
|
|
const {style} = this._frame;
|
|
|
|
style.width = `${width}px`;
|
|
|
|
style.height = `${height}px`;
|
|
|
|
}
|
|
|
|
|
2019-12-16 01:54:20 +00:00
|
|
|
_setVisible(visible) {
|
2020-08-23 19:18:41 +00:00
|
|
|
this._visible.defaultValue = visible;
|
2016-09-30 04:04:03 +00:00
|
|
|
}
|
|
|
|
|
2020-08-23 19:18:41 +00:00
|
|
|
_onVisibleChange({value}) {
|
2021-08-02 23:25:10 +00:00
|
|
|
if (this._visibleValue === value) { return; }
|
|
|
|
this._visibleValue = value;
|
2020-08-23 19:18:41 +00:00
|
|
|
this._frame.style.setProperty('visibility', value ? 'visible' : 'hidden', 'important');
|
2021-11-21 20:54:58 +00:00
|
|
|
this._invokeSafe('Display.visibilityChanged', {value});
|
2019-08-31 13:11:35 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 01:54:20 +00:00
|
|
|
_focusParent() {
|
2019-12-16 02:43:47 +00:00
|
|
|
if (this._parent !== null) {
|
2019-09-01 19:34:37 +00:00
|
|
|
// Chrome doesn't like focusing iframe without contentWindow.
|
2020-08-15 21:27:03 +00:00
|
|
|
const contentWindow = this._parent.frameContentWindow;
|
2019-09-14 16:02:31 +00:00
|
|
|
if (contentWindow !== null) {
|
|
|
|
contentWindow.focus();
|
|
|
|
}
|
2019-09-01 19:34:37 +00:00
|
|
|
} else {
|
|
|
|
// Firefox doesn't like focusing window without first blurring the iframe.
|
2020-05-08 23:10:06 +00:00
|
|
|
// this._frame.contentWindow.blur() doesn't work on Firefox for some reason.
|
|
|
|
this._frame.blur();
|
2019-09-01 19:34:37 +00:00
|
|
|
// This is needed for Chrome.
|
|
|
|
window.focus();
|
2019-08-31 13:11:35 +00:00
|
|
|
}
|
2019-08-15 23:39:58 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 01:51:51 +00:00
|
|
|
async _invoke(action, params={}) {
|
2020-05-08 23:10:06 +00:00
|
|
|
const contentWindow = this._frame.contentWindow;
|
2020-07-08 23:58:06 +00:00
|
|
|
if (this._frameClient === null || !this._frameClient.isConnected() || contentWindow === null) { return; }
|
2020-02-17 16:02:21 +00:00
|
|
|
|
2020-07-08 23:58:06 +00:00
|
|
|
const message = this._frameClient.createMessage({action, params});
|
2021-02-14 20:53:35 +00:00
|
|
|
return await yomichan.crossFrame.invoke(this._frameClient.frameId, 'popupMessage', message);
|
2016-05-06 03:06:13 +00:00
|
|
|
}
|
2019-06-23 03:01:49 +00:00
|
|
|
|
2020-08-03 01:51:51 +00:00
|
|
|
async _invokeSafe(action, params={}, defaultReturnValue) {
|
|
|
|
try {
|
|
|
|
return await this._invoke(action, params);
|
|
|
|
} catch (e) {
|
|
|
|
if (!yomichan.isExtensionUnloaded) { throw e; }
|
|
|
|
return defaultReturnValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_invokeWindow(action, params={}) {
|
2020-07-18 18:15:36 +00:00
|
|
|
const contentWindow = this._frame.contentWindow;
|
|
|
|
if (this._frameClient === null || !this._frameClient.isConnected() || contentWindow === null) { return; }
|
|
|
|
|
|
|
|
const message = this._frameClient.createMessage({action, params});
|
|
|
|
contentWindow.postMessage(message, this._targetOrigin);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onExtensionUnloaded() {
|
2021-11-21 20:54:58 +00:00
|
|
|
this._invokeWindow('Display.extensionUnloaded');
|
2020-07-18 18:15:36 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:58:24 +00:00
|
|
|
_getFrameParentElement() {
|
2021-06-24 23:18:33 +00:00
|
|
|
let defaultParent = document.body;
|
|
|
|
if (defaultParent !== null && defaultParent.tagName.toLowerCase() === 'frameset') {
|
|
|
|
defaultParent = document.documentElement;
|
|
|
|
}
|
2020-08-10 01:07:11 +00:00
|
|
|
const fullscreenElement = DocumentUtil.getFullscreenElement();
|
2020-05-10 18:10:02 +00:00
|
|
|
if (
|
|
|
|
fullscreenElement === null ||
|
|
|
|
fullscreenElement.shadowRoot ||
|
|
|
|
fullscreenElement.openOrClosedShadowRoot // Available to Firefox 63+ for WebExtensions
|
|
|
|
) {
|
2020-05-02 16:58:24 +00:00
|
|
|
return defaultParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (fullscreenElement.nodeName.toUpperCase()) {
|
|
|
|
case 'IFRAME':
|
|
|
|
case 'FRAME':
|
|
|
|
return defaultParent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fullscreenElement;
|
|
|
|
}
|
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
/**
|
2022-05-20 14:28:38 +00:00
|
|
|
* Computes the position where the popup should be placed relative to the source content.
|
|
|
|
* @param {Rect[]} sourceRects The rectangles of the source content.
|
|
|
|
* @param {string} writingMode The CSS writing mode of the source text.
|
|
|
|
* @param {Rect} viewport The viewport that the popup can be placed within.
|
|
|
|
* @returns {SizeRect} The calculated rectangle for where to position the popup.
|
2022-05-17 01:45:22 +00:00
|
|
|
*/
|
|
|
|
_getPosition(sourceRects, writingMode, viewport) {
|
|
|
|
const scale = this._contentScale;
|
|
|
|
const scaleRatio = this._frameSizeContentScale === null ? 1.0 : scale / this._frameSizeContentScale;
|
|
|
|
this._frameSizeContentScale = scale;
|
|
|
|
const frameRect = this._frame.getBoundingClientRect();
|
|
|
|
const frameWidth = Math.max(frameRect.width * scaleRatio, this._initialWidth * scale);
|
|
|
|
const frameHeight = Math.max(frameRect.height * scaleRatio, this._initialHeight * scale);
|
|
|
|
|
|
|
|
const horizontal = (writingMode === 'horizontal-tb' || this._verticalTextPosition === 'default');
|
|
|
|
let preferAfter;
|
|
|
|
let horizontalOffset;
|
|
|
|
let verticalOffset;
|
|
|
|
if (horizontal) {
|
|
|
|
preferAfter = this._horizontalTextPositionBelow;
|
|
|
|
horizontalOffset = this._horizontalOffset;
|
|
|
|
verticalOffset = this._verticalOffset;
|
|
|
|
} else {
|
|
|
|
preferAfter = this._isVerticalTextPopupOnRight(this._verticalTextPosition, writingMode);
|
|
|
|
horizontalOffset = this._horizontalOffset2;
|
|
|
|
verticalOffset = this._verticalOffset2;
|
|
|
|
}
|
|
|
|
horizontalOffset *= scale;
|
|
|
|
verticalOffset *= scale;
|
|
|
|
|
|
|
|
let best = null;
|
|
|
|
const sourceRectsLength = sourceRects.length;
|
|
|
|
for (let i = 0, ii = (sourceRectsLength > 1 ? sourceRectsLength : 0); i <= ii; ++i) {
|
|
|
|
const sourceRect = i < sourceRectsLength ? sourceRects[i] : this._getBoundingSourceRect(sourceRects);
|
|
|
|
const result = (
|
|
|
|
horizontal ?
|
|
|
|
this._getPositionForHorizontalText(sourceRect, frameWidth, frameHeight, viewport, horizontalOffset, verticalOffset, preferAfter) :
|
|
|
|
this._getPositionForVerticalText(sourceRect, frameWidth, frameHeight, viewport, horizontalOffset, verticalOffset, preferAfter)
|
|
|
|
);
|
|
|
|
if (i < ii && this._isOverlapping(result, sourceRects, i)) { continue; }
|
|
|
|
if (best === null || result.height > best.height) {
|
|
|
|
best = result;
|
|
|
|
if (result.height >= frameHeight) { break; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return best;
|
|
|
|
}
|
2020-01-11 19:21:10 +00:00
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
/**
|
2022-05-20 14:28:38 +00:00
|
|
|
* Computes the position where the popup should be placed for horizontal text.
|
|
|
|
* @param {Rect} sourceRect The rectangle of the source content.
|
|
|
|
* @param {number} frameWidth The preferred width of the frame.
|
|
|
|
* @param {number} frameHeight The preferred height of the frame.
|
|
|
|
* @param {Rect} viewport The viewport that the frame can be placed within.
|
|
|
|
* @param {number} horizontalOffset The horizontal offset from the source rect that the popup will be placed.
|
|
|
|
* @param {number} verticalOffset The vertical offset from the source rect that the popup will be placed.
|
|
|
|
* @param {boolean} preferBelow Whether or not the popup is preferred to be placed below the source content.
|
|
|
|
* @returns {SizeRect} The calculated rectangle for where to position the popup.
|
2022-05-17 01:45:22 +00:00
|
|
|
*/
|
|
|
|
_getPositionForHorizontalText(sourceRect, frameWidth, frameHeight, viewport, horizontalOffset, verticalOffset, preferBelow) {
|
|
|
|
const [left, width, after] = this._getConstrainedPosition(
|
|
|
|
sourceRect.right - horizontalOffset,
|
|
|
|
sourceRect.left + horizontalOffset,
|
|
|
|
frameWidth,
|
2020-01-11 19:21:10 +00:00
|
|
|
viewport.left,
|
|
|
|
viewport.right,
|
|
|
|
true
|
|
|
|
);
|
2022-05-17 01:45:22 +00:00
|
|
|
const [top, height, below] = this._getConstrainedPositionBinary(
|
|
|
|
sourceRect.top - verticalOffset,
|
|
|
|
sourceRect.bottom + verticalOffset,
|
|
|
|
frameHeight,
|
2020-01-11 19:21:10 +00:00
|
|
|
viewport.top,
|
|
|
|
viewport.bottom,
|
2019-12-15 22:23:27 +00:00
|
|
|
preferBelow
|
|
|
|
);
|
2022-05-17 01:45:22 +00:00
|
|
|
return {left, top, width, height, after, below};
|
2019-12-15 22:23:27 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 01:45:22 +00:00
|
|
|
/**
|
2022-05-20 14:28:38 +00:00
|
|
|
* Computes the position where the popup should be placed for vertical text.
|
|
|
|
* @param {Rect} sourceRect The rectangle of the source content.
|
|
|
|
* @param {number} frameWidth The preferred width of the frame.
|
|
|
|
* @param {number} frameHeight The preferred height of the frame.
|
|
|
|
* @param {Rect} viewport The viewport that the frame can be placed within.
|
|
|
|
* @param {number} horizontalOffset The horizontal offset from the source rect that the popup will be placed.
|
|
|
|
* @param {number} verticalOffset The vertical offset from the source rect that the popup will be placed.
|
|
|
|
* @param {boolean} preferRight Whether or not the popup is preferred to be placed to the right of the source content.
|
|
|
|
* @returns {SizeRect} The calculated rectangle for where to position the popup.
|
2022-05-17 01:45:22 +00:00
|
|
|
*/
|
|
|
|
_getPositionForVerticalText(sourceRect, frameWidth, frameHeight, viewport, horizontalOffset, verticalOffset, preferRight) {
|
|
|
|
const [left, width, after] = this._getConstrainedPositionBinary(
|
|
|
|
sourceRect.left - horizontalOffset,
|
|
|
|
sourceRect.right + horizontalOffset,
|
|
|
|
frameWidth,
|
2020-01-11 19:21:10 +00:00
|
|
|
viewport.left,
|
|
|
|
viewport.right,
|
2019-12-15 22:23:27 +00:00
|
|
|
preferRight
|
|
|
|
);
|
2022-05-17 01:45:22 +00:00
|
|
|
const [top, height, below] = this._getConstrainedPosition(
|
|
|
|
sourceRect.bottom - verticalOffset,
|
|
|
|
sourceRect.top + verticalOffset,
|
|
|
|
frameHeight,
|
2020-01-11 19:21:10 +00:00
|
|
|
viewport.top,
|
|
|
|
viewport.bottom,
|
2019-12-15 22:23:27 +00:00
|
|
|
true
|
|
|
|
);
|
2022-05-17 01:45:22 +00:00
|
|
|
return {left, top, width, height, after, below};
|
2019-12-15 22:23:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 23:10:06 +00:00
|
|
|
_isVerticalTextPopupOnRight(positionPreference, writingMode) {
|
2019-12-15 22:23:27 +00:00
|
|
|
switch (positionPreference) {
|
|
|
|
case 'before':
|
2020-05-08 23:10:06 +00:00
|
|
|
return !this._isWritingModeLeftToRight(writingMode);
|
2019-12-15 22:23:27 +00:00
|
|
|
case 'after':
|
2020-05-08 23:10:06 +00:00
|
|
|
return this._isWritingModeLeftToRight(writingMode);
|
2019-12-15 22:23:27 +00:00
|
|
|
case 'right':
|
|
|
|
return true;
|
2022-05-17 01:45:22 +00:00
|
|
|
// case 'left':
|
2020-05-08 23:10:06 +00:00
|
|
|
default:
|
|
|
|
return false;
|
2019-12-15 22:23:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 23:10:06 +00:00
|
|
|
_isWritingModeLeftToRight(writingMode) {
|
2019-12-15 22:23:27 +00:00
|
|
|
switch (writingMode) {
|
|
|
|
case 'vertical-lr':
|
|
|
|
case 'sideways-lr':
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 23:10:06 +00:00
|
|
|
_getConstrainedPosition(positionBefore, positionAfter, size, minLimit, maxLimit, after) {
|
2020-01-11 19:21:10 +00:00
|
|
|
size = Math.min(size, maxLimit - minLimit);
|
|
|
|
|
|
|
|
let position;
|
|
|
|
if (after) {
|
|
|
|
position = Math.max(minLimit, positionAfter);
|
|
|
|
position = position - Math.max(0, (position + size) - maxLimit);
|
|
|
|
} else {
|
|
|
|
position = Math.min(maxLimit, positionBefore) - size;
|
|
|
|
position = position + Math.max(0, minLimit - position);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [position, size, after];
|
|
|
|
}
|
|
|
|
|
2020-05-08 23:10:06 +00:00
|
|
|
_getConstrainedPositionBinary(positionBefore, positionAfter, size, minLimit, maxLimit, after) {
|
2020-01-11 19:21:10 +00:00
|
|
|
const overflowBefore = minLimit - (positionBefore - size);
|
|
|
|
const overflowAfter = (positionAfter + size) - maxLimit;
|
|
|
|
|
2019-12-15 22:23:27 +00:00
|
|
|
if (overflowAfter > 0 || overflowBefore > 0) {
|
2020-01-11 19:21:10 +00:00
|
|
|
after = (overflowAfter < overflowBefore);
|
|
|
|
}
|
|
|
|
|
|
|
|
let position;
|
|
|
|
if (after) {
|
|
|
|
size -= Math.max(0, overflowAfter);
|
|
|
|
position = Math.max(minLimit, positionAfter);
|
2019-12-15 22:23:27 +00:00
|
|
|
} else {
|
2020-01-11 19:21:10 +00:00
|
|
|
size -= Math.max(0, overflowBefore);
|
|
|
|
position = Math.min(maxLimit, positionBefore) - size;
|
2019-12-15 22:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return [position, size, after];
|
|
|
|
}
|
|
|
|
|
2022-05-20 14:28:38 +00:00
|
|
|
/**
|
|
|
|
* Gets the visual viewport.
|
|
|
|
* @param {boolean} useVisualViewport Whether or not the `window.visualViewport` should be used.
|
|
|
|
* @returns {Rect} The rectangle of the visual viewport.
|
|
|
|
*/
|
2020-05-08 23:10:06 +00:00
|
|
|
_getViewport(useVisualViewport) {
|
2020-01-18 18:13:12 +00:00
|
|
|
const visualViewport = window.visualViewport;
|
|
|
|
if (visualViewport !== null && typeof visualViewport === 'object') {
|
|
|
|
const left = visualViewport.offsetLeft;
|
|
|
|
const top = visualViewport.offsetTop;
|
|
|
|
const width = visualViewport.width;
|
|
|
|
const height = visualViewport.height;
|
|
|
|
if (useVisualViewport) {
|
2020-01-11 19:21:10 +00:00
|
|
|
return {
|
|
|
|
left,
|
|
|
|
top,
|
2020-01-18 18:13:12 +00:00
|
|
|
right: left + width,
|
|
|
|
bottom: top + height
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
const scale = visualViewport.scale;
|
|
|
|
return {
|
|
|
|
left: 0,
|
|
|
|
top: 0,
|
|
|
|
right: Math.max(left + width, width * scale),
|
|
|
|
bottom: Math.max(top + height, height * scale)
|
2020-01-11 19:21:10 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
left: 0,
|
|
|
|
top: 0,
|
2021-04-09 22:17:02 +00:00
|
|
|
right: window.innerWidth,
|
2020-01-11 19:21:10 +00:00
|
|
|
bottom: window.innerHeight
|
|
|
|
};
|
|
|
|
}
|
2020-11-13 01:32:46 +00:00
|
|
|
|
2020-11-14 00:51:51 +00:00
|
|
|
async _setOptionsContext(optionsContext) {
|
|
|
|
this._optionsContext = optionsContext;
|
2022-04-03 21:09:51 +00:00
|
|
|
const options = await yomichan.api.optionsGet(optionsContext);
|
|
|
|
const {general} = options;
|
2022-04-03 20:20:55 +00:00
|
|
|
this._themeController.theme = general.popupTheme;
|
|
|
|
this._themeController.outerTheme = general.popupOuterTheme;
|
2022-04-03 21:09:51 +00:00
|
|
|
this._initialWidth = general.popupWidth;
|
|
|
|
this._initialHeight = general.popupHeight;
|
|
|
|
this._horizontalOffset = general.popupHorizontalOffset;
|
|
|
|
this._verticalOffset = general.popupVerticalOffset;
|
|
|
|
this._horizontalOffset2 = general.popupHorizontalOffset2;
|
|
|
|
this._verticalOffset2 = general.popupVerticalOffset2;
|
|
|
|
this._verticalTextPosition = general.popupVerticalTextPosition;
|
2022-05-18 23:12:24 +00:00
|
|
|
this._horizontalTextPositionBelow = (general.popupHorizontalTextPosition === 'below');
|
2022-04-03 21:09:51 +00:00
|
|
|
this._displayMode = general.popupDisplayMode;
|
2022-05-17 01:45:22 +00:00
|
|
|
this._displayModeIsFullWidth = (this._displayMode === 'full-width');
|
2022-04-03 21:09:51 +00:00
|
|
|
this._scaleRelativeToVisualViewport = general.popupScaleRelativeToVisualViewport;
|
|
|
|
this._useSecureFrameUrl = general.useSecurePopupFrameUrl;
|
|
|
|
this._useShadowDom = general.usePopupShadowDom;
|
|
|
|
this._customOuterCss = general.customPopupOuterCss;
|
|
|
|
this._optionsAssigned = true;
|
2020-11-14 00:51:51 +00:00
|
|
|
this.updateTheme();
|
|
|
|
}
|
|
|
|
|
2020-11-13 01:32:46 +00:00
|
|
|
async _setOptionsContextIfDifferent(optionsContext) {
|
|
|
|
if (deepEqual(this._optionsContext, optionsContext)) { return; }
|
2020-11-14 00:51:51 +00:00
|
|
|
await this._setOptionsContext(optionsContext);
|
2020-11-13 01:32:46 +00:00
|
|
|
}
|
2022-05-17 01:45:22 +00:00
|
|
|
|
|
|
|
/**
|
2022-05-20 14:28:38 +00:00
|
|
|
* Computes the bounding rectangle for a set of rectangles.
|
|
|
|
* @param {Rect[]} sourceRects An array of rectangles.
|
|
|
|
* @returns {Rect} The bounding rectangle for all of the source rectangles.
|
2022-05-17 01:45:22 +00:00
|
|
|
*/
|
|
|
|
_getBoundingSourceRect(sourceRects) {
|
|
|
|
switch (sourceRects.length) {
|
|
|
|
case 0: return {left: 0, top: 0, right: 0, bottom: 0};
|
|
|
|
case 1: return sourceRects[0];
|
|
|
|
}
|
|
|
|
let {left, top, right, bottom} = sourceRects[0];
|
|
|
|
for (let i = 1, ii = sourceRects.length; i < ii; ++i) {
|
|
|
|
const sourceRect = sourceRects[i];
|
|
|
|
left = Math.min(left, sourceRect.left);
|
|
|
|
top = Math.min(top, sourceRect.top);
|
|
|
|
right = Math.max(right, sourceRect.right);
|
|
|
|
bottom = Math.max(bottom, sourceRect.bottom);
|
|
|
|
}
|
|
|
|
return {left, top, right, bottom};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-05-20 14:28:38 +00:00
|
|
|
* Checks whether or not a rectangle is overlapping any other rectangles.
|
|
|
|
* @param {SizeRect} sizeRect The rectangles to check for overlaps.
|
|
|
|
* @param {Rect[]} sourceRects The list of rectangles to compare against.
|
|
|
|
* @param {number} ignoreIndex The index of an item in `sourceRects` to ignore.
|
|
|
|
* @returns {boolean} `true` if `sizeRect` overlaps any one of `sourceRects`, excluding `sourceRects[ignoreIndex]`; `false` otherwise.
|
2022-05-17 01:45:22 +00:00
|
|
|
*/
|
|
|
|
_isOverlapping(sizeRect, sourceRects, ignoreIndex) {
|
|
|
|
const {left, top} = sizeRect;
|
|
|
|
const right = left + sizeRect.width;
|
|
|
|
const bottom = top + sizeRect.height;
|
|
|
|
for (let i = 0, ii = sourceRects.length; i < ii; ++i) {
|
|
|
|
if (i === ignoreIndex) { continue; }
|
|
|
|
const sourceRect = sourceRects[i];
|
|
|
|
if (
|
|
|
|
left < sourceRect.right &&
|
|
|
|
right > sourceRect.left &&
|
|
|
|
top < sourceRect.bottom &&
|
|
|
|
bottom > sourceRect.top
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-21 05:28:26 +00:00
|
|
|
}
|