2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-10-13 19:25:57 +02:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-12-22 19:35:46 +01:00
|
|
|
Copyright (C) 2014-present Raymond Hill
|
2014-06-24 00:42:43 +02: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
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
2018-04-10 14:14:10 +02:00
|
|
|
/* global CodeMirror, uDom */
|
|
|
|
|
2014-10-19 13:11:27 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-08-12 18:17:39 +02:00
|
|
|
self.uBlockDashboard = self.uBlockDashboard || {};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Helper for client panes:
|
|
|
|
// Remove literal duplicate lines from a set based on another set.
|
|
|
|
|
2015-08-15 15:24:55 +02:00
|
|
|
self.uBlockDashboard.mergeNewLines = function(text, newText) {
|
2015-08-12 18:17:39 +02:00
|
|
|
// Step 1: build dictionary for existing lines.
|
2019-04-21 00:57:16 +02:00
|
|
|
const fromDict = new Map();
|
2018-12-22 19:35:46 +01:00
|
|
|
let lineBeg = 0;
|
|
|
|
let textEnd = text.length;
|
2015-08-12 18:17:39 +02:00
|
|
|
while ( lineBeg < textEnd ) {
|
2018-12-22 19:35:46 +01:00
|
|
|
let lineEnd = text.indexOf('\n', lineBeg);
|
2015-08-12 18:17:39 +02:00
|
|
|
if ( lineEnd === -1 ) {
|
|
|
|
lineEnd = text.indexOf('\r', lineBeg);
|
|
|
|
if ( lineEnd === -1 ) {
|
|
|
|
lineEnd = textEnd;
|
|
|
|
}
|
|
|
|
}
|
2019-04-21 00:57:16 +02:00
|
|
|
const line = text.slice(lineBeg, lineEnd).trim();
|
2015-08-12 18:17:39 +02:00
|
|
|
lineBeg = lineEnd + 1;
|
2019-04-21 00:57:16 +02:00
|
|
|
if ( line.length === 0 ) { continue; }
|
2018-12-22 19:35:46 +01:00
|
|
|
const hash = line.slice(0, 8);
|
2019-04-21 00:57:16 +02:00
|
|
|
const bucket = fromDict.get(hash);
|
2015-08-12 18:17:39 +02:00
|
|
|
if ( bucket === undefined ) {
|
2019-04-21 00:57:16 +02:00
|
|
|
fromDict.set(hash, line);
|
2015-08-12 18:17:39 +02:00
|
|
|
} else if ( typeof bucket === 'string' ) {
|
2019-04-21 00:57:16 +02:00
|
|
|
fromDict.set(hash, [ bucket, line ]);
|
2015-08-12 18:17:39 +02:00
|
|
|
} else /* if ( Array.isArray(bucket) ) */ {
|
|
|
|
bucket.push(line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Step 2: use above dictionary to filter out duplicate lines.
|
2018-12-22 19:35:46 +01:00
|
|
|
const out = [ '' ];
|
2015-08-12 18:17:39 +02:00
|
|
|
lineBeg = 0;
|
|
|
|
textEnd = newText.length;
|
|
|
|
while ( lineBeg < textEnd ) {
|
2018-12-22 19:35:46 +01:00
|
|
|
let lineEnd = newText.indexOf('\n', lineBeg);
|
2015-08-12 18:17:39 +02:00
|
|
|
if ( lineEnd === -1 ) {
|
|
|
|
lineEnd = newText.indexOf('\r', lineBeg);
|
|
|
|
if ( lineEnd === -1 ) {
|
|
|
|
lineEnd = textEnd;
|
|
|
|
}
|
|
|
|
}
|
2019-04-21 00:57:16 +02:00
|
|
|
const line = newText.slice(lineBeg, lineEnd).trim();
|
2015-08-12 18:17:39 +02:00
|
|
|
lineBeg = lineEnd + 1;
|
|
|
|
if ( line.length === 0 ) {
|
|
|
|
if ( out[out.length - 1] !== '' ) {
|
|
|
|
out.push('');
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2019-04-21 00:57:16 +02:00
|
|
|
const bucket = fromDict.get(line.slice(0, 8));
|
2015-08-12 18:17:39 +02:00
|
|
|
if ( bucket === undefined ) {
|
|
|
|
out.push(line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ( typeof bucket === 'string' && line !== bucket ) {
|
|
|
|
out.push(line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ( bucket.indexOf(line) === -1 ) {
|
|
|
|
out.push(line);
|
|
|
|
/* continue; */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-21 00:57:16 +02:00
|
|
|
const append = out.join('\n').trim();
|
|
|
|
if ( text !== '' && append !== '' ) {
|
|
|
|
text += '\n\n';
|
|
|
|
}
|
|
|
|
return text + append;
|
2015-08-12 18:17:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2016-10-13 19:25:57 +02:00
|
|
|
self.uBlockDashboard.dateNowToSensibleString = function() {
|
2018-12-22 19:35:46 +01:00
|
|
|
const now = new Date(Date.now() - (new Date()).getTimezoneOffset() * 60000);
|
2016-10-13 19:25:57 +02:00
|
|
|
return now.toISOString().replace(/\.\d+Z$/, '')
|
|
|
|
.replace(/:/g, '.')
|
|
|
|
.replace('T', '_');
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2018-03-28 01:10:31 +02:00
|
|
|
self.uBlockDashboard.patchCodeMirrorEditor = (function() {
|
2018-12-22 19:35:46 +01:00
|
|
|
let grabFocusTimer;
|
|
|
|
let grabFocusTarget;
|
|
|
|
|
|
|
|
const grabFocus = function() {
|
2018-03-28 15:11:55 +02:00
|
|
|
grabFocusTarget.focus();
|
|
|
|
grabFocusTimer = grabFocusTarget = undefined;
|
|
|
|
};
|
2018-12-22 19:35:46 +01:00
|
|
|
const grabFocusAsync = function(cm) {
|
2018-03-28 15:11:55 +02:00
|
|
|
grabFocusTarget = cm;
|
|
|
|
if ( grabFocusTimer === undefined ) {
|
|
|
|
grabFocusTimer = vAPI.setTimeout(grabFocus, 1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-03-28 01:10:31 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/3646
|
2018-12-22 19:35:46 +01:00
|
|
|
const patchSelectAll = function(cm, details) {
|
2018-03-28 01:10:31 +02:00
|
|
|
var vp = cm.getViewport();
|
|
|
|
if ( details.ranges.length !== 1 ) { return; }
|
|
|
|
var range = details.ranges[0],
|
|
|
|
lineFrom = range.anchor.line,
|
|
|
|
lineTo = range.head.line;
|
2018-03-28 15:43:48 +02:00
|
|
|
if ( lineTo === lineFrom ) { return; }
|
2018-03-28 01:10:31 +02:00
|
|
|
if ( range.head.ch !== 0 ) { lineTo += 1; }
|
|
|
|
if ( lineFrom !== vp.from || lineTo !== vp.to ) { return; }
|
|
|
|
details.update([
|
|
|
|
{
|
|
|
|
anchor: { line: 0, ch: 0 },
|
|
|
|
head: { line: cm.lineCount(), ch: 0 }
|
|
|
|
}
|
|
|
|
]);
|
2018-03-28 15:11:55 +02:00
|
|
|
grabFocusAsync(cm);
|
|
|
|
};
|
|
|
|
|
2018-12-22 19:35:46 +01:00
|
|
|
let lastGutterClick = 0;
|
|
|
|
let lastGutterLine = 0;
|
2018-03-28 15:11:55 +02:00
|
|
|
|
2018-12-22 19:35:46 +01:00
|
|
|
const onGutterClicked = function(cm, line) {
|
|
|
|
const delta = Date.now() - lastGutterClick;
|
2018-03-28 15:11:55 +02:00
|
|
|
if ( delta >= 500 || line !== lastGutterLine ) {
|
|
|
|
cm.setSelection(
|
|
|
|
{ line: line, ch: 0 },
|
|
|
|
{ line: line + 1, ch: 0 }
|
|
|
|
);
|
|
|
|
lastGutterClick = Date.now();
|
|
|
|
lastGutterLine = line;
|
|
|
|
} else {
|
|
|
|
cm.setSelection(
|
|
|
|
{ line: 0, ch: 0 },
|
|
|
|
{ line: cm.lineCount(), ch: 0 },
|
|
|
|
{ scroll: false }
|
|
|
|
);
|
|
|
|
lastGutterClick = 0;
|
|
|
|
}
|
|
|
|
grabFocusAsync(cm);
|
2018-03-28 01:10:31 +02:00
|
|
|
};
|
|
|
|
|
2018-12-22 19:35:46 +01:00
|
|
|
let resizeTimer,
|
2018-04-10 14:08:28 +02:00
|
|
|
resizeObserver;
|
2018-12-22 19:35:46 +01:00
|
|
|
const resize = function(cm) {
|
2018-03-28 22:15:50 +02:00
|
|
|
resizeTimer = undefined;
|
2018-12-22 19:35:46 +01:00
|
|
|
const child = document.querySelector('.codeMirrorFillVertical');
|
2018-04-10 14:08:28 +02:00
|
|
|
if ( child === null ) { return; }
|
2018-12-22 19:35:46 +01:00
|
|
|
const prect = document.documentElement.getBoundingClientRect();
|
|
|
|
const crect = child.getBoundingClientRect();
|
|
|
|
const cssHeight = Math.floor(Math.max(prect.bottom - crect.top, 80)) + 'px';
|
|
|
|
if ( child.style.height === cssHeight ) { return; }
|
|
|
|
child.style.height = cssHeight;
|
|
|
|
// https://github.com/gorhill/uBlock/issues/3694
|
|
|
|
// Need to call cm.refresh() when resizing occurs. However the
|
|
|
|
// cursor position may end up outside the viewport, hence we also
|
|
|
|
// call cm.scrollIntoView() to address this.
|
|
|
|
// Reference: https://codemirror.net/doc/manual.html#api_sizing
|
|
|
|
if ( cm instanceof CodeMirror ) {
|
|
|
|
cm.refresh();
|
|
|
|
cm.scrollIntoView(null);
|
2018-04-10 14:08:28 +02:00
|
|
|
}
|
|
|
|
};
|
2018-12-22 19:35:46 +01:00
|
|
|
const resizeAsync = function(cm, delay) {
|
2018-04-10 14:08:28 +02:00
|
|
|
if ( resizeTimer !== undefined ) { return; }
|
|
|
|
resizeTimer = vAPI.setTimeout(
|
|
|
|
resize.bind(null, cm),
|
|
|
|
typeof delay === 'number' ? delay : 66
|
|
|
|
);
|
2018-03-28 22:15:50 +02:00
|
|
|
};
|
|
|
|
|
2018-03-28 01:10:31 +02:00
|
|
|
return function(cm) {
|
2018-03-28 22:15:50 +02:00
|
|
|
if ( document.querySelector('.codeMirrorFillVertical') !== null ) {
|
2018-12-22 19:35:46 +01:00
|
|
|
const boundResizeAsync = resizeAsync.bind(null, cm);
|
2018-04-10 14:08:28 +02:00
|
|
|
window.addEventListener('resize', boundResizeAsync);
|
|
|
|
resizeObserver = new MutationObserver(boundResizeAsync);
|
|
|
|
resizeObserver.observe(document.querySelector('.body'), {
|
|
|
|
childList: true,
|
|
|
|
subtree: true
|
2018-03-28 22:15:50 +02:00
|
|
|
});
|
2018-04-10 14:08:28 +02:00
|
|
|
resizeAsync(cm, 1);
|
2018-03-28 22:15:50 +02:00
|
|
|
}
|
2018-03-28 01:10:31 +02:00
|
|
|
if ( cm.options.inputStyle === 'contenteditable' ) {
|
|
|
|
cm.on('beforeSelectionChange', patchSelectAll);
|
|
|
|
}
|
2018-03-28 15:11:55 +02:00
|
|
|
cm.on('gutterClick', onGutterClicked);
|
2018-03-28 01:10:31 +02:00
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-08-15 15:24:55 +02:00
|
|
|
// Open links in the proper window
|
2017-04-29 16:07:18 +02:00
|
|
|
uDom('a').attr('target', '_blank');
|
2015-08-15 15:24:55 +02:00
|
|
|
uDom('a[href*="dashboard.html"]').attr('target', '_parent');
|
|
|
|
uDom('.whatisthis').on('click', function() {
|
|
|
|
uDom(this)
|
|
|
|
.parent()
|
|
|
|
.descendants('.whatisthis-expandable')
|
2016-08-13 22:42:58 +02:00
|
|
|
.first()
|
2015-08-15 15:24:55 +02:00
|
|
|
.toggleClass('whatisthis-expanded');
|
|
|
|
});
|