2019-08-22 23:44:31 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2019-2022 Yomichan Authors
|
2019-08-22 23:44:31 +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/>.
|
2019-08-22 23:44:31 +00:00
|
|
|
*/
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Converts an `Error` object to a serializable JSON object.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} error An error object to convert.
|
|
|
|
* @returns {{name: string, message: string, stack: string, data?: *}|{value: *, hasValue: boolean}} A simple object which can be serialized by `JSON.stringify()`.
|
2019-11-26 22:38:05 +00:00
|
|
|
*/
|
2021-01-08 02:36:20 +00:00
|
|
|
function serializeError(error) {
|
2020-04-26 20:55:25 +00:00
|
|
|
try {
|
2021-01-08 02:36:20 +00:00
|
|
|
if (typeof error === 'object' && error !== null) {
|
2021-07-25 16:54:26 +00:00
|
|
|
const result = {
|
2020-04-26 20:55:25 +00:00
|
|
|
name: error.name,
|
|
|
|
message: error.message,
|
2021-07-25 16:54:26 +00:00
|
|
|
stack: error.stack
|
2020-04-26 20:55:25 +00:00
|
|
|
};
|
2021-07-25 16:54:26 +00:00
|
|
|
if (Object.prototype.hasOwnProperty.call(error, 'data')) {
|
|
|
|
result.data = error.data;
|
|
|
|
}
|
|
|
|
return result;
|
2020-04-26 20:55:25 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
2019-10-08 01:04:58 +00:00
|
|
|
return {
|
2020-04-26 20:55:25 +00:00
|
|
|
value: error,
|
|
|
|
hasValue: true
|
2019-10-08 01:04:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Converts a serialized erorr into a standard `Error` object.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {{name: string, message: string, stack: string, data?: *}|{value: *, hasValue: boolean}} serializedError A simple object which was initially generated by serializeError.
|
|
|
|
* @returns {Error|*} A new `Error` instance.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
|
|
|
function deserializeError(serializedError) {
|
|
|
|
if (serializedError.hasValue) {
|
|
|
|
return serializedError.value;
|
2020-04-26 20:55:25 +00:00
|
|
|
}
|
2021-01-08 02:36:20 +00:00
|
|
|
const error = new Error(serializedError.message);
|
|
|
|
error.name = serializedError.name;
|
|
|
|
error.stack = serializedError.stack;
|
2021-07-25 16:54:26 +00:00
|
|
|
if (Object.prototype.hasOwnProperty.call(serializedError, 'data')) {
|
|
|
|
error.data = serializedError.data;
|
|
|
|
}
|
2019-10-08 01:04:58 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Checks whether a given value is a non-array object.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} value The value to check.
|
|
|
|
* @returns {boolean} `true` if the value is an object and not an array, `false` otherwise.
|
2019-11-26 22:38:05 +00:00
|
|
|
*/
|
|
|
|
function isObject(value) {
|
|
|
|
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
2019-08-22 23:44:31 +00:00
|
|
|
}
|
2019-10-24 23:35:41 +00:00
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Converts any string into a form that can be passed into the RegExp constructor.
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} string The string to convert to a valid regular expression.
|
|
|
|
* @returns {string} The escaped string.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-05-23 00:03:34 +00:00
|
|
|
function escapeRegExp(string) {
|
|
|
|
return string.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&');
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Reverses a string.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} string The string to reverse.
|
|
|
|
* @returns {string} The returned string, which retains proper UTF-16 surrogate pair order.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2019-11-24 02:48:24 +00:00
|
|
|
function stringReverse(string) {
|
2021-01-08 02:36:20 +00:00
|
|
|
return [...string].reverse().join('');
|
2020-05-03 01:39:24 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates a deep clone of an object or value. This is similar to `JSON.parse(JSON.stringify(value))`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} value The value to clone.
|
|
|
|
* @returns {*} A new clone of the value.
|
2021-01-08 02:36:20 +00:00
|
|
|
* @throws An error if the value is circular and cannot be cloned.
|
|
|
|
*/
|
2020-06-28 16:38:34 +00:00
|
|
|
const clone = (() => {
|
|
|
|
// eslint-disable-next-line no-shadow
|
|
|
|
function clone(value) {
|
|
|
|
if (value === null) { return null; }
|
|
|
|
switch (typeof value) {
|
|
|
|
case 'boolean':
|
|
|
|
case 'number':
|
|
|
|
case 'string':
|
|
|
|
case 'bigint':
|
|
|
|
case 'symbol':
|
|
|
|
case 'undefined':
|
|
|
|
return value;
|
|
|
|
default:
|
|
|
|
return cloneInternal(value, new Set());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cloneInternal(value, visited) {
|
|
|
|
if (value === null) { return null; }
|
|
|
|
switch (typeof value) {
|
|
|
|
case 'boolean':
|
|
|
|
case 'number':
|
|
|
|
case 'string':
|
|
|
|
case 'bigint':
|
|
|
|
case 'symbol':
|
|
|
|
case 'undefined':
|
|
|
|
return value;
|
|
|
|
case 'function':
|
|
|
|
return cloneObject(value, visited);
|
|
|
|
case 'object':
|
|
|
|
return Array.isArray(value) ? cloneArray(value, visited) : cloneObject(value, visited);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cloneArray(value, visited) {
|
|
|
|
if (visited.has(value)) { throw new Error('Circular'); }
|
|
|
|
try {
|
|
|
|
visited.add(value);
|
|
|
|
const result = [];
|
|
|
|
for (const item of value) {
|
|
|
|
result.push(cloneInternal(item, visited));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} finally {
|
|
|
|
visited.delete(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cloneObject(value, visited) {
|
|
|
|
if (visited.has(value)) { throw new Error('Circular'); }
|
|
|
|
try {
|
|
|
|
visited.add(value);
|
|
|
|
const result = {};
|
|
|
|
for (const key in value) {
|
|
|
|
if (Object.prototype.hasOwnProperty.call(value, key)) {
|
|
|
|
result[key] = cloneInternal(value[key], visited);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} finally {
|
|
|
|
visited.delete(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return clone;
|
|
|
|
})();
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Checks if an object or value is deeply equal to another object or value.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} value1 The first value to check.
|
|
|
|
* @param {*} value2 The second value to check.
|
|
|
|
* @returns {boolean} `true` if the values are the same object, or deeply equal without cycles. `false` otherwise.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-11-10 02:47:25 +00:00
|
|
|
const deepEqual = (() => {
|
|
|
|
// eslint-disable-next-line no-shadow
|
|
|
|
function deepEqual(value1, value2) {
|
|
|
|
if (value1 === value2) { return true; }
|
|
|
|
|
|
|
|
const type = typeof value1;
|
|
|
|
if (typeof value2 !== type) { return false; }
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 'object':
|
|
|
|
case 'function':
|
|
|
|
return deepEqualInternal(value1, value2, new Set());
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function deepEqualInternal(value1, value2, visited1) {
|
|
|
|
if (value1 === value2) { return true; }
|
|
|
|
|
|
|
|
const type = typeof value1;
|
|
|
|
if (typeof value2 !== type) { return false; }
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 'object':
|
|
|
|
case 'function':
|
|
|
|
{
|
|
|
|
if (value1 === null || value2 === null) { return false; }
|
|
|
|
const array = Array.isArray(value1);
|
|
|
|
if (array !== Array.isArray(value2)) { return false; }
|
|
|
|
if (visited1.has(value1)) { return false; }
|
|
|
|
visited1.add(value1);
|
|
|
|
return array ? areArraysEqual(value1, value2, visited1) : areObjectsEqual(value1, value2, visited1);
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function areObjectsEqual(value1, value2, visited1) {
|
|
|
|
const keys1 = Object.keys(value1);
|
|
|
|
const keys2 = Object.keys(value2);
|
|
|
|
if (keys1.length !== keys2.length) { return false; }
|
|
|
|
|
|
|
|
const keys1Set = new Set(keys1);
|
|
|
|
for (const key of keys2) {
|
|
|
|
if (!keys1Set.has(key) || !deepEqualInternal(value1[key], value2[key], visited1)) { return false; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function areArraysEqual(value1, value2, visited1) {
|
|
|
|
const length = value1.length;
|
|
|
|
if (length !== value2.length) { return false; }
|
|
|
|
|
|
|
|
for (let i = 0; i < length; ++i) {
|
|
|
|
if (!deepEqualInternal(value1[i], value2[i], visited1)) { return false; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return deepEqual;
|
|
|
|
})();
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates a new base-16 (lower case) string of a sequence of random bytes of the given length.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {number} length The number of bytes the string represents. The returned string's length will be twice as long.
|
|
|
|
* @returns {string} A string of random characters.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-08-22 19:49:24 +00:00
|
|
|
function generateId(length) {
|
|
|
|
const array = new Uint8Array(length);
|
|
|
|
crypto.getRandomValues(array);
|
|
|
|
let id = '';
|
|
|
|
for (const value of array) {
|
|
|
|
id += value.toString(16).padStart(2, '0');
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates an unresolved promise that can be resolved later, outside the promise's executor function.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @returns {{promise: Promise, resolve: Function, reject: Function}} An object `{promise, resolve, reject}`, containing the promise and the resolve/reject functions.
|
2019-11-26 22:38:05 +00:00
|
|
|
*/
|
2020-06-28 18:39:43 +00:00
|
|
|
function deferPromise() {
|
|
|
|
let resolve;
|
|
|
|
let reject;
|
|
|
|
const promise = new Promise((resolve2, reject2) => {
|
|
|
|
resolve = resolve2;
|
|
|
|
reject = reject2;
|
|
|
|
});
|
|
|
|
return {promise, resolve, reject};
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates a promise that is resolved after a set delay.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {number} delay How many milliseconds until the promise should be resolved. If 0, the promise is immediately resolved.
|
|
|
|
* @param {*} [resolveValue] The value returned when the promise is resolved.
|
|
|
|
* @returns {Promise} A promise with two additional properties: `resolve` and `reject`, which can be used to complete the promise early.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2019-10-24 23:35:41 +00:00
|
|
|
function promiseTimeout(delay, resolveValue) {
|
|
|
|
if (delay <= 0) {
|
2020-05-24 17:39:50 +00:00
|
|
|
const promise = Promise.resolve(resolveValue);
|
|
|
|
promise.resolve = () => {}; // NOP
|
|
|
|
promise.reject = () => {}; // NOP
|
|
|
|
return promise;
|
2019-10-24 23:35:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let timer = null;
|
2020-06-28 18:39:43 +00:00
|
|
|
let {promise, resolve, reject} = deferPromise();
|
2019-10-24 23:35:41 +00:00
|
|
|
|
|
|
|
const complete = (callback, value) => {
|
|
|
|
if (callback === null) { return; }
|
|
|
|
if (timer !== null) {
|
2020-05-24 18:01:21 +00:00
|
|
|
clearTimeout(timer);
|
2019-10-24 23:35:41 +00:00
|
|
|
timer = null;
|
|
|
|
}
|
2020-06-28 18:39:43 +00:00
|
|
|
resolve = null;
|
|
|
|
reject = null;
|
2019-10-24 23:35:41 +00:00
|
|
|
callback(value);
|
|
|
|
};
|
|
|
|
|
2020-06-28 18:39:43 +00:00
|
|
|
const resolveWrapper = (value) => complete(resolve, value);
|
|
|
|
const rejectWrapper = (value) => complete(reject, value);
|
2019-10-24 23:35:41 +00:00
|
|
|
|
2020-05-24 18:01:21 +00:00
|
|
|
timer = setTimeout(() => {
|
2019-10-24 23:35:41 +00:00
|
|
|
timer = null;
|
2020-06-28 18:39:43 +00:00
|
|
|
resolveWrapper(resolveValue);
|
2019-10-24 23:35:41 +00:00
|
|
|
}, delay);
|
|
|
|
|
2020-06-28 18:39:43 +00:00
|
|
|
promise.resolve = resolveWrapper;
|
|
|
|
promise.reject = rejectWrapper;
|
2019-10-24 23:35:41 +00:00
|
|
|
|
|
|
|
return promise;
|
|
|
|
}
|
2019-11-09 03:08:11 +00:00
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates a promise that will resolve after the next animation frame, using `requestAnimationFrame`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {number} [timeout] A maximum duration (in milliseconds) to wait until the promise resolves. If null or omitted, no timeout is used.
|
|
|
|
* @returns {Promise<{time: number, timeout: number}>} A promise that is resolved with `{time, timeout}`, where `time` is the timestamp from `requestAnimationFrame`,
|
2021-01-08 02:36:20 +00:00
|
|
|
* and `timeout` is a boolean indicating whether the cause was a timeout or not.
|
|
|
|
* @throws The promise throws an error if animation is not supported in this context, such as in a service worker.
|
|
|
|
*/
|
2020-08-23 16:43:53 +00:00
|
|
|
function promiseAnimationFrame(timeout=null) {
|
2020-12-18 20:54:05 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (typeof cancelAnimationFrame !== 'function' || typeof requestAnimationFrame !== 'function') {
|
|
|
|
reject(new Error('Animation not supported in this context'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-23 16:43:53 +00:00
|
|
|
let timer = null;
|
|
|
|
let frameRequest = null;
|
|
|
|
const onFrame = (time) => {
|
|
|
|
frameRequest = null;
|
|
|
|
if (timer !== null) {
|
|
|
|
clearTimeout(timer);
|
|
|
|
timer = null;
|
|
|
|
}
|
|
|
|
resolve({time, timeout: false});
|
|
|
|
};
|
|
|
|
const onTimeout = () => {
|
|
|
|
timer = null;
|
|
|
|
if (frameRequest !== null) {
|
2020-12-18 20:54:05 +00:00
|
|
|
// eslint-disable-next-line no-undef
|
2020-08-23 16:43:53 +00:00
|
|
|
cancelAnimationFrame(frameRequest);
|
|
|
|
frameRequest = null;
|
|
|
|
}
|
2021-01-08 02:36:20 +00:00
|
|
|
resolve({time: performance.now(), timeout: true});
|
2020-08-23 16:43:53 +00:00
|
|
|
};
|
|
|
|
|
2020-12-18 20:54:05 +00:00
|
|
|
// eslint-disable-next-line no-undef
|
2020-08-23 16:43:53 +00:00
|
|
|
frameRequest = requestAnimationFrame(onFrame);
|
|
|
|
if (typeof timeout === 'number') {
|
|
|
|
timer = setTimeout(onTimeout, timeout);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-14 23:18:02 +00:00
|
|
|
/**
|
|
|
|
* Invokes a standard message handler. This function is used to react and respond
|
|
|
|
* to communication messages within the extension.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {object} details Details about how to handle messages.
|
|
|
|
* @param {Function} details.handler A handler function which is passed `params` and `...extraArgs` as arguments.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {boolean|string} details.async Whether or not the handler is async or not. Values include `false`, `true`, or `'dynamic'`.
|
2021-02-14 23:18:02 +00:00
|
|
|
* When the value is `'dynamic'`, the handler should return an object of the format `{async: boolean, result: any}`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {object} params Information which was passed with the original message.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {Function} callback A callback function which is invoked after the handler has completed. The value passed
|
2021-02-14 23:18:02 +00:00
|
|
|
* to the function is in the format:
|
2022-05-20 14:28:38 +00:00
|
|
|
* - `{result: any}` if the handler invoked successfully.
|
|
|
|
* - `{error: object}` if the handler thew an error. The error is serialized.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {...*} extraArgs Additional arguments which are passed to the `handler` function.
|
|
|
|
* @returns {boolean} `true` if the function is invoked asynchronously, `false` otherwise.
|
2021-02-14 23:18:02 +00:00
|
|
|
*/
|
|
|
|
function invokeMessageHandler({handler, async}, params, callback, ...extraArgs) {
|
|
|
|
try {
|
|
|
|
let promiseOrResult = handler(params, ...extraArgs);
|
|
|
|
if (async === 'dynamic') {
|
|
|
|
({async, result: promiseOrResult} = promiseOrResult);
|
|
|
|
}
|
|
|
|
if (async) {
|
|
|
|
promiseOrResult.then(
|
|
|
|
(result) => { callback({result}); },
|
|
|
|
(error) => { callback({error: serializeError(error)}); }
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
callback({result: promiseOrResult});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
callback({error: serializeError(error)});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Base class controls basic event dispatching.
|
2019-11-27 17:00:42 +00:00
|
|
|
*/
|
|
|
|
class EventDispatcher {
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates a new instance.
|
|
|
|
*/
|
2019-11-27 17:00:42 +00:00
|
|
|
constructor() {
|
|
|
|
this._eventMap = new Map();
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Triggers an event with the given name and specified argument.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} eventName The string representing the event's name.
|
|
|
|
* @param {*} [details] The argument passed to the callback functions.
|
|
|
|
* @returns {boolean} `true` if any callbacks were registered, `false` otherwise.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2019-11-27 17:00:42 +00:00
|
|
|
trigger(eventName, details) {
|
|
|
|
const callbacks = this._eventMap.get(eventName);
|
|
|
|
if (typeof callbacks === 'undefined') { return false; }
|
|
|
|
|
|
|
|
for (const callback of callbacks) {
|
|
|
|
callback(details);
|
|
|
|
}
|
2021-01-08 02:36:20 +00:00
|
|
|
return true;
|
2019-11-27 17:00:42 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Adds a single event listener to a specific event.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} eventName The string representing the event's name.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {Function} callback The event listener callback to add.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2019-11-27 17:00:42 +00:00
|
|
|
on(eventName, callback) {
|
|
|
|
let callbacks = this._eventMap.get(eventName);
|
|
|
|
if (typeof callbacks === 'undefined') {
|
|
|
|
callbacks = [];
|
|
|
|
this._eventMap.set(eventName, callbacks);
|
|
|
|
}
|
|
|
|
callbacks.push(callback);
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Removes a single event listener from a specific event.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} eventName The string representing the event's name.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @param {Function} callback The event listener callback to add.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @returns {boolean} `true` if the callback was removed, `false` otherwise.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2019-11-27 17:00:42 +00:00
|
|
|
off(eventName, callback) {
|
|
|
|
const callbacks = this._eventMap.get(eventName);
|
2021-06-24 23:15:09 +00:00
|
|
|
if (typeof callbacks === 'undefined') { return false; }
|
2019-11-27 17:00:42 +00:00
|
|
|
|
|
|
|
const ii = callbacks.length;
|
|
|
|
for (let i = 0; i < ii; ++i) {
|
|
|
|
if (callbacks[i] === callback) {
|
|
|
|
callbacks.splice(i, 1);
|
|
|
|
if (callbacks.length === 0) {
|
|
|
|
this._eventMap.delete(eventName);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-19 21:14:51 +00:00
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Checks if an event has any listeners.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} eventName The string representing the event's name.
|
|
|
|
* @returns {boolean} `true` if the event has listeners, `false` otherwise.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-09-19 21:14:51 +00:00
|
|
|
hasListeners(eventName) {
|
|
|
|
const callbacks = this._eventMap.get(eventName);
|
|
|
|
return (typeof callbacks !== 'undefined' && callbacks.length > 0);
|
|
|
|
}
|
2019-11-27 17:00:42 +00:00
|
|
|
}
|
2019-12-09 03:29:23 +00:00
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Class which stores event listeners added to various objects, making it easy to remove them in bulk.
|
|
|
|
*/
|
2020-02-16 21:33:48 +00:00
|
|
|
class EventListenerCollection {
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Creates a new instance.
|
|
|
|
*/
|
2020-02-16 21:33:48 +00:00
|
|
|
constructor() {
|
|
|
|
this._eventListeners = [];
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of event listeners that are currently in the object.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @type {number}
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-02-16 21:33:48 +00:00
|
|
|
get size() {
|
|
|
|
return this._eventListeners.length;
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Adds an event listener of a generic type.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} type The type of event listener, which can be 'addEventListener', 'addListener', or 'on'.
|
|
|
|
* @param {object} object The object to add the event listener to.
|
|
|
|
* @param {...*} args The argument array passed to the object's event listener adding function.
|
2022-05-20 14:28:38 +00:00
|
|
|
* @returns {void}
|
2021-01-08 02:36:20 +00:00
|
|
|
* @throws An error if type is not an expected value.
|
|
|
|
*/
|
2020-09-08 00:12:43 +00:00
|
|
|
addGeneric(type, object, ...args) {
|
|
|
|
switch (type) {
|
|
|
|
case 'addEventListener': return this.addEventListener(object, ...args);
|
|
|
|
case 'addListener': return this.addListener(object, ...args);
|
|
|
|
case 'on': return this.on(object, ...args);
|
2021-01-08 02:36:20 +00:00
|
|
|
default: throw new Error(`Invalid type: ${type}`);
|
2020-09-08 00:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Adds an event listener using `object.addEventListener`. The listener will later be removed using `object.removeEventListener`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {object} object The object to add the event listener to.
|
|
|
|
* @param {...*} args The argument array passed to the `addEventListener`/`removeEventListener` functions.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-05-23 17:19:31 +00:00
|
|
|
addEventListener(object, ...args) {
|
|
|
|
object.addEventListener(...args);
|
|
|
|
this._eventListeners.push(['removeEventListener', object, ...args]);
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Adds an event listener using `object.addListener`. The listener will later be removed using `object.removeListener`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {object} object The object to add the event listener to.
|
|
|
|
* @param {...*} args The argument array passed to the `addListener`/`removeListener` function.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-05-23 17:19:31 +00:00
|
|
|
addListener(object, ...args) {
|
2020-05-23 18:18:02 +00:00
|
|
|
object.addListener(...args);
|
2020-05-23 17:19:31 +00:00
|
|
|
this._eventListeners.push(['removeListener', object, ...args]);
|
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Adds an event listener using `object.on`. The listener will later be removed using `object.off`.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {object} object The object to add the event listener to.
|
|
|
|
* @param {...*} args The argument array passed to the `on`/`off` function.
|
2021-01-08 02:36:20 +00:00
|
|
|
*/
|
2020-05-23 17:19:31 +00:00
|
|
|
on(object, ...args) {
|
2020-05-23 18:18:02 +00:00
|
|
|
object.on(...args);
|
2020-05-23 17:19:31 +00:00
|
|
|
this._eventListeners.push(['off', object, ...args]);
|
2020-02-16 21:33:48 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 02:36:20 +00:00
|
|
|
/**
|
|
|
|
* Removes all event listeners added to objects for this instance and clears the internal list of event listeners.
|
|
|
|
*/
|
2020-02-16 21:33:48 +00:00
|
|
|
removeAllEventListeners() {
|
|
|
|
if (this._eventListeners.length === 0) { return; }
|
2020-05-23 17:19:31 +00:00
|
|
|
for (const [removeFunctionName, object, ...args] of this._eventListeners) {
|
|
|
|
switch (removeFunctionName) {
|
|
|
|
case 'removeEventListener':
|
|
|
|
object.removeEventListener(...args);
|
|
|
|
break;
|
|
|
|
case 'removeListener':
|
|
|
|
object.removeListener(...args);
|
|
|
|
break;
|
|
|
|
case 'off':
|
|
|
|
object.off(...args);
|
|
|
|
break;
|
|
|
|
}
|
2020-02-16 21:33:48 +00:00
|
|
|
}
|
|
|
|
this._eventListeners = [];
|
|
|
|
}
|
|
|
|
}
|
2020-08-22 21:50:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class representing a generic value with an override stack.
|
|
|
|
* Changes can be observed by listening to the 'change' event.
|
|
|
|
*/
|
|
|
|
class DynamicProperty extends EventDispatcher {
|
|
|
|
/**
|
|
|
|
* Creates a new instance with the specified value.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} value The value to assign.
|
2020-08-22 21:50:56 +00:00
|
|
|
*/
|
|
|
|
constructor(value) {
|
|
|
|
super();
|
|
|
|
this._value = value;
|
|
|
|
this._defaultValue = value;
|
|
|
|
this._overrides = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the default value for the property, which is assigned to the
|
|
|
|
* public value property when no overrides are present.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @type {*}
|
2020-08-22 21:50:56 +00:00
|
|
|
*/
|
|
|
|
get defaultValue() {
|
|
|
|
return this._defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assigns the default value for the property. If no overrides are present
|
|
|
|
* and if the value is different than the current default value,
|
|
|
|
* the 'change' event will be triggered.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} value The value to assign.
|
2020-08-22 21:50:56 +00:00
|
|
|
*/
|
|
|
|
set defaultValue(value) {
|
|
|
|
this._defaultValue = value;
|
|
|
|
if (this._overrides.length === 0) { this._updateValue(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current value for the property, taking any overrides into account.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @type {*}
|
2020-08-22 21:50:56 +00:00
|
|
|
*/
|
|
|
|
get value() {
|
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the number of overrides added to the property.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @type {*}
|
2020-08-22 21:50:56 +00:00
|
|
|
*/
|
|
|
|
get overrideCount() {
|
|
|
|
return this._overrides.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an override value with the specified priority to the override stack.
|
|
|
|
* Values with higher priority will take precedence over those with lower.
|
|
|
|
* For tie breaks, the override value added first will take precedence.
|
|
|
|
* If the newly added override has the highest priority of all overrides
|
|
|
|
* and if the override value is different from the current value,
|
|
|
|
* the 'change' event will be fired.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {*} value The override value to assign.
|
|
|
|
* @param {number} [priority] The priority value to use, as a number.
|
|
|
|
* @returns {string} A string token which can be passed to the clearOverride function
|
2020-08-22 21:50:56 +00:00
|
|
|
* to remove the override.
|
|
|
|
*/
|
|
|
|
setOverride(value, priority=0) {
|
|
|
|
const overridesCount = this._overrides.length;
|
|
|
|
let i = 0;
|
|
|
|
for (; i < overridesCount; ++i) {
|
|
|
|
if (priority > this._overrides[i].priority) { break; }
|
|
|
|
}
|
|
|
|
const token = generateId(16);
|
|
|
|
this._overrides.splice(i, 0, {value, priority, token});
|
|
|
|
if (i === 0) { this._updateValue(); }
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a specific override value. If the removed override
|
|
|
|
* had the highest priority, and the new value is different from
|
|
|
|
* the previous value, the 'change' event will be fired.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {string} token The token for the corresponding override which is to be removed.
|
|
|
|
* @returns {boolean} `true` if an override was returned, `false` otherwise.
|
2020-08-22 21:50:56 +00:00
|
|
|
*/
|
|
|
|
clearOverride(token) {
|
|
|
|
for (let i = 0, ii = this._overrides.length; i < ii; ++i) {
|
|
|
|
if (this._overrides[i].token === token) {
|
|
|
|
this._overrides.splice(i, 1);
|
|
|
|
if (i === 0) { this._updateValue(); }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the current value using the current overrides and default value.
|
|
|
|
* If the new value differs from the previous value, the 'change' event will be fired.
|
|
|
|
*/
|
|
|
|
_updateValue() {
|
|
|
|
const value = this._overrides.length > 0 ? this._overrides[0].value : this._defaultValue;
|
|
|
|
if (this._value === value) { return; }
|
|
|
|
this._value = value;
|
|
|
|
this.trigger('change', {value});
|
|
|
|
}
|
|
|
|
}
|
2021-02-14 22:52:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class handles logging of messages to the console and triggering
|
|
|
|
* an event for log calls.
|
|
|
|
*/
|
|
|
|
class Logger extends EventDispatcher {
|
|
|
|
/**
|
|
|
|
* Creates a new instance.
|
|
|
|
*/
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this._extensionName = 'Yomichan';
|
|
|
|
try {
|
|
|
|
const {name, version} = chrome.runtime.getManifest();
|
|
|
|
this._extensionName = `${name} ${version}`;
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs a generic error. This will trigger the 'log' event with the same arguments as the function invocation.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {Error|object|*} error The error to log. This is typically an `Error` or `Error`-like object.
|
|
|
|
* @param {string} level The level to log at. Values include `'info'`, `'debug'`, `'warn'`, and `'error'`.
|
2021-02-14 22:52:01 +00:00
|
|
|
* Other values will be logged at a non-error level.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {?object} [context] An optional context object for the error which should typically include a `url` field.
|
2021-02-14 22:52:01 +00:00
|
|
|
*/
|
|
|
|
log(error, level, context=null) {
|
|
|
|
if (!isObject(context)) {
|
|
|
|
context = {url: location.href};
|
|
|
|
}
|
|
|
|
|
|
|
|
let errorString;
|
|
|
|
try {
|
|
|
|
if (typeof error === 'string') {
|
|
|
|
errorString = error;
|
|
|
|
} else {
|
|
|
|
errorString = error.toString();
|
|
|
|
if (/^\[object \w+\]$/.test(errorString)) {
|
|
|
|
errorString = JSON.stringify(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
errorString = `${error}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
let errorStack;
|
|
|
|
try {
|
|
|
|
errorStack = (typeof error.stack === 'string' ? error.stack.trimRight() : '');
|
|
|
|
} catch (e) {
|
|
|
|
errorStack = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
let errorData;
|
|
|
|
try {
|
|
|
|
errorData = error.data;
|
|
|
|
} catch (e) {
|
|
|
|
// NOP
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errorStack.startsWith(errorString)) {
|
|
|
|
errorString = errorStack;
|
|
|
|
} else if (errorStack.length > 0) {
|
|
|
|
errorString += `\n${errorStack}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
let message = `${this._extensionName} has encountered a problem.`;
|
|
|
|
message += `\nOriginating URL: ${context.url}\n`;
|
|
|
|
message += errorString;
|
|
|
|
if (typeof errorData !== 'undefined') {
|
|
|
|
message += `\nData: ${JSON.stringify(errorData, null, 4)}`;
|
|
|
|
}
|
|
|
|
message += '\n\nIssues can be reported at https://github.com/FooSoft/yomichan/issues';
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
case 'info': console.info(message); break;
|
|
|
|
case 'debug': console.debug(message); break;
|
|
|
|
case 'warn': console.warn(message); break;
|
|
|
|
case 'error': console.error(message); break;
|
|
|
|
default: console.log(message); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.trigger('log', {error, level, context});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs a warning. This function invokes `log` internally.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {Error|object|*} error The error to log. This is typically an `Error` or `Error`-like object.
|
|
|
|
* @param {?object} context An optional context object for the error which should typically include a `url` field.
|
2021-02-14 22:52:01 +00:00
|
|
|
*/
|
|
|
|
warn(error, context=null) {
|
|
|
|
this.log(error, 'warn', context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs an error. This function invokes `log` internally.
|
2021-11-01 01:45:57 +00:00
|
|
|
* @param {Error|object|*} error The error to log. This is typically an `Error` or `Error`-like object.
|
|
|
|
* @param {?object} context An optional context object for the error which should typically include a `url` field.
|
2021-02-14 22:52:01 +00:00
|
|
|
*/
|
|
|
|
error(error, context=null) {
|
|
|
|
this.log(error, 'error', context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This object is the default logger used by the runtime.
|
|
|
|
*/
|
|
|
|
const log = new Logger();
|