2021-06-27 23:21:27 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is used to apply CSS styles to elements using a consistent method
|
|
|
|
* that is the same across different browsers.
|
|
|
|
*/
|
|
|
|
class CssStyleApplier {
|
|
|
|
/**
|
|
|
|
* Creates a new instance of the class.
|
|
|
|
* @param styleDataUrl The local URL to the JSON file continaing the style rules.
|
|
|
|
* The style rules should be of the format:
|
|
|
|
* [
|
|
|
|
* {
|
|
|
|
* selectors: [(selector:string)...],
|
|
|
|
* styles: [
|
|
|
|
* [(property:string), (value:string)]...
|
|
|
|
* ]
|
|
|
|
* }...
|
|
|
|
* ]
|
|
|
|
*/
|
|
|
|
constructor(styleDataUrl) {
|
|
|
|
this._styleDataUrl = styleDataUrl;
|
|
|
|
this._styleData = [];
|
|
|
|
this._cachedRules = new Map();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the data file for use.
|
|
|
|
*/
|
|
|
|
async prepare() {
|
2021-08-12 00:14:19 +00:00
|
|
|
let styleData;
|
|
|
|
try {
|
|
|
|
styleData = await this._fetchJsonAsset(this._styleDataUrl);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
if (Array.isArray(styleData)) {
|
|
|
|
this._styleData = styleData;
|
|
|
|
}
|
2021-06-27 23:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Applies CSS styles directly to the "style" attribute using the "class" attribute.
|
|
|
|
* This only works for elements with a single class.
|
|
|
|
* @param elements An iterable collection of HTMLElement objects.
|
|
|
|
*/
|
|
|
|
applyClassStyles(elements) {
|
|
|
|
const elementStyles = [];
|
|
|
|
for (const element of elements) {
|
2021-07-18 17:43:11 +00:00
|
|
|
const className = element.getAttribute('class');
|
2021-06-27 23:21:27 +00:00
|
|
|
if (className.length === 0) { continue; }
|
|
|
|
let cssTextNew = '';
|
|
|
|
for (const {selectorText, styles} of this._getRulesForClass(className)) {
|
|
|
|
if (!element.matches(selectorText)) { continue; }
|
|
|
|
cssTextNew += this._getCssText(styles);
|
|
|
|
}
|
|
|
|
cssTextNew += element.style.cssText;
|
|
|
|
elementStyles.push({element, style: cssTextNew});
|
|
|
|
}
|
|
|
|
for (const {element, style} of elementStyles) {
|
|
|
|
element.removeAttribute('class');
|
2021-07-02 22:28:29 +00:00
|
|
|
if (style.length > 0) {
|
|
|
|
element.setAttribute('style', style);
|
|
|
|
} else {
|
|
|
|
element.removeAttribute('style');
|
|
|
|
}
|
|
|
|
}
|
2021-06-27 23:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Private
|
|
|
|
|
|
|
|
async _fetchJsonAsset(url) {
|
2021-07-03 02:12:02 +00:00
|
|
|
const response = await fetch(url, {
|
2021-06-27 23:21:27 +00:00
|
|
|
method: 'GET',
|
|
|
|
mode: 'no-cors',
|
|
|
|
cache: 'default',
|
|
|
|
credentials: 'omit',
|
|
|
|
redirect: 'follow',
|
|
|
|
referrerPolicy: 'no-referrer'
|
|
|
|
});
|
|
|
|
if (!response.ok) {
|
|
|
|
throw new Error(`Failed to fetch ${url}: ${response.status}`);
|
|
|
|
}
|
|
|
|
return await response.json();
|
|
|
|
}
|
|
|
|
|
|
|
|
_getRulesForClass(className) {
|
|
|
|
let rules = this._cachedRules.get(className);
|
|
|
|
if (typeof rules !== 'undefined') { return rules; }
|
|
|
|
|
|
|
|
rules = [];
|
|
|
|
this._cachedRules.set(className, rules);
|
|
|
|
|
|
|
|
const classNamePattern = new RegExp(`.${className}(?![0-9a-zA-Z-])`, '');
|
|
|
|
for (const {selectors, styles} of this._styleData) {
|
|
|
|
const selectorText = selectors.join(',');
|
|
|
|
if (!classNamePattern.test(selectorText)) { continue; }
|
|
|
|
rules.push({selectorText, styles});
|
|
|
|
}
|
|
|
|
|
|
|
|
return rules;
|
|
|
|
}
|
|
|
|
|
|
|
|
_getCssText(styles) {
|
|
|
|
let cssText = '';
|
|
|
|
for (const [property, value] of styles) {
|
|
|
|
cssText += `${property}:${value};`;
|
|
|
|
}
|
|
|
|
return cssText;
|
|
|
|
}
|
|
|
|
}
|