mirror of https://github.com/gorhill/uBlock.git
Convert resource URLs into clickable links in code viewer
This commit is contained in:
parent
5805bb2f13
commit
bbd9470a98
|
@ -11,3 +11,10 @@ body {
|
||||||
#content {
|
#content {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cm-href {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.cm-href:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
|
@ -32,11 +32,14 @@ import { dom, qs$ } from './dom.js';
|
||||||
(async ( ) => {
|
(async ( ) => {
|
||||||
const params = new URLSearchParams(document.location.search);
|
const params = new URLSearchParams(document.location.search);
|
||||||
const url = params.get('url');
|
const url = params.get('url');
|
||||||
|
|
||||||
const a = qs$('.cm-search-widget .sourceURL');
|
const a = qs$('.cm-search-widget .sourceURL');
|
||||||
dom.attr(a, 'href', url);
|
dom.attr(a, 'href', url);
|
||||||
dom.attr(a, 'title', url);
|
dom.attr(a, 'title', url);
|
||||||
|
|
||||||
const response = await fetch(url);
|
const response = await fetch(url);
|
||||||
const text = await response.text();
|
const text = await response.text();
|
||||||
|
|
||||||
let mime = response.headers.get('Content-Type') || '';
|
let mime = response.headers.get('Content-Type') || '';
|
||||||
mime = mime.replace(/\s*;.*$/, '').trim();
|
mime = mime.replace(/\s*;.*$/, '').trim();
|
||||||
let value = '';
|
let value = '';
|
||||||
|
@ -62,6 +65,7 @@ import { dom, qs$ } from './dom.js';
|
||||||
value = text;
|
value = text;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
const cmEditor = new CodeMirror(qs$('#content'), {
|
const cmEditor = new CodeMirror(qs$('#content'), {
|
||||||
autofocus: true,
|
autofocus: true,
|
||||||
gutters: [ 'CodeMirror-linenumbers' ],
|
gutters: [ 'CodeMirror-linenumbers' ],
|
||||||
|
@ -74,9 +78,58 @@ import { dom, qs$ } from './dom.js';
|
||||||
},
|
},
|
||||||
value,
|
value,
|
||||||
});
|
});
|
||||||
|
|
||||||
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
||||||
if ( dom.cl.has(dom.html, 'dark') ) {
|
if ( dom.cl.has(dom.html, 'dark') ) {
|
||||||
dom.cl.add('#content .cm-s-default', 'cm-s-night');
|
dom.cl.add('#content .cm-s-default', 'cm-s-night');
|
||||||
dom.cl.remove('#content .cm-s-default', 'cm-s-default');
|
dom.cl.remove('#content .cm-s-default', 'cm-s-default');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert resource URLs into clickable links to code viewer
|
||||||
|
cmEditor.addOverlay({
|
||||||
|
re: /\b(?:href|src)=["']([^"']+)["']/g,
|
||||||
|
match: null,
|
||||||
|
token: function(stream) {
|
||||||
|
if ( stream.sol() ) {
|
||||||
|
this.re.lastIndex = 0;
|
||||||
|
this.match = this.re.exec(stream.string);
|
||||||
|
}
|
||||||
|
if ( this.match === null ) {
|
||||||
|
stream.skipToEnd();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const end = this.re.lastIndex - 1;
|
||||||
|
const beg = end - this.match[1].length;
|
||||||
|
if ( stream.pos < beg ) {
|
||||||
|
stream.pos = beg;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if ( stream.pos < end ) {
|
||||||
|
stream.pos = end;
|
||||||
|
return 'href';
|
||||||
|
}
|
||||||
|
if ( stream.pos < this.re.lastIndex ) {
|
||||||
|
stream.pos = this.re.lastIndex;
|
||||||
|
this.match = this.re.exec(stream.string);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
stream.skipToEnd();
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
dom.on('#content', 'click', '.cm-href', ev => {
|
||||||
|
const href = ev.target.textContent;
|
||||||
|
try {
|
||||||
|
const toURL = new URL(href, url);
|
||||||
|
vAPI.messaging.send('codeViewer', {
|
||||||
|
what: 'gotoURL',
|
||||||
|
details: {
|
||||||
|
url: `code-viewer.html?url=${encodeURIComponent(toURL.href)}`,
|
||||||
|
select: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch(ex) {
|
||||||
|
}
|
||||||
|
});
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -27,7 +27,8 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
(function(CodeMirror) {
|
{
|
||||||
|
const CodeMirror = self.CodeMirror;
|
||||||
|
|
||||||
const searchOverlay = function(query, caseInsensitive) {
|
const searchOverlay = function(query, caseInsensitive) {
|
||||||
if ( typeof query === 'string' )
|
if ( typeof query === 'string' )
|
||||||
|
@ -449,4 +450,4 @@
|
||||||
CodeMirror.defineInitHook(function(cm) {
|
CodeMirror.defineInitHook(function(cm) {
|
||||||
getSearchState(cm);
|
getSearchState(cm);
|
||||||
});
|
});
|
||||||
})(self.CodeMirror);
|
}
|
||||||
|
|
Loading…
Reference in New Issue