1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00
uBlock/platform/webext/vapi-usercss.js

245 lines
8.0 KiB
JavaScript
Raw Normal View History

/*******************************************************************************
uBlock Origin - a browser extension to block requests.
Copyright (C) 2017 Raymond Hill
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 {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uBlock
*/
'use strict';
// For content pages
2017-10-21 19:43:46 +02:00
if ( typeof vAPI === 'object' ) { // >>>>>>>> start of HUGE-IF-BLOCK
/******************************************************************************/
/******************************************************************************/
2017-10-21 19:43:46 +02:00
vAPI.DOMFilterer = function() {
this.commitTimer = new vAPI.SafeAnimationFrame(this.commitNow.bind(this));
this.domIsReady = document.readyState !== 'loading';
this.listeners = [];
this.hideNodeId = vAPI.randomToken();
this.hideNodeStylesheet = false;
this.excludedNodeSet = new WeakSet();
this.addedCSSRules = [];
this.removedCSSRules = [];
this.internalRules = new Set();
2017-10-21 19:43:46 +02:00
this.userStylesheets = {
current: new Set(),
added: new Set(),
removed: new Set(),
disabled: false,
apply: function() {
for ( let cssText of this.added ) {
if ( this.current.has(cssText) || this.removed.has(cssText) ) {
this.added.delete(cssText);
} else {
this.current.add(cssText);
}
}
for ( let cssText of this.removed ) {
if ( this.current.has(cssText) === false ) {
this.removed.delete(cssText);
} else {
this.current.delete(cssText);
}
}
if ( this.added.size === 0 && this.removed.size === 0 ) { return; }
if ( this.disabled === false ) {
vAPI.messaging.send('vapi-background', {
what: 'userCSS',
add: Array.from(this.added),
remove: Array.from(this.removed)
});
}
this.added.clear();
this.removed.clear();
},
add: function(cssText) {
2017-10-21 19:43:46 +02:00
if ( cssText === '' ) { return; }
this.added.add(cssText);
},
remove: function(cssText) {
if ( cssText === '' ) { return; }
2017-10-21 19:43:46 +02:00
this.removed.add(cssText);
},
toggle: function(state) {
2017-10-21 19:43:46 +02:00
if ( state === undefined ) { state = this.disabled; }
if ( state !== this.disabled ) { return; }
this.disabled = !state;
if ( this.current.size === 0 ) { return; }
var all = Array.from(this.current);
var toAdd = [], toRemove = [];
if ( this.disabled ) {
toRemove = all;
} else {
toAdd = all;
}
vAPI.messaging.send('vapi-background', {
what: 'userCSS',
add: toAdd,
remove: toRemove
});
}
};
2017-10-21 19:43:46 +02:00
if ( this.domIsReady !== true ) {
document.addEventListener('DOMContentLoaded', () => {
this.domIsReady = true;
this.commit();
});
}
};
vAPI.DOMFilterer.prototype = {
reOnlySelectors: /\n\{[^\n]+/g,
commitNow: function() {
this.commitTimer.clear();
var i, entry, ruleText;
i = this.addedCSSRules.length;
while ( i-- ) {
entry = this.addedCSSRules[i];
if ( entry.lazy !== true || this.domIsReady ) {
ruleText = entry.selectors + '\n{ ' + entry.declarations + ' }';
this.userStylesheets.add(ruleText);
this.addedCSSRules.splice(i, 1);
if ( entry.internal ) {
this.internalRules.add(ruleText);
}
}
}
i = this.removedCSSRules.length;
while ( i-- ) {
entry = this.removedCSSRules[i];
ruleText = entry.selectors + '\n{ ' + entry.declarations + ' }';
this.userStylesheets.remove(ruleText);
this.internalRules.delete(ruleText);
}
this.removedCSSRules = [];
this.userStylesheets.apply();
},
commit: function(commitNow) {
if ( commitNow ) {
this.commitTimer.clear();
this.commitNow();
} else {
this.commitTimer.start();
}
},
addCSSRule: function(selectors, declarations, details) {
if ( selectors === undefined ) { return; }
var selectorsStr = Array.isArray(selectors)
? selectors.join(',\n')
: selectors;
if ( selectorsStr.length === 0 ) { return; }
this.addedCSSRules.push({
selectors: selectorsStr,
declarations,
lazy: details && details.lazy === true,
internal: details && details.internal === true
});
this.commit();
this.triggerListeners('declarative', selectorsStr);
},
removeCSSRule: function(selectors, declarations) {
var selectorsStr = Array.isArray(selectors)
? selectors.join(',\n')
: selectors;
if ( selectorsStr.length === 0 ) { return; }
this.removedCSSRules.push({
selectors: selectorsStr,
declarations,
});
this.commit();
},
addListener: function(listener) {
if ( this.listeners.indexOf(listener) !== -1 ) { return; }
this.listeners.push(listener);
},
removeListener: function(listener) {
var pos = this.listeners.indexOf(listener);
if ( pos === -1 ) { return; }
this.listeners.splice(pos, 1);
},
triggerListeners: function(type, selectors) {
var i = this.listeners.length;
while ( i-- ) {
this.listeners[i].onFiltersetChanged(type, selectors);
}
},
excludeNode: function(node) {
this.excludedNodeSet.add(node);
this.unhideNode(node);
},
hideNode: function(node) {
if ( this.excludedNodeSet.has(node) ) { return; }
node.setAttribute(this.hideNodeId, '');
if ( this.hideNodeStylesheet === false ) {
this.hideNodeStylesheet = true;
this.addCSSRule(
'[' + this.hideNodeId + ']',
'display: none !important;',
{ internal: true }
);
}
},
unhideNode: function(node) {
node.removeAttribute(this.hideNodeId);
},
toggle: function(state) {
this.userStylesheets.toggle(state);
},
getAllDeclarativeSelectors_: function(all) {
let selectors = [];
for ( var sheet of this.userStylesheets.current ) {
if ( all === false && this.internalRules.has(sheet) ) { continue; }
selectors.push(
sheet.replace(this.reOnlySelectors, ',').trim().slice(0, -1)
);
}
return selectors.join(',\n');
},
getFilteredElementCount: function() {
let selectors = this.getAllDeclarativeSelectors_(true);
return selectors.length !== 0
? document.querySelectorAll(selectors).length
: 0;
},
getAllDeclarativeSelectors: function() {
return this.getAllDeclarativeSelectors_(false);
}
};
/******************************************************************************/
/******************************************************************************/
} // <<<<<<<< end of HUGE-IF-BLOCK