mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-17 07:52:42 +01:00
feaa338678
`uDom` is old and crusty and `dom` is meant as replacement. The goal of `dom` is to be simpler and mainly just convenience methods for handling the DOM with vanilla JS -- this is not a framework. Additionally, removed keyboard shortcuts pane which was useful only on very old versions of Firefox.
106 lines
3.4 KiB
JavaScript
106 lines
3.4 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
|
Copyright (C) 2014-present 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 CodeMirror, uBlockDashboard */
|
|
|
|
'use strict';
|
|
|
|
/******************************************************************************/
|
|
|
|
import { dom, qs$ } from './dom.js';
|
|
import './codemirror/ubo-static-filtering.js';
|
|
|
|
/******************************************************************************/
|
|
|
|
(async ( ) => {
|
|
const subscribeURL = new URL(document.location);
|
|
const subscribeParams = subscribeURL.searchParams;
|
|
const assetKey = subscribeParams.get('url');
|
|
if ( assetKey === null ) { return; }
|
|
|
|
const subscribeElem = subscribeParams.get('subscribe') !== null
|
|
? qs$('#subscribe')
|
|
: null;
|
|
if ( subscribeElem !== null && subscribeURL.hash !== '#subscribed' ) {
|
|
const title = subscribeParams.get('title');
|
|
const promptElem = qs$('#subscribePrompt');
|
|
dom.text(promptElem.children[0], title);
|
|
const a = promptElem.children[1];
|
|
dom.text(a, assetKey);
|
|
dom.attr(a, 'href', assetKey);
|
|
dom.cl.remove(subscribeElem, 'hide');
|
|
}
|
|
|
|
const cmEditor = new CodeMirror(qs$('#content'), {
|
|
autofocus: true,
|
|
foldGutter: true,
|
|
gutters: [ 'CodeMirror-linenumbers', 'CodeMirror-foldgutter' ],
|
|
lineNumbers: true,
|
|
lineWrapping: true,
|
|
matchBrackets: true,
|
|
maxScanLines: 1,
|
|
readOnly: true,
|
|
styleActiveLine: {
|
|
nonEmpty: true,
|
|
},
|
|
});
|
|
|
|
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
|
|
|
const hints = await vAPI.messaging.send('dashboard', {
|
|
what: 'getAutoCompleteDetails'
|
|
});
|
|
if ( hints instanceof Object ) {
|
|
const mode = cmEditor.getMode();
|
|
if ( mode.setHints instanceof Function ) {
|
|
mode.setHints(hints);
|
|
}
|
|
}
|
|
|
|
const details = await vAPI.messaging.send('default', {
|
|
what : 'getAssetContent',
|
|
url: assetKey,
|
|
});
|
|
cmEditor.setValue(details && details.content || '');
|
|
|
|
if ( subscribeElem !== null ) {
|
|
dom.on('#subscribeButton', 'click', ( ) => {
|
|
dom.cl.add(subscribeElem, 'hide');
|
|
vAPI.messaging.send('scriptlets', {
|
|
what: 'applyFilterListSelection',
|
|
toImport: assetKey,
|
|
}).then(( ) => {
|
|
vAPI.messaging.send('scriptlets', {
|
|
what: 'reloadAllFilters'
|
|
});
|
|
});
|
|
}, { once: true });
|
|
}
|
|
|
|
if ( details.sourceURL ) {
|
|
const a = qs$('.cm-search-widget .sourceURL');
|
|
dom.attr(a, 'href', details.sourceURL);
|
|
dom.attr(a, 'title', details.sourceURL);
|
|
}
|
|
|
|
dom.cl.remove(dom.body, 'loading');
|
|
})();
|