2019-08-22 23:44:31 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2019-2020 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
|
|
|
*/
|
|
|
|
|
2019-11-26 22:38:05 +00:00
|
|
|
/*
|
|
|
|
* Error handling
|
|
|
|
*/
|
|
|
|
|
2019-10-08 01:04:58 +00:00
|
|
|
function errorToJson(error) {
|
2020-04-26 20:55:25 +00:00
|
|
|
try {
|
|
|
|
if (isObject(error)) {
|
|
|
|
return {
|
|
|
|
name: error.name,
|
|
|
|
message: error.message,
|
|
|
|
stack: error.stack,
|
|
|
|
data: error.data
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} 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
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function jsonToError(jsonError) {
|
2020-04-26 20:55:25 +00:00
|
|
|
if (jsonError.hasValue) {
|
|
|
|
return jsonError.value;
|
|
|
|
}
|
2019-10-08 01:04:58 +00:00
|
|
|
const error = new Error(jsonError.message);
|
|
|
|
error.name = jsonError.name;
|
|
|
|
error.stack = jsonError.stack;
|
2020-01-22 00:08:56 +00:00
|
|
|
error.data = jsonError.data;
|
2019-10-08 01:04:58 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2019-08-22 23:44:31 +00:00
|
|
|
|
2019-11-26 22:38:05 +00:00
|
|
|
/*
|
|
|
|
* Common helpers
|
|
|
|
*/
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-11-25 19:19:18 +00:00
|
|
|
function hasOwn(object, property) {
|
|
|
|
return Object.prototype.hasOwnProperty.call(object, property);
|
|
|
|
}
|
|
|
|
|
2020-05-23 00:03:34 +00:00
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
|
|
|
|
function escapeRegExp(string) {
|
|
|
|
return string.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&');
|
|
|
|
}
|
|
|
|
|
2019-11-26 22:38:05 +00:00
|
|
|
// toIterable is required on Edge for cross-window origin objects.
|
|
|
|
function toIterable(value) {
|
|
|
|
if (typeof Symbol !== 'undefined' && typeof value[Symbol.iterator] !== 'undefined') {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value !== null && typeof value === 'object') {
|
|
|
|
const length = value.length;
|
|
|
|
if (typeof length === 'number' && Number.isFinite(length)) {
|
2020-02-14 01:28:59 +00:00
|
|
|
return Array.from(value);
|
2019-11-26 22:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error('Could not convert to iterable');
|
|
|
|
}
|
|
|
|
|
2019-11-24 02:48:24 +00:00
|
|
|
function stringReverse(string) {
|
|
|
|
return string.split('').reverse().join('').replace(/([\uDC00-\uDFFF])([\uD800-\uDBFF])/g, '$2$1');
|
|
|
|
}
|
|
|
|
|
2020-02-09 22:09:29 +00:00
|
|
|
function parseUrl(url) {
|
|
|
|
const parsedUrl = new URL(url);
|
|
|
|
const baseUrl = `${parsedUrl.origin}${parsedUrl.pathname}`;
|
|
|
|
const queryParams = Array.from(parsedUrl.searchParams.entries())
|
|
|
|
.reduce((a, [k, v]) => Object.assign({}, a, {[k]: v}), {});
|
|
|
|
return {baseUrl, queryParams};
|
|
|
|
}
|
|
|
|
|
2020-03-28 17:20:42 +00:00
|
|
|
function areSetsEqual(set1, set2) {
|
|
|
|
if (set1.size !== set2.size) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const value of set1) {
|
|
|
|
if (!set2.has(value)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSetIntersection(set1, set2) {
|
|
|
|
const result = [];
|
|
|
|
for (const value of set1) {
|
|
|
|
if (set2.has(value)) {
|
|
|
|
result.push(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-05-03 01:39:24 +00:00
|
|
|
function getSetDifference(set1, set2) {
|
|
|
|
return new Set(
|
|
|
|
[...set1].filter((value) => !set2.has(value))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
})();
|
|
|
|
|
2020-07-03 15:57:15 +00:00
|
|
|
// Expose clone function on the global object, since util.js's utilBackgroundIsolate needs access to it.
|
|
|
|
if (typeof window === 'object' && window !== null) {
|
|
|
|
window.clone = clone;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-11-26 22:38:05 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Async utilities
|
|
|
|
*/
|
|
|
|
|
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};
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-08-23 16:43:53 +00:00
|
|
|
function promiseAnimationFrame(timeout=null) {
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
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) {
|
|
|
|
cancelAnimationFrame(frameRequest);
|
|
|
|
frameRequest = null;
|
|
|
|
}
|
|
|
|
resolve({time: timeout, timeout: true});
|
|
|
|
};
|
|
|
|
|
|
|
|
frameRequest = requestAnimationFrame(onFrame);
|
|
|
|
if (typeof timeout === 'number') {
|
|
|
|
timer = setTimeout(onTimeout, timeout);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-27 17:00:42 +00:00
|
|
|
|
|
|
|
/*
|
2020-08-22 21:50:56 +00:00
|
|
|
* Common classes
|
2019-11-27 17:00:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class EventDispatcher {
|
|
|
|
constructor() {
|
|
|
|
this._eventMap = new Map();
|
|
|
|
}
|
|
|
|
|
|
|
|
trigger(eventName, details) {
|
|
|
|
const callbacks = this._eventMap.get(eventName);
|
|
|
|
if (typeof callbacks === 'undefined') { return false; }
|
|
|
|
|
|
|
|
for (const callback of callbacks) {
|
|
|
|
callback(details);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
on(eventName, callback) {
|
|
|
|
let callbacks = this._eventMap.get(eventName);
|
|
|
|
if (typeof callbacks === 'undefined') {
|
|
|
|
callbacks = [];
|
|
|
|
this._eventMap.set(eventName, callbacks);
|
|
|
|
}
|
|
|
|
callbacks.push(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
off(eventName, callback) {
|
|
|
|
const callbacks = this._eventMap.get(eventName);
|
|
|
|
if (typeof callbacks === 'undefined') { return true; }
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2019-12-09 03:29:23 +00:00
|
|
|
|
2020-02-16 21:33:48 +00:00
|
|
|
class EventListenerCollection {
|
|
|
|
constructor() {
|
|
|
|
this._eventListeners = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
get size() {
|
|
|
|
return this._eventListeners.length;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-23 17:19:31 +00:00
|
|
|
addEventListener(object, ...args) {
|
|
|
|
object.addEventListener(...args);
|
|
|
|
this._eventListeners.push(['removeEventListener', object, ...args]);
|
|
|
|
}
|
|
|
|
|
|
|
|
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]);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
default:
|
|
|
|
throw new Error(`Unknown remove function: ${removeFunctionName}`);
|
|
|
|
}
|
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.
|
|
|
|
* @param value The value to assign.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
* @param value The value to assign.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
get value() {
|
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the number of overrides added to the property.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
* @param value The override value to assign.
|
|
|
|
* @param priority The priority value to use, as a number.
|
|
|
|
* @returns A string token which can be passed to the clearOverride function
|
|
|
|
* 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.
|
|
|
|
* @param token The token for the corresponding override which is to be removed.
|
|
|
|
* @returns true if an override was returned, false otherwise.
|
|
|
|
*/
|
|
|
|
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});
|
|
|
|
}
|
|
|
|
}
|