1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 08:52:26 +02:00
uBlock/js/element-picker.js

1063 lines
32 KiB
JavaScript
Raw Normal View History

2014-07-13 02:32:44 +02:00
/*******************************************************************************
µBlock - a Chromium browser extension to block requests.
Copyright (C) 2014 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
*/
/* global CSS, chrome */
/******************************************************************************/
/******************************************************************************/
/*! http://mths.be/cssescape v0.2.1 by @mathias | MIT license */
;(function(root) {
if (!root.CSS) {
root.CSS = {};
}
var CSS = root.CSS;
var InvalidCharacterError = function(message) {
this.message = message;
};
2014-07-25 22:12:20 +02:00
InvalidCharacterError.prototype = new Error();
2014-07-13 02:32:44 +02:00
InvalidCharacterError.prototype.name = 'InvalidCharacterError';
if (!CSS.escape) {
// http://dev.w3.org/csswg/cssom/#serialize-an-identifier
CSS.escape = function(value) {
var string = String(value);
var length = string.length;
var index = -1;
var codeUnit;
var result = '';
var firstCodeUnit = string.charCodeAt(0);
while (++index < length) {
codeUnit = string.charCodeAt(index);
// Note: theres no need to special-case astral symbols, surrogate
// pairs, or lone surrogates.
// If the character is NULL (U+0000), then throw an
// `InvalidCharacterError` exception and terminate these steps.
if (codeUnit === 0x0000) {
throw new InvalidCharacterError(
'Invalid character: the input contains U+0000.'
);
}
if (
// If the character is in the range [\1-\1F] (U+0001 to U+001F) or is
// U+007F, […]
(codeUnit >= 0x0001 && codeUnit <= 0x001F) || codeUnit == 0x007F ||
// If the character is the first character and is in the range [0-9]
// (U+0030 to U+0039), […]
(index === 0 && codeUnit >= 0x0030 && codeUnit <= 0x0039) ||
// If the character is the second character and is in the range [0-9]
// (U+0030 to U+0039) and the first character is a `-` (U+002D), […]
(
index == 1 &&
codeUnit >= 0x0030 && codeUnit <= 0x0039 &&
firstCodeUnit == 0x002D
)
) {
// http://dev.w3.org/csswg/cssom/#escape-a-character-as-code-point
result += '\\' + codeUnit.toString(16) + ' ';
continue;
}
// If the character is not handled by one of the above rules and is
// greater than or equal to U+0080, is `-` (U+002D) or `_` (U+005F), or
// is in one of the ranges [0-9] (U+0030 to U+0039), [A-Z] (U+0041 to
// U+005A), or [a-z] (U+0061 to U+007A), […]
if (
codeUnit >= 0x0080 ||
codeUnit == 0x002D ||
codeUnit == 0x005F ||
codeUnit >= 0x0030 && codeUnit <= 0x0039 ||
codeUnit >= 0x0041 && codeUnit <= 0x005A ||
codeUnit >= 0x0061 && codeUnit <= 0x007A
) {
// the character itself
result += string.charAt(index);
continue;
}
// Otherwise, the escaped character.
// http://dev.w3.org/csswg/cssom/#escape-a-character
result += '\\' + string.charAt(index);
}
return result;
};
}
2014-11-03 15:28:55 +01:00
}(window));
2014-07-13 02:32:44 +02:00
/******************************************************************************/
/******************************************************************************/
2014-07-13 15:29:56 +02:00
// Cut & pasted here from reference implementation in messaging-client.js
2014-07-13 04:53:17 +02:00
// because this is an injected script.
2014-07-13 02:32:44 +02:00
var messaging = (function(name){
var port = null;
var requestId = 1;
var requestIdToCallbackMap = {};
var listenCallback = null;
var onPortMessage = function(details) {
if ( typeof details.id !== 'number' ) {
return;
}
// Announcement?
if ( details.id < 0 ) {
if ( listenCallback ) {
listenCallback(details.msg);
}
return;
}
var callback = requestIdToCallbackMap[details.id];
if ( !callback ) {
return;
}
2014-08-28 17:08:51 +02:00
// Must be removed before calling client to be sure to not execute
// callback again if the client stops the messaging service.
2014-07-13 02:32:44 +02:00
delete requestIdToCallbackMap[details.id];
2014-08-28 17:08:51 +02:00
callback(details.msg);
2014-07-13 02:32:44 +02:00
};
var start = function(name) {
2014-09-14 22:20:40 +02:00
port = chrome.runtime.connect({ name: name });
2014-07-13 02:32:44 +02:00
port.onMessage.addListener(onPortMessage);
2014-08-28 17:08:51 +02:00
// https://github.com/gorhill/uBlock/issues/193
port.onDisconnect.addListener(stop);
};
2014-07-13 02:32:44 +02:00
var stop = function() {
listenCallback = null;
2014-08-28 17:08:51 +02:00
port.disconnect();
port = null;
flushCallbacks();
2014-07-13 02:32:44 +02:00
};
2014-08-28 17:08:51 +02:00
if ( typeof name === 'string' && name !== '' ) {
start(name);
}
2014-07-13 02:32:44 +02:00
var ask = function(msg, callback) {
2014-08-28 17:08:51 +02:00
if ( port === null ) {
if ( typeof callback === 'function' ) {
callback();
}
return;
}
if ( callback === undefined ) {
2014-07-13 02:32:44 +02:00
tell(msg);
return;
}
var id = requestId++;
port.postMessage({ id: id, msg: msg });
requestIdToCallbackMap[id] = callback;
};
var tell = function(msg) {
2014-08-28 17:08:51 +02:00
if ( port !== null ) {
port.postMessage({ id: 0, msg: msg });
}
2014-07-13 02:32:44 +02:00
};
var listen = function(callback) {
listenCallback = callback;
};
2014-08-28 17:08:51 +02:00
var flushCallbacks = function() {
var callback;
2014-09-14 22:20:40 +02:00
for ( var id in requestIdToCallbackMap ) {
2014-08-28 17:08:51 +02:00
if ( requestIdToCallbackMap.hasOwnProperty(id) === false ) {
continue;
}
callback = requestIdToCallbackMap[id];
if ( !callback ) {
continue;
}
// Must be removed before calling client to be sure to not execute
// callback again if the client stops the messaging service.
delete requestIdToCallbackMap[id];
callback();
2014-07-13 02:32:44 +02:00
}
};
return {
start: start,
stop: stop,
ask: ask,
tell: tell,
listen: listen
};
})('element-picker.js');
/******************************************************************************/
/******************************************************************************/
(function() {
/******************************************************************************/
2014-10-13 15:33:43 +02:00
// https://github.com/gorhill/uBlock/issues/314#issuecomment-58878112
// Using an id makes uBlock's CSS rules more specific, thus prevents
// surrounding external rules from winning over own rules.
var µBlockId = CSS.escape('µBlock');
2014-07-13 02:32:44 +02:00
var svgns = 'http://www.w3.org/2000/svg';
var pickerRoot = null;
var svgRoot = null;
var svgOcean = null;
var svgIslands = null;
var divDialog = null;
var taCandidate = null;
2014-09-28 18:05:46 +02:00
var urlNormalizer = null;
var netFilterCandidates = [];
var cosmeticFilterCandidates = [];
2014-07-13 02:32:44 +02:00
var targetElements = [];
2014-08-30 23:20:14 +02:00
var svgWidth = 0;
var svgHeight = 0;
2014-07-13 02:32:44 +02:00
/******************************************************************************/
var pickerPaused = function() {
return /(^| )paused( |$)/.test(pickerRoot.className);
};
/******************************************************************************/
var pausePicker = function() {
pickerRoot.className += ' paused';
};
/******************************************************************************/
var unpausePicker = function() {
pickerRoot.className = pickerRoot.className.replace(/(^| )paused( |$)/g, '').trim();
};
/******************************************************************************/
var pickerRootDistance = function(elem) {
var distance = 0;
while ( elem ) {
if ( elem === pickerRoot ) {
return distance;
}
elem = elem.parentNode;
distance += 1;
}
return -1;
};
/******************************************************************************/
var highlightElements = function(elems, force) {
// To make mouse move handler more efficient
2014-07-13 02:32:44 +02:00
if ( !force && elems.length === targetElements.length ) {
if ( elems.length === 0 || elems[0] === targetElements[0] ) {
return;
}
}
targetElements = elems;
2014-10-09 16:41:20 +02:00
2014-07-13 02:32:44 +02:00
var ow = svgRoot.getAttribute('width');
var ocean = [
'M0 0',
'h', ow,
'v', svgRoot.getAttribute('height'),
'h-', ow,
'z'
];
var offx = window.pageXOffset;
var offy = window.pageYOffset;
2014-07-13 02:32:44 +02:00
var islands = [];
// To avoid memory churning, reuse object
2014-11-03 15:28:55 +01:00
var elem, rect, poly;
2014-07-13 02:32:44 +02:00
for ( var i = 0; i < elems.length; i++ ) {
2014-11-03 15:28:55 +01:00
elem = elems[i];
if ( typeof elem.getBoundingClientRect !== 'function' ) {
continue;
}
rect = elem.getBoundingClientRect();
poly = 'M' + (rect.left + offx) + ' ' + (rect.top + offy) +
'h' + rect.width +
'v' + rect.height +
'h-' + rect.width +
'z';
ocean.push(poly);
islands.push(poly);
2014-07-13 02:32:44 +02:00
}
svgOcean.setAttribute('d', ocean.join(''));
svgIslands.setAttribute('d', islands.join(''));
};
/******************************************************************************/
var removeElements = function(elems) {
var i = elems.length, elem;
while ( i-- ) {
elem = elems[i];
if ( elem.parentNode ) {
elem.parentNode.removeChild(elem);
}
}
};
/******************************************************************************/
// Extract the best possible net filter, i.e. as specific as possible.
2014-09-28 18:05:46 +02:00
var netFilterFromElement = function(elem, out) {
2014-07-13 02:32:44 +02:00
if ( elem === null ) {
return;
}
if ( elem.nodeType !== 1 ) {
return;
}
var tagName = elem.tagName.toLowerCase();
if ( tagName !== 'img' && tagName !== 'iframe' ) {
return;
}
2014-09-26 00:10:58 +02:00
var src = elem.getAttribute('src');
if ( typeof src !== 'string' || src.length === 0 ) {
2014-07-13 02:32:44 +02:00
return;
}
2014-09-28 18:05:46 +02:00
// Remove fragment
var pos = src.indexOf('#');
if ( pos !== -1 ) {
src = src.slice(0, pos);
}
// Feed the attribute to a link element, then retrieve back: this
// should normalize it.
urlNormalizer.href = src;
src = urlNormalizer.href;
// Anchor absolute filter to hostname
src = src.replace(/^https?:\/\//, '||');
out.push(src);
// Suggest a less narrow filter if possible
pos = src.indexOf('?');
if ( pos !== -1 ) {
src = src.slice(0, pos);
out.push(src);
}
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
// Extract the best possible cosmetic filter, i.e. as specific as possible.
2014-09-28 18:05:46 +02:00
var cosmeticFilterFromElement = function(elem, out) {
2014-07-13 02:32:44 +02:00
if ( elem === null ) {
return;
}
if ( elem.nodeType !== 1 ) {
return;
}
var tagName = elem.tagName.toLowerCase();
var prefix = '';
2014-07-13 02:32:44 +02:00
var suffix = [];
var v;
// Id
v = typeof elem.id === 'string' && CSS.escape(elem.id);
if ( v ) {
suffix.push('#', v);
}
// Class(es)
v = typeof elem.className === 'string' && elem.className.trim();
if ( v.length ) {
v = v.split(/\s+/);
var i = v.length;
while ( i-- ) {
v[i] = CSS.escape(v[i]);
}
suffix.push('.', v.join('.'));
}
if ( suffix.length === 0 ) {
prefix = tagName;
}
2014-07-13 02:32:44 +02:00
// Attributes (depends on tag name)
var attributes = [], attr;
switch ( tagName ) {
case 'a':
v = elem.getAttribute('href');
if ( v ) {
v = v.replace(/\?.*$/, '');
2014-10-13 15:47:18 +02:00
if ( v.length ) {
attributes.push({ k: 'href', v: v });
}
2014-07-13 02:32:44 +02:00
}
break;
case 'img':
v = elem.getAttribute('alt');
if ( v && v.length !== 0 ) {
attributes.push({ k: 'alt', v: v });
}
break;
default:
break;
}
while ( attr = attributes.pop() ) {
if ( attr.v.length === 0 ) {
continue;
}
v = elem.getAttribute(attr.k);
if ( attr.v === v ) {
suffix.push('[', attr.k, '="', attr.v, '"]');
} else if ( v.indexOf(attr.v) === 0 ) {
suffix.push('[', attr.k, '^="', attr.v, '"]');
} else {
suffix.push('[', attr.k, '*="', attr.v, '"]');
}
}
2014-09-28 18:05:46 +02:00
out.push('##' + prefix + suffix.join(''));
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
2014-09-28 18:05:46 +02:00
var filtersFromElement = function(elem) {
netFilterCandidates.length = 0;
cosmeticFilterCandidates.length = 0;
while ( elem && elem !== document.body ) {
netFilterFromElement(elem, netFilterCandidates);
cosmeticFilterFromElement(elem, cosmeticFilterCandidates);
elem = elem.parentNode;
2014-07-13 02:32:44 +02:00
}
2014-09-28 18:05:46 +02:00
};
/******************************************************************************/
var elementsFromFilter = function(filter) {
var out = [];
// Cosmetic filters: these are straight CSS selectors
// TODO: This is still not working well for a[href], because there are
// many ways to compose a valid href to the same effective URL.
// One idea is to normalize all a[href] on the page, but for now I will
// wait and see, as I prefer to refrain from tampering with the page
// content if I can avoid it.
if ( filter.slice(0, 2) === '##' ) {
try {
out = document.querySelectorAll(filter.replace('##', ''));
}
catch (e) {
2014-07-13 02:32:44 +02:00
}
2014-09-28 18:05:46 +02:00
return out;
2014-07-13 02:32:44 +02:00
}
2014-09-28 18:05:46 +02:00
// Net filters: we need to lookup manually -- translating into a
// foolproof CSS selector is just not possible
if ( filter.slice(0, 2) === '||' ) {
filter = filter.replace('||', '');
}
var elems = document.querySelectorAll('[src]');
var i = elems.length;
var elem;
while ( i-- ) {
elem = elems[i];
if ( typeof elem.src !== 'string' ) {
continue;
}
if ( elem.src.indexOf(filter) !== -1 ) {
out.push(elem);
}
2014-07-13 02:32:44 +02:00
}
2014-09-28 18:05:46 +02:00
return out;
2014-07-13 02:32:44 +02:00
};
2014-09-28 18:05:46 +02:00
// https://www.youtube.com/watch?v=YI2XuIOW3gM
2014-07-13 02:32:44 +02:00
/******************************************************************************/
var userFilterFromCandidate = function() {
2014-09-28 18:05:46 +02:00
var v = taCandidate.value;
var elems = elementsFromFilter(v);
if ( elems.length === 0 ) {
2014-07-13 02:32:44 +02:00
return false;
}
// Cosmetic filter?
2014-09-26 00:10:58 +02:00
if ( v.slice(0, 2) === '##' ) {
return window.location.hostname + v;
2014-07-13 02:32:44 +02:00
}
2014-09-26 00:10:58 +02:00
// If domain included in filter, no need for domain option
if ( v.slice(0, 2) === '||' ) {
return v;
2014-07-13 02:32:44 +02:00
}
2014-09-26 00:10:58 +02:00
// Assume net filter
return v + '$domain=' + window.location.hostname;
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
2014-09-28 18:05:46 +02:00
var onCandidateChanged = function() {
var elems = elementsFromFilter(taCandidate.value);
divDialog.querySelector('#create').disabled = elems.length === 0;
highlightElements(elems);
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
2014-09-28 18:05:46 +02:00
var candidateFromFilterChoice = function(filterChoice) {
var slot = filterChoice.slot;
var filters = filterChoice.filters;
var filter = filters[slot];
2014-09-28 18:05:46 +02:00
if ( filter === undefined ) {
return '';
}
// For net filters there no such thing as a path
2014-09-28 18:05:46 +02:00
if ( filterChoice.type === 'net' || filterChoice.modifier ) {
return filter;
}
// Return path: the target element, then all siblings prepended
var selector = [];
2014-09-28 18:05:46 +02:00
for ( ; slot < filters.length; slot++ ) {
filter = filters[slot];
selector.unshift(filter.replace(/^##/, ''));
2014-09-26 00:10:58 +02:00
// Stop at any element with an id: these are unique in a web page
2014-09-28 18:05:46 +02:00
if ( filter.slice(0, 3) === '###' ) {
2014-09-26 00:10:58 +02:00
break;
}
}
return '##' + selector.join(' > ');
};
/******************************************************************************/
2014-09-28 18:05:46 +02:00
var filterChoiceFromEvent = function(ev) {
var li = ev.target;
var isNetFilter = li.textContent.slice(0, 2) !== '##';
var r = {
type: isNetFilter ? 'net' : 'cosmetic',
filters: isNetFilter ? netFilterCandidates : cosmeticFilterCandidates,
slot: 0,
modifier: ev.ctrlKey || ev.metaKey
};
while ( li.previousSibling !== null ) {
li = li.previousSibling;
r.slot += 1;
}
return r;
};
/******************************************************************************/
2014-07-13 02:32:44 +02:00
var onDialogClicked = function(ev) {
if ( ev.target === null ) {
/* do nothing */
}
else if ( ev.target.id === 'create' ) {
var filter = userFilterFromCandidate();
if ( filter ) {
messaging.tell({ what: 'createUserFilter', filters: filter });
2014-09-28 18:05:46 +02:00
removeElements(elementsFromFilter(taCandidate.value));
2014-07-13 02:32:44 +02:00
stopPicker();
}
}
else if ( ev.target.id === 'pick' ) {
unpausePicker();
}
else if ( ev.target.id === 'quit' ) {
stopPicker();
}
else if ( ev.target.tagName.toLowerCase() === 'li' && pickerRootDistance(ev.target) === 5 ) {
2014-09-28 18:05:46 +02:00
taCandidate.value = candidateFromFilterChoice(filterChoiceFromEvent(ev));
2014-07-13 02:32:44 +02:00
onCandidateChanged();
}
ev.stopPropagation();
ev.preventDefault();
};
/******************************************************************************/
var removeAllChildren = function(parent) {
while ( parent.firstChild ) {
parent.removeChild(parent.firstChild);
}
};
/******************************************************************************/
2014-07-13 17:44:36 +02:00
// TODO: for convenience I could provide a small set of net filters instead
// of just a single one. Truncating the right-most part of the path etc.
2014-09-28 18:05:46 +02:00
var showDialog = function(options) {
pausePicker();
options = options || {};
// Create lists of candidate filters
var populate = function(src, des) {
var root = divDialog.querySelector(des);
var ul = root.querySelector('ul');
removeAllChildren(ul);
var li;
for ( var i = 0; i < src.length; i++ ) {
li = document.createElement('li');
li.textContent = src[i];
ul.appendChild(li);
2014-07-13 02:32:44 +02:00
}
2014-09-28 18:05:46 +02:00
root.style.display = src.length !== 0 ? '' : 'none';
};
2014-09-28 22:11:32 +02:00
populate(netFilterCandidates, '#netFilters');
populate(cosmeticFilterCandidates, '#cosmeticFilters');
2014-09-28 18:05:46 +02:00
divDialog.querySelector('ul').style.display = netFilterCandidates.length || cosmeticFilterCandidates.length ? '' : 'none';
divDialog.querySelector('#create').disabled = true;
// Auto-select a candidate filter
var filterChoice = {
type: '',
filters: [],
slot: 0,
modifier: options.modifier || false
};
if ( netFilterCandidates.length ) {
filterChoice.type = 'net';
filterChoice.filters = netFilterCandidates;
} else if ( cosmeticFilterCandidates.length ) {
filterChoice.type = 'cosmetic';
filterChoice.filters = cosmeticFilterCandidates;
2014-07-13 02:32:44 +02:00
}
2014-09-28 18:05:46 +02:00
2014-07-13 02:32:44 +02:00
taCandidate.value = '';
2014-09-28 18:05:46 +02:00
if ( filterChoice.type !== '' ) {
taCandidate.value = candidateFromFilterChoice(filterChoice);
onCandidateChanged();
}
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
2014-09-28 20:38:17 +02:00
var elementFromPoint = function(x, y) {
svgRoot.style.pointerEvents = 'none';
var elem = document.elementFromPoint(x, y);
if ( elem === document.body || elem === document.documentElement ) {
elem = null;
}
svgRoot.style.pointerEvents = 'auto';
return elem;
};
/******************************************************************************/
2014-07-13 02:32:44 +02:00
var onSvgHovered = function(ev) {
if ( pickerPaused() ) {
return;
}
2014-09-28 20:38:17 +02:00
var elem = elementFromPoint(ev.clientX, ev.clientY);
2014-07-13 02:32:44 +02:00
highlightElements(elem ? [elem] : []);
};
/******************************************************************************/
2014-09-28 20:38:17 +02:00
var onSvgClicked = function(ev) {
2014-07-13 02:32:44 +02:00
if ( pickerPaused() ) {
return;
}
2014-09-28 20:38:17 +02:00
var elem = elementFromPoint(ev.clientX, ev.clientY);
if ( elem === null ) {
return;
}
filtersFromElement(elem);
2014-09-28 18:05:46 +02:00
showDialog();
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
var onKeyPressed = function(ev) {
if ( ev.key === 27 || ev.keyCode === 27 ) {
ev.stopPropagation();
ev.preventDefault();
stopPicker();
}
};
/******************************************************************************/
2014-08-30 23:22:31 +02:00
// https://github.com/gorhill/uBlock/issues/190
// May need to dynamically adjust the height of the overlay + new position
// of highlighted elements.
2014-09-28 20:38:17 +02:00
var onScrolled = function() {
2014-08-30 23:20:14 +02:00
var newHeight = this.scrollY + this.innerHeight;
if ( newHeight > svgHeight ) {
svgHeight = newHeight;
svgRoot.setAttribute('height', svgHeight);
svgRoot.setAttribute("viewBox", '0 0 ' + svgWidth + ' ' + svgHeight);
}
highlightElements(targetElements, true);
};
/******************************************************************************/
2014-09-28 18:05:46 +02:00
// Let's have the element picker code flushed from memory when no longer
// in use: to ensure this, release all local references.
var stopPicker = function() {
if ( pickerRoot !== null ) {
document.removeEventListener('keydown', onKeyPressed);
2014-08-30 23:20:14 +02:00
window.removeEventListener('scroll', onScrolled);
taCandidate.removeEventListener('input', onCandidateChanged);
divDialog.removeEventListener('click', onDialogClicked);
svgRoot.removeEventListener('mousemove', onSvgHovered);
svgRoot.removeEventListener('click', onSvgClicked);
2014-11-03 15:28:55 +01:00
document.documentElement.removeChild(pickerRoot);
2014-09-28 18:05:46 +02:00
pickerRoot =
divDialog =
svgRoot = svgOcean = svgIslands =
taCandidate =
urlNormalizer = null;
messaging.stop();
}
targetElements = [];
};
/******************************************************************************/
var startPicker = function() {
2014-10-13 15:33:43 +02:00
pickerRoot = document.getElementById(µBlockId);
2014-07-13 02:32:44 +02:00
if ( pickerRoot !== null ) {
return;
}
pickerRoot = document.createElement('div');
2014-10-13 15:33:43 +02:00
pickerRoot.id = µBlockId;
2014-07-13 02:32:44 +02:00
var pickerStyle = document.createElement('style');
pickerStyle.setAttribute('scoped', '');
pickerStyle.textContent = [
2014-10-13 15:33:43 +02:00
'#µBlock, #µBlock * {',
2014-09-05 19:16:18 +02:00
'background: transparent;',
2014-10-13 15:33:43 +02:00
'background-image: none;',
2014-07-13 02:32:44 +02:00
'border: 0;',
2014-10-13 15:33:43 +02:00
'border-radius: 0;',
'box-shadow: none;',
2014-09-05 19:16:18 +02:00
'color: #000;',
2014-07-13 02:32:44 +02:00
'font: 12px sans-serif;',
2014-10-19 16:50:19 +02:00
'height: auto;',
2014-10-11 18:22:46 +02:00
'letter-spacing: normal;',
2014-09-05 19:16:18 +02:00
'margin: 0;',
2014-09-28 18:05:46 +02:00
'max-width: none;',
2014-10-13 15:33:43 +02:00
'min-height: 0;',
2014-09-05 19:16:18 +02:00
'outline: 0;',
'overflow: visible;',
'padding: 0;',
2014-07-13 02:32:44 +02:00
'text-transform: none;',
'vertical-align: baseline;',
2014-09-29 14:38:02 +02:00
'z-index: auto;',
2014-07-13 02:32:44 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock {',
'position: absolute;',
'top: 0;',
'left: 0;',
'}',
'#µBlock li {',
2014-10-11 18:22:46 +02:00
'display: block;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock button {',
2014-07-13 02:32:44 +02:00
'border: 1px solid #aaa;',
'padding: 6px 8px 4px 8px;',
'box-sizing: border-box;',
'box-shadow: none;',
'border-radius: 3px;',
'display: inline;',
2014-07-13 02:32:44 +02:00
'line-height: 1;',
'color: #444;',
'background-color: #ccc;',
'cursor: pointer;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock button:hover {',
'background: none;',
2014-07-13 02:32:44 +02:00
'background-color: #eee;',
2014-10-13 15:33:43 +02:00
'background-image: none;',
2014-07-13 02:32:44 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock button:disabled {',
2014-07-13 02:32:44 +02:00
'color: #999;',
'background-color: #ccc;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock button#create:not(:disabled) {',
2014-09-28 18:05:46 +02:00
'background-color: #ffdca8;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > svg {',
2014-07-13 02:32:44 +02:00
'position: absolute;',
'top: 0;',
'left: 0;',
2014-09-19 20:18:14 +02:00
'pointer-events: auto;',
2014-07-13 02:32:44 +02:00
'cursor: crosshair;',
'z-index: 4999999999;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock.paused > svg {',
2014-07-13 02:32:44 +02:00
'cursor: wait;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > svg > path:first-child {',
2014-07-13 02:32:44 +02:00
'fill: rgba(0,0,0,0.75);',
'fill-rule: evenodd;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > svg > path + path {',
2014-07-13 02:32:44 +02:00
'stroke: #F00;',
'stroke-width: 0.5px;',
'fill: rgba(255,0,0,0.25);',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div {',
2014-07-13 02:32:44 +02:00
'padding: 4px;',
'display: none;',
'position: fixed;',
'right: 4px;',
'bottom: 4px;',
'width: 30em;',
'font: 12px sans-serif;',
'background-color: rgba(255,255,255,0.9);',
'z-index: 5999999999;',
2014-10-04 20:17:17 +02:00
'direction: ', chrome.i18n.getMessage('@@bidi_dir'), ';',
2014-07-13 02:32:44 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock.paused > div {',
'opacity: 0.2;',
2014-07-13 02:32:44 +02:00
'display: initial;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock.paused > div:hover {',
'opacity: 1;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > div {',
2014-07-13 02:32:44 +02:00
'padding: 0;',
'box-sizing: border-box;',
'width: 100%;',
'height: 8em;',
2014-07-13 02:32:44 +02:00
'position: relative;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > div > textarea {',
2014-07-13 02:32:44 +02:00
'border: 1px solid #ccc;',
'padding: 2px;',
'box-sizing: border-box;',
2014-10-19 16:50:19 +02:00
'width: 100% !important;',
'height: 100% !important;',
'overflow: hidden !important;',
2014-07-13 02:32:44 +02:00
'resize: none;',
'background-color: white;',
'font: 11px monospace;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > div > div {',
2014-07-13 02:32:44 +02:00
'position: absolute;',
'right: 2px;',
'bottom: 2px;',
'opacity: 0.2;',
2014-10-04 20:17:17 +02:00
'direction: ltr;',
2014-07-13 02:32:44 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > div > div:hover {',
2014-07-13 02:32:44 +02:00
'opacity: 1;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > div > div > button {',
'margin-left: 3px !important;',
2014-07-13 02:32:44 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul {',
2014-07-13 02:32:44 +02:00
'margin: 0;',
'border: 1px solid #ccc;',
'padding: 3px;',
'list-style-type: none;',
'text-align: left;',
'overflow: hidden;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li {',
2014-10-04 20:17:17 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li:not(:first-child) {',
2014-09-28 18:05:46 +02:00
'margin-top: 0.5em;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li > span:nth-of-type(1) {',
2014-09-28 18:05:46 +02:00
'font-weight: bold;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li > span:nth-of-type(2) {',
2014-09-28 18:05:46 +02:00
'font-size: smaller;',
'color: gray;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li > ul {',
2014-07-13 02:32:44 +02:00
'margin: 0 0 0 1em;',
'list-style-type: none;',
'text-align: left;',
'background-color: #eee;',
'overflow: hidden;',
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li > ul > li {',
2014-07-13 02:32:44 +02:00
'font: 11px monospace;',
'white-space: nowrap;',
'cursor: pointer;',
2014-10-04 20:17:17 +02:00
'direction: ltr;',
2014-07-13 02:32:44 +02:00
'}',
2014-10-13 15:33:43 +02:00
'#µBlock > div > ul > li > ul > li:hover {',
2014-07-13 02:32:44 +02:00
'background-color: rgba(255,255,255,1.0);',
'}',
''
].join('\n');
pickerRoot.appendChild(pickerStyle);
svgRoot = document.createElementNS(svgns, 'svg');
svgRoot.innerHTML = '<path /><path />';
2014-08-30 23:20:14 +02:00
svgWidth = document.documentElement.scrollWidth;
svgHeight = Math.max(
document.documentElement.scrollHeight,
window.scrollY + window.innerHeight
);
2014-07-13 02:32:44 +02:00
svgRoot.setAttribute('x', 0);
svgRoot.setAttribute('y', 0);
svgRoot.setAttribute('width', svgWidth);
svgRoot.setAttribute('height', svgHeight);
svgRoot.setAttribute("viewBox", '0 0 ' + svgWidth + ' ' + svgHeight);
2014-07-13 02:32:44 +02:00
svgOcean = svgRoot.querySelector('path:first-child');
svgIslands = svgRoot.querySelector('path + path');
pickerRoot.appendChild(svgRoot);
2014-07-13 04:53:17 +02:00
// TODO: do not rely on element ids, they could collide with whatever
// is used in the page. Just use built-in hierarchy of elements as
// selectors.
2014-07-13 02:32:44 +02:00
divDialog = document.createElement('div');
divDialog.innerHTML = [
'<div>',
2014-10-04 20:17:17 +02:00
'<textarea dir="ltr" spellcheck="false"></textarea>',
2014-07-13 02:32:44 +02:00
'<div>',
'<button id="create" type="button" disabled>.</button>',
'<button id="pick" type="button">.</button>',
'<button id="quit" type="button">.</button>',
'</div>',
'</div>',
'<ul>',
2014-09-28 22:11:32 +02:00
'<li id="netFilters"><span>.</span><ul></ul>',
2014-10-04 20:17:17 +02:00
'<li id="cosmeticFilters"><span>.</span>&ensp;<span>.</span><ul></ul>',
2014-07-13 02:32:44 +02:00
'</ul>',
''
].join('');
pickerRoot.appendChild(divDialog);
2014-11-03 15:28:55 +01:00
// https://github.com/gorhill/uBlock/issues/344#issuecomment-60775958
// Insert in `html` tag, not `body` tag.
document.documentElement.appendChild(pickerRoot);
2014-07-13 02:32:44 +02:00
svgRoot.addEventListener('click', onSvgClicked);
svgRoot.addEventListener('mousemove', onSvgHovered);
divDialog.addEventListener('click', onDialogClicked);
taCandidate = divDialog.querySelector('textarea');
taCandidate.addEventListener('input', onCandidateChanged);
2014-09-28 18:05:46 +02:00
urlNormalizer = document.createElement('a');
2014-08-30 23:20:14 +02:00
window.addEventListener('scroll', onScrolled);
document.addEventListener('keydown', onKeyPressed);
2014-09-28 20:58:26 +02:00
highlightElements([], true);
2014-07-13 02:32:44 +02:00
var initPicker = function(details) {
var i18nMap = {
'#create': 'create',
'#pick': 'pick',
'#quit': 'quit',
'ul > li#netFilters > span:nth-of-type(1)': 'netFilters',
'ul > li#cosmeticFilters > span:nth-of-type(1)': 'cosmeticFilters',
'ul > li#cosmeticFilters > span:nth-of-type(2)': 'cosmeticFiltersHint'
};
for ( var k in i18nMap ) {
if ( i18nMap.hasOwnProperty(k) === false ) {
continue;
}
divDialog.querySelector(k).firstChild.nodeValue = details.i18n[i18nMap[k]];
}
2014-07-13 02:32:44 +02:00
// Auto-select a specific target, if any, and if possible
var elem;
2014-07-13 02:32:44 +02:00
// Try using mouse position
if ( details.clientX !== -1 ) {
elem = elementFromPoint(details.clientX, details.clientY);
if ( elem !== null ) {
filtersFromElement(elem);
showDialog();
return;
}
2014-09-28 18:05:46 +02:00
}
// No mouse position available, use suggested target
var target = details.target || '';
var pos = target.indexOf('\t');
if ( pos === -1 ) {
2014-09-28 20:58:26 +02:00
return;
}
var srcAttrMap = {
'a': 'href',
'img': 'src',
'iframe': 'src',
'video': 'src',
'audio': 'src'
};
var tagName = target.slice(0, pos);
var url = target.slice(pos + 1);
var attr = srcAttrMap[tagName];
if ( attr === undefined ) {
return;
2014-09-28 18:05:46 +02:00
}
var elems = document.querySelectorAll(tagName + '[' + attr + ']');
var i = elems.length;
var src;
while ( i-- ) {
elem = elems[i];
src = elem[attr];
if ( typeof src !== 'string' || src === '' ) {
continue;
}
if ( src !== url ) {
continue;
}
filtersFromElement(elem);
showDialog({ modifier: true });
return;
2014-09-28 18:05:46 +02:00
}
};
messaging.ask({ what: 'elementPickerArguments' }, initPicker);
};
/******************************************************************************/
startPicker();
/******************************************************************************/
2014-07-13 02:32:44 +02:00
2014-09-28 20:58:26 +02:00
// https://www.youtube.com/watch?v=sociXdKnyr8
2014-07-13 02:32:44 +02:00
/******************************************************************************/
})();