mirror of https://github.com/gorhill/uBlock.git
Improve suggested candidate filters in element picker
Additionally, fix eslint warnings.
This commit is contained in:
parent
89fa666bc4
commit
c0b56cffab
|
@ -16,6 +16,7 @@ rules:
|
||||||
- Program > ExpressionStatement > CallExpression > ArrowFunctionExpression > BlockStatement
|
- Program > ExpressionStatement > CallExpression > ArrowFunctionExpression > BlockStatement
|
||||||
- CallExpression > MemberExpression
|
- CallExpression > MemberExpression
|
||||||
- ArrayExpression > *
|
- ArrayExpression > *
|
||||||
|
- ObjectExpression > *
|
||||||
no-control-regex: off
|
no-control-regex: off
|
||||||
no-empty: off
|
no-empty: off
|
||||||
sort-imports: warn
|
sort-imports: warn
|
||||||
|
|
|
@ -21,14 +21,13 @@
|
||||||
|
|
||||||
/* global CodeMirror */
|
/* global CodeMirror */
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
import './codemirror/ubo-static-filtering.js';
|
import './codemirror/ubo-static-filtering.js';
|
||||||
|
|
||||||
|
import * as sfp from './static-filtering-parser.js';
|
||||||
|
|
||||||
|
import { dom } from './dom.js';
|
||||||
import { hostnameFromURI } from './uri-utils.js';
|
import { hostnameFromURI } from './uri-utils.js';
|
||||||
import punycode from '../lib/punycode.js';
|
import punycode from '../lib/punycode.js';
|
||||||
import * as sfp from './static-filtering-parser.js';
|
|
||||||
import { dom } from './dom.js';
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -63,13 +62,10 @@ const reCosmeticAnchor = /^#(\$|\?|\$\?)?#/;
|
||||||
|
|
||||||
const docURL = new URL(vAPI.getURL(''));
|
const docURL = new URL(vAPI.getURL(''));
|
||||||
|
|
||||||
let resultsetOpt;
|
|
||||||
|
|
||||||
let netFilterCandidates = [];
|
|
||||||
let cosmeticFilterCandidates = [];
|
|
||||||
let computedCandidateSlot = 0;
|
|
||||||
let computedCandidate = '';
|
|
||||||
const computedSpecificityCandidates = new Map();
|
const computedSpecificityCandidates = new Map();
|
||||||
|
let resultsetOpt;
|
||||||
|
let cosmeticFilterCandidates = [];
|
||||||
|
let computedCandidate = '';
|
||||||
let needBody = false;
|
let needBody = false;
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
@ -183,7 +179,6 @@ const candidateFromFilterChoice = function(filterChoice) {
|
||||||
elem.classList.remove('active');
|
elem.classList.remove('active');
|
||||||
}
|
}
|
||||||
|
|
||||||
computedCandidateSlot = slot;
|
|
||||||
computedCandidate = '';
|
computedCandidate = '';
|
||||||
|
|
||||||
if ( filter === undefined ) { return ''; }
|
if ( filter === undefined ) { return ''; }
|
||||||
|
@ -726,7 +721,6 @@ const svgListening = (( ) => {
|
||||||
// current mode is narrow or broad.
|
// current mode is narrow or broad.
|
||||||
|
|
||||||
const populateCandidates = function(candidates, selector) {
|
const populateCandidates = function(candidates, selector) {
|
||||||
|
|
||||||
const root = dialog.querySelector(selector);
|
const root = dialog.querySelector(selector);
|
||||||
const ul = root.querySelector('ul');
|
const ul = root.querySelector('ul');
|
||||||
while ( ul.firstChild !== null ) {
|
while ( ul.firstChild !== null ) {
|
||||||
|
@ -751,8 +745,6 @@ const showDialog = function(details) {
|
||||||
|
|
||||||
const { netFilters, cosmeticFilters, filter } = details;
|
const { netFilters, cosmeticFilters, filter } = details;
|
||||||
|
|
||||||
netFilterCandidates = netFilters;
|
|
||||||
|
|
||||||
needBody =
|
needBody =
|
||||||
cosmeticFilters.length !== 0 &&
|
cosmeticFilters.length !== 0 &&
|
||||||
cosmeticFilters[cosmeticFilters.length - 1] === '##body';
|
cosmeticFilters[cosmeticFilters.length - 1] === '##body';
|
||||||
|
|
|
@ -19,19 +19,12 @@
|
||||||
Home: https://github.com/gorhill/uBlock
|
Home: https://github.com/gorhill/uBlock
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* global CSS */
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
/******************************************************************************/
|
|
||||||
/******************************************************************************/
|
|
||||||
|
|
||||||
(async ( ) => {
|
(async ( ) => {
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
if ( typeof vAPI !== 'object' ) { return; }
|
if ( typeof vAPI !== 'object' ) { return; }
|
||||||
if ( typeof vAPI === null ) { return; }
|
if ( vAPI === null ) { return; }
|
||||||
|
|
||||||
if ( vAPI.pickerFrame ) { return; }
|
if ( vAPI.pickerFrame ) { return; }
|
||||||
vAPI.pickerFrame = true;
|
vAPI.pickerFrame = true;
|
||||||
|
@ -902,6 +895,20 @@ const onOptimizeCandidates = function(details) {
|
||||||
if ( r !== 0 ) { return r; }
|
if ( r !== 0 ) { return r; }
|
||||||
return a.selector.length - b.selector.length;
|
return a.selector.length - b.selector.length;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// If two candidates have the same count of matching elements, replace
|
||||||
|
// the less specific cosmetic filters with the more specific one if the
|
||||||
|
// less specific one has an id and is simpler
|
||||||
|
for ( let i = 0, n = results.length-1; i < n; i++ ) {
|
||||||
|
const a = results[i+0];
|
||||||
|
const b = results[i+1];
|
||||||
|
if ( b.count !== a.count ) { continue; }
|
||||||
|
if ( b.selector.length <= a.selector.length ) { continue; }
|
||||||
|
if ( a.selector.startsWith('#') === false ) { continue; }
|
||||||
|
if ( b.selector.length < a.selector.length ) { continue; }
|
||||||
|
b.selector = a.selector;
|
||||||
|
}
|
||||||
|
|
||||||
pickerFramePort.postMessage({
|
pickerFramePort.postMessage({
|
||||||
what: 'candidatesOptimized',
|
what: 'candidatesOptimized',
|
||||||
candidates: results.map(a => a.selector),
|
candidates: results.map(a => a.selector),
|
||||||
|
|
Loading…
Reference in New Issue