mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-02-27 18:22:41 -08:00
feat(assets): bundle runtime assets and vendor dependencies
This commit is contained in:
124
vendor/yomitan/js/accessibility/accessibility-controller.js
vendored
Normal file
124
vendor/yomitan/js/accessibility/accessibility-controller.js
vendored
Normal file
@@ -0,0 +1,124 @@
|
||||
/*
|
||||
* Copyright (C) 2023-2025 Yomitan Authors
|
||||
* Copyright (C) 2021-2022 Yomichan Authors
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
import {isContentScriptRegistered, registerContentScript, unregisterContentScript} from '../background/script-manager.js';
|
||||
import {log} from '../core/log.js';
|
||||
|
||||
/**
|
||||
* This class controls the registration of accessibility handlers.
|
||||
*/
|
||||
export class AccessibilityController {
|
||||
constructor() {
|
||||
/** @type {?import('core').TokenObject} */
|
||||
this._updateGoogleDocsAccessibilityToken = null;
|
||||
/** @type {?Promise<void>} */
|
||||
this._updateGoogleDocsAccessibilityPromise = null;
|
||||
/** @type {boolean} */
|
||||
this._forceGoogleDocsHtmlRenderingAny = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the accessibility handlers.
|
||||
* @param {import('settings').Options} fullOptions The full options object from the `Backend` instance.
|
||||
* The value is treated as read-only and is not modified.
|
||||
*/
|
||||
async update(fullOptions) {
|
||||
let forceGoogleDocsHtmlRenderingAny = false;
|
||||
for (const {options} of fullOptions.profiles) {
|
||||
if (options.accessibility.forceGoogleDocsHtmlRendering) {
|
||||
forceGoogleDocsHtmlRenderingAny = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
await this._updateGoogleDocsAccessibility(forceGoogleDocsHtmlRenderingAny);
|
||||
}
|
||||
|
||||
// Private
|
||||
|
||||
/**
|
||||
* @param {boolean} forceGoogleDocsHtmlRenderingAny
|
||||
*/
|
||||
async _updateGoogleDocsAccessibility(forceGoogleDocsHtmlRenderingAny) {
|
||||
// Reentrant token
|
||||
/** @type {?import('core').TokenObject} */
|
||||
const token = {};
|
||||
this._updateGoogleDocsAccessibilityToken = token;
|
||||
|
||||
// Wait for previous
|
||||
let promise = this._updateGoogleDocsAccessibilityPromise;
|
||||
if (promise !== null) { await promise; }
|
||||
|
||||
// Reentrant check
|
||||
if (this._updateGoogleDocsAccessibilityToken !== token) { return; }
|
||||
|
||||
// Update
|
||||
promise = this._updateGoogleDocsAccessibilityInner(forceGoogleDocsHtmlRenderingAny);
|
||||
this._updateGoogleDocsAccessibilityPromise = promise;
|
||||
await promise;
|
||||
this._updateGoogleDocsAccessibilityPromise = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {boolean} forceGoogleDocsHtmlRenderingAny
|
||||
*/
|
||||
async _updateGoogleDocsAccessibilityInner(forceGoogleDocsHtmlRenderingAny) {
|
||||
if (this._forceGoogleDocsHtmlRenderingAny === forceGoogleDocsHtmlRenderingAny) { return; }
|
||||
|
||||
this._forceGoogleDocsHtmlRenderingAny = forceGoogleDocsHtmlRenderingAny;
|
||||
|
||||
const id = 'googleDocsAccessibility';
|
||||
try {
|
||||
if (forceGoogleDocsHtmlRenderingAny) {
|
||||
if (await isContentScriptRegistered(id)) { return; }
|
||||
try {
|
||||
await this._registerGoogleDocsContentScript(id, false);
|
||||
} catch (e) {
|
||||
// Firefox doesn't support `world` field and will throw an error.
|
||||
// In this case, use the xray vision version.
|
||||
await this._registerGoogleDocsContentScript(id, true);
|
||||
}
|
||||
} else {
|
||||
await unregisterContentScript(id);
|
||||
}
|
||||
} catch (e) {
|
||||
log.error(e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} id
|
||||
* @param {boolean} xray
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
_registerGoogleDocsContentScript(id, xray) {
|
||||
/** @type {import('script-manager').RegistrationDetails} */
|
||||
const details = {
|
||||
allFrames: true,
|
||||
matches: ['*://docs.google.com/*'],
|
||||
runAt: 'document_start',
|
||||
js: [
|
||||
xray ?
|
||||
'js/accessibility/google-docs-xray.js' :
|
||||
'js/accessibility/google-docs.js',
|
||||
],
|
||||
};
|
||||
if (!xray) { details.world = 'MAIN'; }
|
||||
return registerContentScript(id, details);
|
||||
}
|
||||
}
|
||||
159
vendor/yomitan/js/accessibility/google-docs-util.js
vendored
Normal file
159
vendor/yomitan/js/accessibility/google-docs-util.js
vendored
Normal file
@@ -0,0 +1,159 @@
|
||||
/*
|
||||
* Copyright (C) 2023-2025 Yomitan Authors
|
||||
* Copyright (C) 2022 Yomichan Authors
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
import {computeZoomScale, isPointInAnyRect} from '../dom/document-util.js';
|
||||
import {TextSourceRange} from '../dom/text-source-range.js';
|
||||
|
||||
/**
|
||||
* This class is a helper for handling Google Docs content in content scripts.
|
||||
*/
|
||||
export class GoogleDocsUtil {
|
||||
constructor() {
|
||||
/** @type {?HTMLStyleElement} */
|
||||
this._styleNode = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Scans the document for text or elements with text information at the given coordinate.
|
||||
* Coordinates are provided in [client space](https://developer.mozilla.org/en-US/docs/Web/CSS/CSSOM_View/Coordinate_systems).
|
||||
* @param {number} x The x coordinate to search at.
|
||||
* @param {number} y The y coordinate to search at.
|
||||
* @param {import('document-util').GetRangeFromPointOptions} options Options to configure how element detection is performed.
|
||||
* @returns {?TextSourceRange} A range for the hovered text or element, or `null` if no applicable content was found.
|
||||
*/
|
||||
getRangeFromPoint(x, y, {normalizeCssZoom}) {
|
||||
const styleNode = this._getStyleNode();
|
||||
styleNode.disabled = false;
|
||||
const element = document.elementFromPoint(x, y);
|
||||
styleNode.disabled = true;
|
||||
if (element !== null && element.matches('.kix-canvas-tile-content svg>g>rect')) {
|
||||
const ariaLabel = element.getAttribute('aria-label');
|
||||
if (typeof ariaLabel === 'string' && ariaLabel.length > 0) {
|
||||
return this._createRange(element, ariaLabel, x, y, normalizeCssZoom);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets this <style> node, or creates one if it doesn't exist.
|
||||
*
|
||||
* A <style> node is necessary to force the SVG <rect> elements to have a fill,
|
||||
* which allows them to be included in document.elementsFromPoint's return value.
|
||||
* @returns {HTMLStyleElement}
|
||||
*/
|
||||
_getStyleNode() {
|
||||
if (this._styleNode === null) {
|
||||
const style = document.createElement('style');
|
||||
style.textContent = [
|
||||
'.kix-canvas-tile-content{pointer-events:none!important;}',
|
||||
'.kix-canvas-tile-content svg>g>rect{pointer-events:all!important;}',
|
||||
].join('\n');
|
||||
const parent = document.head || document.documentElement;
|
||||
if (parent !== null) {
|
||||
parent.appendChild(style);
|
||||
}
|
||||
this._styleNode = style;
|
||||
}
|
||||
return this._styleNode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Element} element
|
||||
* @param {string} text
|
||||
* @param {number} x
|
||||
* @param {number} y
|
||||
* @param {boolean} normalizeCssZoom
|
||||
* @returns {TextSourceRange}
|
||||
*/
|
||||
_createRange(element, text, x, y, normalizeCssZoom) {
|
||||
// Create imposter
|
||||
const content = document.createTextNode(text);
|
||||
const svgText = document.createElementNS('http://www.w3.org/2000/svg', 'text');
|
||||
const transform = element.getAttribute('transform') || '';
|
||||
// Using getAttribute instead of dataset because element is an SVG element
|
||||
// eslint-disable-next-line unicorn/prefer-dom-node-dataset
|
||||
const font = element.getAttribute('data-font-css') || '';
|
||||
const elementX = element.getAttribute('x');
|
||||
const elementY = element.getAttribute('y');
|
||||
if (typeof elementX === 'string') { svgText.setAttribute('x', elementX); }
|
||||
if (typeof elementY === 'string') { svgText.setAttribute('y', elementY); }
|
||||
svgText.appendChild(content);
|
||||
const textStyle = svgText.style;
|
||||
this._setImportantStyle(textStyle, 'all', 'initial');
|
||||
this._setImportantStyle(textStyle, 'transform', transform);
|
||||
this._setImportantStyle(textStyle, 'font', font);
|
||||
this._setImportantStyle(textStyle, 'text-anchor', 'start');
|
||||
const {parentNode} = element;
|
||||
if (parentNode !== null) {
|
||||
parentNode.appendChild(svgText);
|
||||
}
|
||||
|
||||
// Adjust offset
|
||||
const elementRect = element.getBoundingClientRect();
|
||||
const textRect = svgText.getBoundingClientRect();
|
||||
const yOffset = ((elementRect.top - textRect.top) + (elementRect.bottom - textRect.bottom)) * 0.5;
|
||||
this._setImportantStyle(textStyle, 'transform', `translate(0px,${yOffset}px) ${transform}`);
|
||||
|
||||
// Create range
|
||||
const range = this._getRangeWithPoint(content, x, y, normalizeCssZoom);
|
||||
this._setImportantStyle(textStyle, 'pointer-events', 'none');
|
||||
this._setImportantStyle(textStyle, 'opacity', '0');
|
||||
return TextSourceRange.createFromImposter(range, svgText, element);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Text} textNode
|
||||
* @param {number} x
|
||||
* @param {number} y
|
||||
* @param {boolean} normalizeCssZoom
|
||||
* @returns {Range}
|
||||
*/
|
||||
_getRangeWithPoint(textNode, x, y, normalizeCssZoom) {
|
||||
if (normalizeCssZoom) {
|
||||
const scale = computeZoomScale(textNode);
|
||||
x /= scale;
|
||||
y /= scale;
|
||||
}
|
||||
const range = document.createRange();
|
||||
let start = 0;
|
||||
let end = /** @type {string} */ (textNode.nodeValue).length;
|
||||
while (end - start > 1) {
|
||||
const mid = Math.floor((start + end) / 2);
|
||||
range.setStart(textNode, mid);
|
||||
range.setEnd(textNode, end);
|
||||
if (isPointInAnyRect(x, y, range.getClientRects(), null)) {
|
||||
start = mid;
|
||||
} else {
|
||||
end = mid;
|
||||
}
|
||||
}
|
||||
range.setStart(textNode, start);
|
||||
range.setEnd(textNode, start);
|
||||
return range;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {CSSStyleDeclaration} style
|
||||
* @param {string} propertyName
|
||||
* @param {string} value
|
||||
*/
|
||||
_setImportantStyle(style, propertyName, value) {
|
||||
style.setProperty(propertyName, value, 'important');
|
||||
}
|
||||
}
|
||||
30
vendor/yomitan/js/accessibility/google-docs-xray.js
vendored
Normal file
30
vendor/yomitan/js/accessibility/google-docs-xray.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (C) 2023-2025 Yomitan Authors
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
/** Entry point. */
|
||||
function main() {
|
||||
/** @type {unknown} */
|
||||
// @ts-expect-error - Firefox Xray vision
|
||||
const window2 = window.wrappedJSObject;
|
||||
if (!(typeof window2 === 'object' && window2 !== null)) { return; }
|
||||
// The extension ID below is on an allow-list that is used on the Google Docs webpage.
|
||||
// @ts-expect-error - Adding a property to the global object
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
window2._docs_annotate_canvas_by_ext = 'ogmnaimimemjmbakcfefmnahgdfhfami';
|
||||
}
|
||||
|
||||
main();
|
||||
21
vendor/yomitan/js/accessibility/google-docs.js
vendored
Normal file
21
vendor/yomitan/js/accessibility/google-docs.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (C) 2023-2025 Yomitan Authors
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
// The extension ID below is on an allow-list that is used on the Google Docs webpage.
|
||||
// @ts-expect-error - Adding a property to the global object
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
window._docs_annotate_canvas_by_ext = 'ogmnaimimemjmbakcfefmnahgdfhfami';
|
||||
Reference in New Issue
Block a user