mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-06-05 21:49:31 +02:00
Separated rule generator
This commit is contained in:
59
modules/internal/rule-generator.js
Normal file
59
modules/internal/rule-generator.js
Normal file
@@ -0,0 +1,59 @@
|
||||
/**
|
||||
* Rule Generator
|
||||
* Belongs to LocalCDN (since 2020-02-26)
|
||||
*
|
||||
* @author nobody
|
||||
* @since 2020-03-08
|
||||
*
|
||||
* @license MPL 2.0
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Updates
|
||||
*/
|
||||
|
||||
var ruleGenerator = {};
|
||||
|
||||
/**
|
||||
* Public Methods
|
||||
*/
|
||||
ruleGenerator.openRuleSet = function ({ target }) {
|
||||
let urls = mappings;
|
||||
let key = target.getAttribute('data-option');
|
||||
|
||||
let textArea = document.getElementById('generated-rules');
|
||||
let btnCopy = document.getElementById('button-copy-rule-set');
|
||||
|
||||
let content = '';
|
||||
|
||||
textArea.style.display = 'block';
|
||||
btnCopy.style.display = 'block';
|
||||
|
||||
for (var domain in urls) {
|
||||
if (key === 'uMatrix') {
|
||||
content += '* ' + domain + ' script allow' + '\n';
|
||||
content += '* ' + domain + ' css allow' + '\n';
|
||||
} else if (key === 'uBlock') {
|
||||
content += '* ' + domain + ' * noop' + '\n';
|
||||
}
|
||||
}
|
||||
textArea.value = content.replace(/\n+$/, '');
|
||||
};
|
||||
|
||||
ruleGenerator.copyRuleSet = function () {
|
||||
let textArea = document.getElementById('generated-rules');
|
||||
navigator.clipboard.writeText(textArea.value).then(
|
||||
function () {
|
||||
textArea.select();
|
||||
},
|
||||
function () {
|
||||
alert('Rule set cannot be copied!');
|
||||
}
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user