advanced-settings.js (5957B) - View raw
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192/******************************************************************************* uBlock Origin - a comprehensive, efficient content blocker Copyright (C) 2016-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 */ import { dom, qs$ } from './dom.js'; /******************************************************************************/ let defaultSettings = new Map(); let adminSettings = new Map(); let beforeHash = ''; /******************************************************************************/ CodeMirror.defineMode('raw-settings', function() { let lastSetting = ''; return { token: function(stream) { if ( stream.sol() ) { stream.eatSpace(); const match = stream.match(/\S+/); if ( match !== null && defaultSettings.has(match[0]) ) { lastSetting = match[0]; return adminSettings.has(match[0]) ? 'readonly keyword' : 'keyword'; } stream.skipToEnd(); return 'line-cm-error'; } stream.eatSpace(); const match = stream.match(/.*$/); if ( match !== null ) { if ( match[0].trim() !== defaultSettings.get(lastSetting) ) { return 'line-cm-strong'; } if ( adminSettings.has(lastSetting) ) { return 'readonly'; } } stream.skipToEnd(); return null; } }; }); const cmEditor = new CodeMirror(qs$('#advancedSettings'), { autofocus: true, lineNumbers: true, lineWrapping: false, styleActiveLine: true }); uBlockDashboard.patchCodeMirrorEditor(cmEditor); /******************************************************************************/ const hashFromAdvancedSettings = function(raw) { const aa = typeof raw === 'string' ? arrayFromString(raw) : arrayFromObject(raw); aa.sort((a, b) => a[0].localeCompare(b[0])); return JSON.stringify(aa); }; /******************************************************************************/ const arrayFromObject = function(o) { const out = []; for ( const k in o ) { if ( Object.hasOwn(o, k) === false ) { continue; } out.push([ k, `${o[k]}` ]); } return out; }; const arrayFromString = function(s) { const out = []; for ( let line of s.split(/[\n\r]+/) ) { line = line.trim(); if ( line === '' ) { continue; } const pos = line.indexOf(' '); let k, v; if ( pos !== -1 ) { k = line.slice(0, pos); v = line.slice(pos + 1); } else { k = line; v = ''; } out.push([ k.trim(), v.trim() ]); } return out; }; /******************************************************************************/ const advancedSettingsChanged = (( ) => { const handler = ( ) => { const changed = hashFromAdvancedSettings(cmEditor.getValue()) !== beforeHash; qs$('#advancedSettingsApply').disabled = !changed; CodeMirror.commands.save = changed ? applyChanges : function(){}; }; const timer = vAPI.defer.create(handler); return function() { timer.offon(200); }; })(); cmEditor.on('changes', advancedSettingsChanged); /******************************************************************************/ const renderAdvancedSettings = async function(first) { const details = await vAPI.messaging.send('dashboard', { what: 'readHiddenSettings', }); defaultSettings = new Map(arrayFromObject(details.default)); adminSettings = new Map(arrayFromObject(details.admin)); beforeHash = hashFromAdvancedSettings(details.current); const pretty = []; const roLines = []; const entries = arrayFromObject(details.current); let max = 0; for ( const [ k ] of entries ) { if ( k.length > max ) { max = k.length; } } for ( let i = 0; i < entries.length; i++ ) { const [ k, v ] = entries[i]; pretty.push(' '.repeat(max - k.length) + `${k} ${v}`); if ( adminSettings.has(k) ) { roLines.push(i); } } pretty.push(''); cmEditor.setValue(pretty.join('\n')); if ( first ) { cmEditor.clearHistory(); } for ( const line of roLines ) { cmEditor.markText( { line, ch: 0 }, { line: line + 1, ch: 0 }, { readOnly: true } ); } advancedSettingsChanged(); cmEditor.focus(); }; /******************************************************************************/ const applyChanges = async function() { await vAPI.messaging.send('dashboard', { what: 'writeHiddenSettings', content: cmEditor.getValue(), }); renderAdvancedSettings(); }; /******************************************************************************/ dom.on('#advancedSettings', 'input', advancedSettingsChanged); dom.on('#advancedSettingsApply', 'click', ( ) => { applyChanges(); }); renderAdvancedSettings(true); /******************************************************************************/