2017-07-12 20:44:59 +00:00
|
|
|
/* eslint brace-style: 0, operator-linebreak: 0 */
|
2017-08-18 15:32:46 +00:00
|
|
|
/* global CodeMirror parserlib */
|
2017-08-29 11:28:13 +00:00
|
|
|
/* global css_beautify */
|
2017-08-28 05:22:19 +00:00
|
|
|
/* global CSSLint initLint linterConfig updateLintReport renderLintReport updateLinter */
|
2017-09-11 16:09:25 +00:00
|
|
|
/* global mozParser createSourceEditor */
|
2017-09-12 15:19:16 +00:00
|
|
|
/* global loadScript */
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
'use strict';
|
2015-03-14 11:51:41 +00:00
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
let styleId = null;
|
2017-08-20 18:56:18 +00:00
|
|
|
// only the actually dirty items here
|
|
|
|
let dirty = {};
|
|
|
|
// array of all CodeMirror instances
|
|
|
|
const editors = [];
|
2017-07-12 20:44:59 +00:00
|
|
|
let saveSizeOnClose;
|
2017-08-20 18:56:18 +00:00
|
|
|
// use browser history back when 'back to manage' is clicked
|
|
|
|
let useHistoryBack;
|
2015-01-30 17:05:06 +00:00
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
// direct & reverse mapping of @-moz-document keywords and internal property names
|
2017-07-12 20:44:59 +00:00
|
|
|
const propertyToCss = {urls: 'url', urlPrefixes: 'url-prefix', domains: 'domain', regexps: 'regexp'};
|
|
|
|
const CssToProperty = {'url': 'urls', 'url-prefix': 'urlPrefixes', 'domain': 'domains', 'regexp': 'regexps'};
|
2015-03-21 13:24:45 +00:00
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
let editor;
|
|
|
|
|
2017-04-12 17:24:05 +00:00
|
|
|
// if background page hasn't been loaded yet, increase the chances it has before DOMContentLoaded
|
|
|
|
onBackgroundReady();
|
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
// make querySelectorAll enumeration code readable
|
2017-07-16 16:49:31 +00:00
|
|
|
['forEach', 'some', 'indexOf', 'map'].forEach(method => {
|
2017-07-12 20:44:59 +00:00
|
|
|
NodeList.prototype[method] = Array.prototype[method];
|
2015-03-21 13:24:45 +00:00
|
|
|
});
|
|
|
|
|
2015-07-26 02:24:18 +00:00
|
|
|
// Chrome pre-34
|
|
|
|
Element.prototype.matches = Element.prototype.matches || Element.prototype.webkitMatchesSelector;
|
|
|
|
|
2015-07-16 19:31:03 +00:00
|
|
|
// Chrome pre-41 polyfill
|
2017-07-16 16:49:31 +00:00
|
|
|
Element.prototype.closest = Element.prototype.closest || function (selector) {
|
2017-07-12 20:44:59 +00:00
|
|
|
let e;
|
|
|
|
// eslint-disable-next-line no-empty
|
|
|
|
for (e = this; e && !e.matches(selector); e = e.parentElement) {}
|
2017-07-12 19:50:13 +00:00
|
|
|
return e;
|
2015-07-16 19:31:03 +00:00
|
|
|
};
|
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
// eslint-disable-next-line no-extend-native
|
2017-08-20 18:56:18 +00:00
|
|
|
Array.prototype.rotate = function (amount) {
|
|
|
|
// negative amount == rotate left
|
2017-07-12 20:44:59 +00:00
|
|
|
const r = this.slice(-amount, this.length);
|
2017-07-12 19:50:13 +00:00
|
|
|
Array.prototype.push.apply(r, this.slice(0, this.length - r.length));
|
|
|
|
return r;
|
2017-03-26 02:30:59 +00:00
|
|
|
};
|
2015-07-11 14:35:04 +00:00
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
// eslint-disable-next-line no-extend-native
|
2017-07-16 16:49:31 +00:00
|
|
|
Object.defineProperty(Array.prototype, 'last', {get: function () { return this[this.length - 1]; }});
|
2015-07-13 17:44:46 +00:00
|
|
|
|
2017-04-17 18:06:00 +00:00
|
|
|
// preload the theme so that CodeMirror can calculate its metrics in DOMContentLoaded->setupLivePrefs()
|
|
|
|
new MutationObserver((mutations, observer) => {
|
2017-08-21 00:05:08 +00:00
|
|
|
const themeElement = $('#cm-theme');
|
2017-07-12 19:50:13 +00:00
|
|
|
if (themeElement) {
|
2017-07-16 18:02:00 +00:00
|
|
|
themeElement.href = prefs.get('editor.theme') === 'default' ? ''
|
2017-07-12 20:44:59 +00:00
|
|
|
: 'vendor/codemirror/theme/' + prefs.get('editor.theme') + '.css';
|
2017-07-12 19:50:13 +00:00
|
|
|
observer.disconnect();
|
|
|
|
}
|
2017-04-17 18:06:00 +00:00
|
|
|
}).observe(document, {subtree: true, childList: true});
|
|
|
|
|
2017-04-20 14:00:43 +00:00
|
|
|
getCodeMirrorThemes();
|
|
|
|
|
2015-04-23 01:53:30 +00:00
|
|
|
// reroute handling to nearest editor when keypress resolves to one of these commands
|
2017-07-12 20:44:59 +00:00
|
|
|
const hotkeyRerouter = {
|
2017-07-12 19:50:13 +00:00
|
|
|
commands: {
|
|
|
|
save: true, jumpToLine: true, nextEditor: true, prevEditor: true,
|
|
|
|
find: true, findNext: true, findPrev: true, replace: true, replaceAll: true,
|
|
|
|
toggleStyle: true,
|
|
|
|
},
|
2017-07-16 16:49:31 +00:00
|
|
|
setState: enable => {
|
|
|
|
setTimeout(() => {
|
2017-07-12 20:44:59 +00:00
|
|
|
document[(enable ? 'add' : 'remove') + 'EventListener']('keydown', hotkeyRerouter.eventHandler);
|
2017-07-12 19:50:13 +00:00
|
|
|
}, 0);
|
|
|
|
},
|
2017-07-16 16:49:31 +00:00
|
|
|
eventHandler: event => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const keyName = CodeMirror.keyName(event);
|
|
|
|
if (
|
2017-07-16 18:02:00 +00:00
|
|
|
CodeMirror.lookupKey(keyName, CodeMirror.getOption('keyMap'), handleCommand) === 'handled' ||
|
|
|
|
CodeMirror.lookupKey(keyName, CodeMirror.defaults.extraKeys, handleCommand) === 'handled'
|
2017-07-12 20:44:59 +00:00
|
|
|
) {
|
2017-07-12 19:50:13 +00:00
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
function handleCommand(command) {
|
|
|
|
if (hotkeyRerouter.commands[command] === true) {
|
|
|
|
CodeMirror.commands[command](getEditorInSight(event.target));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-23 01:53:30 +00:00
|
|
|
};
|
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
function onChange(event) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const node = event.target;
|
|
|
|
if ('savedValue' in node) {
|
|
|
|
const currentValue = node.type === 'checkbox' ? node.checked : node.value;
|
2017-07-12 19:50:13 +00:00
|
|
|
setCleanItem(node, node.savedValue === currentValue);
|
|
|
|
} else {
|
|
|
|
// the manually added section's applies-to is dirty only when the value is non-empty
|
2017-07-16 18:02:00 +00:00
|
|
|
setCleanItem(node, node.localName !== 'input' || !node.value.trim());
|
2017-08-20 18:56:18 +00:00
|
|
|
// only valid when actually saved
|
|
|
|
delete node.savedValue;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
updateTitle();
|
2015-03-21 13:24:45 +00:00
|
|
|
}
|
2015-03-14 11:51:41 +00:00
|
|
|
|
2015-03-15 19:41:36 +00:00
|
|
|
// Set .dirty on stylesheet contributors that have changed
|
2015-03-21 13:24:45 +00:00
|
|
|
function setDirtyClass(node, isDirty) {
|
2017-07-12 20:44:59 +00:00
|
|
|
node.classList.toggle('dirty', isDirty);
|
2015-03-15 19:41:36 +00:00
|
|
|
}
|
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
function setCleanItem(node, isClean) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!node.id) {
|
|
|
|
node.id = Date.now().toString(32).substr(-6);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isClean) {
|
|
|
|
delete dirty[node.id];
|
|
|
|
// code sections have .CodeMirror property
|
|
|
|
if (node.CodeMirror) {
|
|
|
|
node.savedValue = node.CodeMirror.changeGeneration();
|
|
|
|
} else {
|
2017-07-12 20:44:59 +00:00
|
|
|
node.savedValue = node.type === 'checkbox' ? node.checked : node.value;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dirty[node.id] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
setDirtyClass(node, !isClean);
|
2015-03-21 13:24:45 +00:00
|
|
|
}
|
2015-03-16 20:47:56 +00:00
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
function isCleanGlobal() {
|
2017-07-16 18:02:00 +00:00
|
|
|
const clean = Object.keys(dirty).length === 0;
|
2017-07-12 19:50:13 +00:00
|
|
|
setDirtyClass(document.body, !clean);
|
2017-08-21 00:05:08 +00:00
|
|
|
// let saveBtn = $('#save-button')
|
2017-07-12 20:44:59 +00:00
|
|
|
// if (clean){
|
|
|
|
// //saveBtn.removeAttribute('disabled');
|
|
|
|
// }else{
|
|
|
|
// //saveBtn.setAttribute('disabled', true);
|
|
|
|
// }
|
2017-07-12 19:50:13 +00:00
|
|
|
return clean;
|
2015-03-15 19:41:36 +00:00
|
|
|
}
|
2015-03-14 11:51:41 +00:00
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
function setCleanGlobal() {
|
2017-08-21 00:05:08 +00:00
|
|
|
$$('#header, #sections > div').forEach(setCleanSection);
|
2017-08-20 18:56:18 +00:00
|
|
|
// forget the dirty applies-to ids from a deleted section after the style was saved
|
|
|
|
dirty = {};
|
2015-03-21 13:24:45 +00:00
|
|
|
}
|
2015-03-15 19:41:36 +00:00
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
function setCleanSection(section) {
|
2017-08-21 00:05:08 +00:00
|
|
|
$$('.style-contributor', section).forEach(node => { setCleanItem(node, true); });
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
// #header section has no codemirror
|
2017-07-12 20:44:59 +00:00
|
|
|
const cm = section.CodeMirror;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (cm) {
|
|
|
|
section.savedValue = cm.changeGeneration();
|
2017-08-31 19:25:05 +00:00
|
|
|
updateTitle();
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2015-03-15 19:41:36 +00:00
|
|
|
}
|
2015-03-14 11:51:41 +00:00
|
|
|
|
2015-03-08 06:21:43 +00:00
|
|
|
function initCodeMirror() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const CM = CodeMirror;
|
|
|
|
const isWindowsOS = navigator.appVersion.indexOf('Windows') > 0;
|
2017-08-20 14:06:17 +00:00
|
|
|
// lint.js is not loaded initially
|
2017-07-12 20:44:59 +00:00
|
|
|
// CodeMirror miserably fails on keyMap='' so let's ensure it's not
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!prefs.get('editor.keyMap')) {
|
|
|
|
prefs.reset('editor.keyMap');
|
|
|
|
}
|
|
|
|
|
|
|
|
// default option values
|
|
|
|
Object.assign(CM.defaults, {
|
|
|
|
mode: 'css',
|
|
|
|
lineNumbers: true,
|
|
|
|
lineWrapping: true,
|
|
|
|
foldGutter: true,
|
2017-08-29 14:12:39 +00:00
|
|
|
gutters: [
|
|
|
|
'CodeMirror-linenumbers',
|
|
|
|
'CodeMirror-foldgutter',
|
|
|
|
...(prefs.get('editor.linter') ? ['CodeMirror-lint-markers'] : []),
|
|
|
|
],
|
2017-07-12 19:50:13 +00:00
|
|
|
matchBrackets: true,
|
|
|
|
highlightSelectionMatches: {showToken: /[#.\-\w]/, annotateScrollbar: true},
|
|
|
|
hintOptions: {},
|
2017-08-29 14:12:39 +00:00
|
|
|
lint: linterConfig.getForCodeMirror(),
|
2017-07-12 20:44:59 +00:00
|
|
|
lintReportDelay: prefs.get('editor.lintReportDelay'),
|
2017-07-12 19:50:13 +00:00
|
|
|
styleActiveLine: true,
|
2017-07-12 20:44:59 +00:00
|
|
|
theme: 'default',
|
|
|
|
keyMap: prefs.get('editor.keyMap'),
|
2017-08-20 18:56:18 +00:00
|
|
|
extraKeys: {
|
|
|
|
// independent of current keyMap
|
2017-07-12 20:44:59 +00:00
|
|
|
'Alt-Enter': 'toggleStyle',
|
|
|
|
'Alt-PageDown': 'nextEditor',
|
|
|
|
'Alt-PageUp': 'prevEditor'
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
}, prefs.get('editor.options'));
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
// additional commands
|
|
|
|
CM.commands.jumpToLine = jumpToLine;
|
2017-09-01 09:23:49 +00:00
|
|
|
CM.commands.nextEditor = cm => nextPrevEditor(cm, 1);
|
|
|
|
CM.commands.prevEditor = cm => nextPrevEditor(cm, -1);
|
2017-07-12 19:50:13 +00:00
|
|
|
CM.commands.save = save;
|
2017-07-16 16:49:31 +00:00
|
|
|
CM.commands.blockComment = cm => {
|
2017-07-12 20:44:59 +00:00
|
|
|
cm.blockComment(cm.getCursor('from'), cm.getCursor('to'), {fullLines: false});
|
2017-07-12 19:50:13 +00:00
|
|
|
};
|
|
|
|
CM.commands.toggleStyle = toggleStyle;
|
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
// 'basic' keymap only has basic keys by design, so we skip it
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
const extraKeysCommands = {};
|
2017-07-16 16:49:31 +00:00
|
|
|
Object.keys(CM.defaults.extraKeys).forEach(key => {
|
2017-07-12 19:50:13 +00:00
|
|
|
extraKeysCommands[CM.defaults.extraKeys[key]] = true;
|
|
|
|
});
|
|
|
|
if (!extraKeysCommands.jumpToLine) {
|
2017-07-12 20:44:59 +00:00
|
|
|
CM.keyMap.sublime['Ctrl-G'] = 'jumpToLine';
|
|
|
|
CM.keyMap.emacsy['Ctrl-G'] = 'jumpToLine';
|
|
|
|
CM.keyMap.pcDefault['Ctrl-J'] = 'jumpToLine';
|
|
|
|
CM.keyMap.macDefault['Cmd-J'] = 'jumpToLine';
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
if (!extraKeysCommands.autocomplete) {
|
2017-08-20 18:56:18 +00:00
|
|
|
// will be used by 'sublime' on PC via fallthrough
|
|
|
|
CM.keyMap.pcDefault['Ctrl-Space'] = 'autocomplete';
|
|
|
|
// OSX uses Ctrl-Space and Cmd-Space for something else
|
|
|
|
CM.keyMap.macDefault['Alt-Space'] = 'autocomplete';
|
|
|
|
// copied from 'emacs' keymap
|
|
|
|
CM.keyMap.emacsy['Alt-/'] = 'autocomplete';
|
2017-07-12 20:44:59 +00:00
|
|
|
// 'vim' and 'emacs' define their own autocomplete hotkeys
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
if (!extraKeysCommands.blockComment) {
|
2017-07-12 20:44:59 +00:00
|
|
|
CM.keyMap.sublime['Shift-Ctrl-/'] = 'blockComment';
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isWindowsOS) {
|
2017-07-12 20:44:59 +00:00
|
|
|
// 'pcDefault' keymap on Windows should have F3/Shift-F3
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!extraKeysCommands.findNext) {
|
2017-07-12 20:44:59 +00:00
|
|
|
CM.keyMap.pcDefault['F3'] = 'findNext';
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
if (!extraKeysCommands.findPrev) {
|
2017-07-12 20:44:59 +00:00
|
|
|
CM.keyMap.pcDefault['Shift-F3'] = 'findPrev';
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// try to remap non-interceptable Ctrl-(Shift-)N/T/W hotkeys
|
2017-07-16 16:49:31 +00:00
|
|
|
['N', 'T', 'W'].forEach(char => {
|
2017-08-20 18:56:18 +00:00
|
|
|
[
|
|
|
|
{from: 'Ctrl-', to: ['Alt-', 'Ctrl-Alt-']},
|
|
|
|
// Note: modifier order in CM is S-C-A
|
|
|
|
{from: 'Shift-Ctrl-', to: ['Ctrl-Alt-', 'Shift-Ctrl-Alt-']}
|
2017-07-16 16:49:31 +00:00
|
|
|
].forEach(remap => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const oldKey = remap.from + char;
|
2017-07-16 16:49:31 +00:00
|
|
|
Object.keys(CM.keyMap).forEach(keyMapName => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const keyMap = CM.keyMap[keyMapName];
|
|
|
|
const command = keyMap[oldKey];
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!command) {
|
|
|
|
return;
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
remap.to.some(newMod => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const newKey = newMod + char;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!(newKey in keyMap)) {
|
|
|
|
delete keyMap[oldKey];
|
|
|
|
keyMap[newKey] = command;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// user option values
|
2017-07-16 16:49:31 +00:00
|
|
|
CM.getOption = o => CodeMirror.defaults[o];
|
|
|
|
CM.setOption = (o, v) => {
|
2017-07-12 19:50:13 +00:00
|
|
|
CodeMirror.defaults[o] = v;
|
2017-09-12 11:34:04 +00:00
|
|
|
editors.forEach(editor => {
|
2017-07-12 19:50:13 +00:00
|
|
|
editor.setOption(o, v);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
CM.modeURL = '/vendor/codemirror/mode/%N/%N.js';
|
|
|
|
|
2017-07-16 16:49:31 +00:00
|
|
|
CM.prototype.getSection = function () {
|
2017-07-12 19:50:13 +00:00
|
|
|
return this.display.wrapper.parentNode;
|
|
|
|
};
|
|
|
|
|
|
|
|
// initialize global editor controls
|
2017-07-19 08:31:09 +00:00
|
|
|
function optionsFromArray(parent, options) {
|
2017-07-19 16:18:34 +00:00
|
|
|
const fragment = document.createDocumentFragment();
|
|
|
|
for (const opt of options) {
|
|
|
|
fragment.appendChild($element({tag: 'option', textContent: opt}));
|
|
|
|
}
|
|
|
|
parent.appendChild(fragment);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-21 00:05:08 +00:00
|
|
|
// no need to escape the period in the id
|
|
|
|
const themeControl = $('#editor.theme');
|
2017-07-12 19:50:13 +00:00
|
|
|
const themeList = localStorage.codeMirrorThemes;
|
|
|
|
if (themeList) {
|
2017-07-19 08:31:09 +00:00
|
|
|
optionsFromArray(themeControl, themeList.split(/\s+/));
|
2017-07-12 19:50:13 +00:00
|
|
|
} else {
|
|
|
|
// Chrome is starting up and shows our edit.html, but the background page isn't loaded yet
|
2017-07-12 20:44:59 +00:00
|
|
|
const theme = prefs.get('editor.theme');
|
2017-07-19 08:31:09 +00:00
|
|
|
optionsFromArray(themeControl, [theme === 'default' ? t('defaultTheme') : theme]);
|
2017-07-12 19:50:13 +00:00
|
|
|
getCodeMirrorThemes().then(() => {
|
|
|
|
const themes = (localStorage.codeMirrorThemes || '').split(/\s+/);
|
2017-07-19 08:31:09 +00:00
|
|
|
optionsFromArray(themeControl, themes);
|
2017-07-12 19:50:13 +00:00
|
|
|
themeControl.selectedIndex = Math.max(0, themes.indexOf(theme));
|
|
|
|
});
|
|
|
|
}
|
2017-07-19 08:31:09 +00:00
|
|
|
optionsFromArray($('#editor.keyMap'), Object.keys(CM.keyMap).sort());
|
2017-08-21 00:05:08 +00:00
|
|
|
$('#options').addEventListener('change', acmeEventListener, false);
|
2017-07-12 19:50:13 +00:00
|
|
|
setupLivePrefs();
|
|
|
|
|
|
|
|
hotkeyRerouter.setState(true);
|
2015-03-08 06:21:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function acmeEventListener(event) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const el = event.target;
|
2017-08-28 21:07:43 +00:00
|
|
|
let option = el.id.replace(/^editor\./, '');
|
2017-07-12 20:44:59 +00:00
|
|
|
//console.log('acmeEventListener heard %s on %s', event.type, el.id);
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!option) {
|
2017-07-12 20:44:59 +00:00
|
|
|
console.error('acmeEventListener: no "cm_option" %O', el);
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-16 18:02:00 +00:00
|
|
|
let value = el.type === 'checkbox' ? el.checked : el.value;
|
2017-07-12 19:50:13 +00:00
|
|
|
switch (option) {
|
2017-07-12 20:44:59 +00:00
|
|
|
case 'tabSize':
|
|
|
|
CodeMirror.setOption('indentUnit', Number(value));
|
2017-07-12 19:50:13 +00:00
|
|
|
break;
|
2017-07-14 09:42:55 +00:00
|
|
|
case 'theme': {
|
2017-08-21 00:05:08 +00:00
|
|
|
const themeLink = $('#cm-theme');
|
2017-07-12 20:44:59 +00:00
|
|
|
// use non-localized 'default' internally
|
2017-07-16 18:02:00 +00:00
|
|
|
if (!value || value === 'default' || value === t('defaultTheme')) {
|
2017-07-12 20:44:59 +00:00
|
|
|
value = 'default';
|
2017-07-16 18:02:00 +00:00
|
|
|
if (prefs.get(el.id) !== value) {
|
2017-07-12 19:50:13 +00:00
|
|
|
prefs.set(el.id, value);
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
themeLink.href = '';
|
2017-07-12 19:50:13 +00:00
|
|
|
el.selectedIndex = 0;
|
|
|
|
break;
|
|
|
|
}
|
2017-07-14 08:33:59 +00:00
|
|
|
const url = chrome.runtime.getURL('vendor/codemirror/theme/' + value + '.css');
|
2017-08-20 18:56:18 +00:00
|
|
|
if (themeLink.href === url) {
|
|
|
|
// preloaded in initCodeMirror()
|
2017-07-12 19:50:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// avoid flicker: wait for the second stylesheet to load, then apply the theme
|
2017-07-19 13:07:32 +00:00
|
|
|
document.head.appendChild($element({
|
|
|
|
tag: 'link',
|
|
|
|
id: 'cm-theme2',
|
|
|
|
rel: 'stylesheet',
|
|
|
|
href: url
|
|
|
|
}));
|
|
|
|
setTimeout(() => {
|
|
|
|
CodeMirror.setOption(option, value);
|
|
|
|
themeLink.remove();
|
2017-07-19 16:18:34 +00:00
|
|
|
$('#cm-theme2').id = 'cm-theme';
|
2017-07-19 13:07:32 +00:00
|
|
|
}, 100);
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
2017-07-14 09:42:55 +00:00
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
case 'autocompleteOnTyping':
|
2017-09-12 11:34:04 +00:00
|
|
|
editors.forEach(cm => setupAutocomplete(cm, el.checked));
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
2017-07-12 20:44:59 +00:00
|
|
|
case 'matchHighlight':
|
2017-07-12 19:50:13 +00:00
|
|
|
switch (value) {
|
|
|
|
case 'token':
|
|
|
|
case 'selection':
|
|
|
|
document.body.dataset[option] = value;
|
2017-07-16 18:02:00 +00:00
|
|
|
value = {showToken: value === 'token' && /[#.\-\w]/, annotateScrollbar: true};
|
2017-07-12 19:50:13 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
value = null;
|
|
|
|
}
|
2017-08-28 21:07:43 +00:00
|
|
|
option = 'highlightSelectionMatches';
|
2017-08-15 19:13:58 +00:00
|
|
|
break;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
CodeMirror.setOption(option, value);
|
2015-03-08 06:21:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// replace given textarea with the CodeMirror editor
|
2015-03-21 13:24:45 +00:00
|
|
|
function setupCodeMirror(textarea, index) {
|
2017-07-12 19:50:13 +00:00
|
|
|
const cm = CodeMirror.fromTextArea(textarea, {lint: null});
|
|
|
|
const wrapper = cm.display.wrapper;
|
|
|
|
|
2017-09-01 08:16:57 +00:00
|
|
|
cm.on('changes', indicateCodeChangeDebounced);
|
2017-07-12 19:50:13 +00:00
|
|
|
if (prefs.get('editor.autocompleteOnTyping')) {
|
2017-09-11 16:09:25 +00:00
|
|
|
setupAutocomplete(cm);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-09-01 09:23:49 +00:00
|
|
|
wrapper.addEventListener('keydown', event => nextPrevEditorOnKeydown(cm, event), true);
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.on('blur', () => {
|
|
|
|
editors.lastActive = cm;
|
|
|
|
hotkeyRerouter.setState(true);
|
|
|
|
setTimeout(() => {
|
|
|
|
wrapper.classList.toggle('CodeMirror-active', wrapper.contains(document.activeElement));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
cm.on('focus', () => {
|
|
|
|
hotkeyRerouter.setState(false);
|
|
|
|
wrapper.classList.add('CodeMirror-active');
|
|
|
|
});
|
2017-08-29 23:26:47 +00:00
|
|
|
cm.on('paste', (cm, event) => {
|
|
|
|
const text = event.clipboardData.getData('text') || '';
|
|
|
|
if (
|
|
|
|
text.includes('@-moz-document') &&
|
|
|
|
text.replace(/\/\*[\s\S]*?\*\//g, '')
|
|
|
|
.match(/@-moz-document[\s\r\n]+(url|url-prefix|domain|regexp)\(/)
|
|
|
|
) {
|
|
|
|
event.preventDefault();
|
|
|
|
fromMozillaFormat();
|
|
|
|
$('#help-popup').codebox.setValue(text);
|
2017-08-30 07:49:42 +00:00
|
|
|
$('#help-popup').codebox.clearHistory();
|
2017-08-29 23:26:47 +00:00
|
|
|
$('#help-popup').codebox.markClean();
|
|
|
|
}
|
2017-08-29 20:53:18 +00:00
|
|
|
if (editors.length === 1) {
|
|
|
|
setTimeout(() => {
|
|
|
|
if (cm.display.sizer.clientHeight > cm.display.wrapper.clientHeight) {
|
|
|
|
maximizeCodeHeight.stats = null;
|
|
|
|
maximizeCodeHeight(cm.getSection(), true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2017-07-31 16:39:10 +00:00
|
|
|
if (!FIREFOX) {
|
|
|
|
cm.on('mousedown', (cm, event) => toggleContextMenuDelete.call(cm, event));
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-09-13 12:28:19 +00:00
|
|
|
wrapper.classList.add('resize-grip-enabled');
|
2017-07-12 19:50:13 +00:00
|
|
|
let lastClickTime = 0;
|
|
|
|
const resizeGrip = wrapper.appendChild(template.resizeGrip.cloneNode(true));
|
|
|
|
resizeGrip.onmousedown = event => {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (event.button !== 0) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
if (Date.now() - lastClickTime < 500) {
|
|
|
|
lastClickTime = 0;
|
|
|
|
toggleSectionHeight(cm);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lastClickTime = Date.now();
|
2017-07-12 20:44:59 +00:00
|
|
|
const minHeight = cm.defaultTextHeight() +
|
2017-08-20 18:56:18 +00:00
|
|
|
/* .CodeMirror-lines padding */
|
|
|
|
cm.display.lineDiv.offsetParent.offsetTop +
|
|
|
|
/* borders */
|
|
|
|
wrapper.offsetHeight - wrapper.clientHeight;
|
2017-07-12 19:50:13 +00:00
|
|
|
wrapper.style.pointerEvents = 'none';
|
|
|
|
document.body.style.cursor = 's-resize';
|
|
|
|
function resize(e) {
|
|
|
|
const cmPageY = wrapper.getBoundingClientRect().top + window.scrollY;
|
|
|
|
const height = Math.max(minHeight, e.pageY - cmPageY);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (height !== wrapper.clientHeight) {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.setSize(null, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
document.addEventListener('mousemove', resize);
|
|
|
|
document.addEventListener('mouseup', function resizeStop() {
|
|
|
|
document.removeEventListener('mouseup', resizeStop);
|
|
|
|
document.removeEventListener('mousemove', resize);
|
|
|
|
wrapper.style.pointerEvents = '';
|
|
|
|
document.body.style.cursor = '';
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
editors.splice(index || editors.length, 0, cm);
|
|
|
|
return cm;
|
2015-03-21 13:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function indicateCodeChange(cm) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const section = cm.getSection();
|
2017-07-12 19:50:13 +00:00
|
|
|
setCleanItem(section, cm.isClean(section.savedValue));
|
|
|
|
updateTitle();
|
2017-08-20 14:06:17 +00:00
|
|
|
updateLintReportIfEnabled(cm);
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 08:16:57 +00:00
|
|
|
function indicateCodeChangeDebounced(cm, ...args) {
|
|
|
|
clearTimeout(cm.state.stylusOnChangeTimer);
|
|
|
|
cm.state.stylusOnChangeTimer = setTimeout(indicateCodeChange, 200, cm, ...args);
|
|
|
|
}
|
|
|
|
|
2015-07-16 19:31:03 +00:00
|
|
|
function getSectionForChild(e) {
|
2017-07-12 20:44:59 +00:00
|
|
|
return e.closest('#sections > div');
|
2015-07-16 19:31:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getSections() {
|
2017-08-21 00:05:08 +00:00
|
|
|
return $$('#sections > div');
|
2015-04-08 18:24:26 +00:00
|
|
|
}
|
|
|
|
|
2015-05-04 11:43:43 +00:00
|
|
|
// remind Chrome to repaint a previously invisible editor box by toggling any element's transform
|
|
|
|
// this bug is present in some versions of Chrome (v37-40 or something)
|
2017-07-16 16:49:31 +00:00
|
|
|
document.addEventListener('scroll', () => {
|
2017-08-21 00:05:08 +00:00
|
|
|
const style = $('#name').style;
|
2017-07-12 20:44:59 +00:00
|
|
|
style.webkitTransform = style.webkitTransform ? '' : 'scale(1)';
|
2015-05-04 11:43:43 +00:00
|
|
|
});
|
|
|
|
|
2015-04-26 20:03:39 +00:00
|
|
|
// Shift-Ctrl-Wheel scrolls entire page even when mouse is over a code editor
|
2017-07-16 16:49:31 +00:00
|
|
|
document.addEventListener('wheel', event => {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (event.shiftKey && event.ctrlKey && !event.altKey && !event.metaKey) {
|
|
|
|
// Chrome scrolls horizontally when Shift is pressed but on some PCs this might be different
|
|
|
|
window.scrollBy(0, event.deltaX || event.deltaY);
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2015-04-26 20:03:39 +00:00
|
|
|
});
|
|
|
|
|
2017-06-17 10:00:10 +00:00
|
|
|
queryTabs({currentWindow: true}).then(tabs => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const windowId = tabs[0].windowId;
|
|
|
|
if (prefs.get('openEditInWindow')) {
|
2017-07-16 17:01:39 +00:00
|
|
|
if (
|
2017-08-18 14:06:39 +00:00
|
|
|
/true/.test(sessionStorage.saveSizeOnClose) &&
|
2017-07-16 17:01:39 +00:00
|
|
|
'left' in prefs.get('windowPosition', {}) &&
|
|
|
|
!isWindowMaximized()
|
|
|
|
) {
|
2017-07-12 19:50:13 +00:00
|
|
|
// window was reopened via Ctrl-Shift-T etc.
|
|
|
|
chrome.windows.update(windowId, prefs.get('windowPosition'));
|
|
|
|
}
|
2017-07-16 18:02:00 +00:00
|
|
|
if (tabs.length === 1 && window.history.length === 1) {
|
2017-07-16 16:49:31 +00:00
|
|
|
chrome.windows.getAll(windows => {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (windows.length > 1) {
|
2017-07-12 20:44:59 +00:00
|
|
|
sessionStorageHash('saveSizeOnClose').set(windowId, true);
|
2017-07-12 19:50:13 +00:00
|
|
|
saveSizeOnClose = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2017-07-12 20:44:59 +00:00
|
|
|
saveSizeOnClose = sessionStorageHash('saveSizeOnClose').value[windowId];
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
chrome.tabs.onRemoved.addListener((tabId, info) => {
|
2017-07-12 20:44:59 +00:00
|
|
|
sessionStorageHash('manageStylesHistory').unset(tabId);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (info.windowId === windowId && info.isWindowClosing) {
|
2017-07-12 20:44:59 +00:00
|
|
|
sessionStorageHash('saveSizeOnClose').unset(windowId);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
});
|
2015-06-10 12:55:32 +00:00
|
|
|
});
|
|
|
|
|
2017-08-27 13:49:59 +00:00
|
|
|
getOwnTab().then(tab => {
|
|
|
|
const ownTabId = tab.id;
|
|
|
|
useHistoryBack = sessionStorageHash('manageStylesHistory').value[ownTabId] === location.href;
|
|
|
|
// When an edit page gets attached or detached, remember its state
|
|
|
|
// so we can do the same to the next one to open.
|
2017-08-27 14:36:20 +00:00
|
|
|
chrome.tabs.onAttached.addListener((tabId, info) => {
|
|
|
|
if (tabId !== ownTabId) {
|
|
|
|
return;
|
2017-08-27 13:49:59 +00:00
|
|
|
}
|
2017-08-27 14:36:20 +00:00
|
|
|
if (info.newPosition !== 0) {
|
|
|
|
prefs.set('openEditInWindow', false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
chrome.windows.get(info.newWindowId, {populate: true}, win => {
|
|
|
|
// If there's only one tab in this window, it's been dragged to new window
|
|
|
|
const openEditInWindow = win.tabs.length === 1;
|
|
|
|
if (openEditInWindow && FIREFOX) {
|
|
|
|
// FF-only because Chrome retardedly resets the size during dragging
|
|
|
|
chrome.windows.update(info.newWindowId, prefs.get('windowPosition'));
|
|
|
|
}
|
|
|
|
prefs.set('openEditInWindow', openEditInWindow);
|
|
|
|
});
|
2017-08-27 13:49:59 +00:00
|
|
|
});
|
2015-06-10 12:55:32 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function goBackToManage(event) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (useHistoryBack) {
|
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
history.back();
|
|
|
|
}
|
2015-05-27 19:02:36 +00:00
|
|
|
}
|
2015-03-13 22:26:26 +00:00
|
|
|
|
2017-06-06 13:44:16 +00:00
|
|
|
function isWindowMaximized() {
|
2017-08-27 11:56:04 +00:00
|
|
|
return (
|
|
|
|
window.screenX <= 0 &&
|
|
|
|
window.screenY <= 0 &&
|
|
|
|
window.outerWidth >= screen.availWidth &&
|
|
|
|
window.outerHeight >= screen.availHeight &&
|
|
|
|
|
|
|
|
window.screenX > -10 &&
|
|
|
|
window.screenY > -10 &&
|
|
|
|
window.outerWidth < screen.availWidth + 10 &&
|
|
|
|
window.outerHeight < screen.availHeight + 10
|
|
|
|
);
|
2017-06-06 13:44:16 +00:00
|
|
|
}
|
|
|
|
|
2017-08-27 11:56:04 +00:00
|
|
|
function rememberWindowSize() {
|
2017-08-27 16:41:09 +00:00
|
|
|
if (
|
|
|
|
document.visibilityState === 'visible' &&
|
|
|
|
prefs.get('openEditInWindow') &&
|
|
|
|
!isWindowMaximized()
|
|
|
|
) {
|
2017-07-12 20:44:59 +00:00
|
|
|
prefs.set('windowPosition', {
|
2017-08-27 11:56:04 +00:00
|
|
|
left: window.screenX,
|
|
|
|
top: window.screenY,
|
|
|
|
width: window.outerWidth,
|
|
|
|
height: window.outerHeight,
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
|
|
|
}
|
2017-08-27 11:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.onbeforeunload = () => {
|
|
|
|
if (saveSizeOnClose) {
|
|
|
|
rememberWindowSize();
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
document.activeElement.blur();
|
2017-09-13 08:56:04 +00:00
|
|
|
if (isCleanGlobal() && (!editor || !editor.isDirty())) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-08-20 14:06:17 +00:00
|
|
|
updateLintReportIfEnabled(null, 0);
|
2017-08-28 12:19:45 +00:00
|
|
|
// neither confirm() nor custom messages work in modern browsers but just in case
|
|
|
|
return t('styleChangesNotSaved');
|
2017-01-30 19:29:12 +00:00
|
|
|
};
|
2015-03-03 00:58:04 +00:00
|
|
|
|
2015-01-30 17:05:06 +00:00
|
|
|
function addAppliesTo(list, name, value) {
|
2017-08-21 00:05:08 +00:00
|
|
|
const showingEverything = $('.applies-to-everything', list) !== null;
|
2017-07-12 20:44:59 +00:00
|
|
|
// blow away 'Everything' if it's there
|
2017-07-12 19:50:13 +00:00
|
|
|
if (showingEverything) {
|
|
|
|
list.removeChild(list.firstChild);
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
let e;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (name && value) {
|
|
|
|
e = template.appliesTo.cloneNode(true);
|
2017-08-21 00:05:08 +00:00
|
|
|
$('[name=applies-type]', e).value = name;
|
|
|
|
$('[name=applies-value]', e).value = value;
|
|
|
|
$('.remove-applies-to', e).addEventListener('click', removeAppliesTo, false);
|
2017-07-12 19:50:13 +00:00
|
|
|
} else if (showingEverything || list.hasChildNodes()) {
|
|
|
|
e = template.appliesTo.cloneNode(true);
|
|
|
|
if (list.hasChildNodes()) {
|
2017-08-21 00:05:08 +00:00
|
|
|
$('[name=applies-type]', e).value = $('li:last-child [name="applies-type"]', list).value;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.remove-applies-to', e).addEventListener('click', removeAppliesTo, false);
|
2017-07-12 19:50:13 +00:00
|
|
|
} else {
|
|
|
|
e = template.appliesToEverything.cloneNode(true);
|
|
|
|
}
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.add-applies-to', e).addEventListener('click', function () {
|
2017-07-12 20:44:59 +00:00
|
|
|
addAppliesTo(this.parentNode.parentNode);
|
|
|
|
}, false);
|
2017-07-12 19:50:13 +00:00
|
|
|
list.appendChild(e);
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 10:17:59 +00:00
|
|
|
function addSection(event, section) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const div = template.section.cloneNode(true);
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.applies-to-help', div).addEventListener('click', showAppliesToHelp, false);
|
|
|
|
$('.remove-section', div).addEventListener('click', removeSection, false);
|
|
|
|
$('.add-section', div).addEventListener('click', addSection, false);
|
|
|
|
$('.beautify-section', div).addEventListener('click', beautify);
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const codeElement = $('.code', div);
|
|
|
|
const appliesTo = $('.applies-to-list', div);
|
2017-07-12 20:44:59 +00:00
|
|
|
let appliesToAdded = false;
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
if (section) {
|
|
|
|
codeElement.value = section.code;
|
2017-07-14 09:02:04 +00:00
|
|
|
for (const i in propertyToCss) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (section[i]) {
|
2017-07-16 16:49:31 +00:00
|
|
|
section[i].forEach(url => {
|
2017-07-12 19:50:13 +00:00
|
|
|
addAppliesTo(appliesTo, propertyToCss[i], url);
|
|
|
|
appliesToAdded = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!appliesToAdded) {
|
|
|
|
addAppliesTo(appliesTo);
|
|
|
|
}
|
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
appliesTo.addEventListener('change', onChange);
|
|
|
|
appliesTo.addEventListener('input', onChange);
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
toggleTestRegExpVisibility();
|
|
|
|
appliesTo.addEventListener('change', toggleTestRegExpVisibility);
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.test-regexp', div).onclick = showRegExpTester;
|
2017-07-12 19:50:13 +00:00
|
|
|
function toggleTestRegExpVisibility() {
|
|
|
|
const show = [...appliesTo.children].some(item =>
|
|
|
|
!item.matches('.applies-to-everything') &&
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.applies-type', item).value === 'regexp' &&
|
|
|
|
$('.applies-value', item).value.trim()
|
|
|
|
);
|
2017-07-12 19:50:13 +00:00
|
|
|
div.classList.toggle('has-regexp', show);
|
|
|
|
appliesTo.oninput = appliesTo.oninput || show && (event => {
|
2017-07-16 17:01:39 +00:00
|
|
|
if (
|
|
|
|
event.target.matches('.applies-value') &&
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.applies-type', event.target.parentElement).value === 'regexp'
|
2017-07-16 17:01:39 +00:00
|
|
|
) {
|
2017-07-12 19:50:13 +00:00
|
|
|
showRegExpTester(null, div);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const sections = $('#sections');
|
2017-07-12 20:44:59 +00:00
|
|
|
let cm;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (event) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const clickedSection = getSectionForChild(event.target);
|
2017-07-12 19:50:13 +00:00
|
|
|
sections.insertBefore(div, clickedSection.nextElementSibling);
|
2017-07-12 20:44:59 +00:00
|
|
|
const newIndex = getSections().indexOf(clickedSection) + 1;
|
|
|
|
cm = setupCodeMirror(codeElement, newIndex);
|
2017-07-12 19:50:13 +00:00
|
|
|
makeSectionVisible(cm);
|
2017-07-12 20:44:59 +00:00
|
|
|
cm.focus();
|
2017-07-12 19:50:13 +00:00
|
|
|
renderLintReport();
|
|
|
|
} else {
|
|
|
|
sections.appendChild(div);
|
2017-07-12 20:44:59 +00:00
|
|
|
cm = setupCodeMirror(codeElement);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
div.CodeMirror = cm;
|
|
|
|
setCleanSection(div);
|
|
|
|
return div;
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeAppliesTo(event) {
|
2017-07-14 08:46:10 +00:00
|
|
|
const appliesTo = event.target.parentNode;
|
|
|
|
const appliesToList = appliesTo.parentNode;
|
2017-07-12 19:50:13 +00:00
|
|
|
removeAreaAndSetDirty(appliesTo);
|
|
|
|
if (!appliesToList.hasChildNodes()) {
|
|
|
|
addAppliesTo(appliesToList);
|
|
|
|
}
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeSection(event) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const section = getSectionForChild(event.target);
|
|
|
|
const cm = section.CodeMirror;
|
2017-07-12 19:50:13 +00:00
|
|
|
removeAreaAndSetDirty(section);
|
|
|
|
editors.splice(editors.indexOf(cm), 1);
|
|
|
|
renderLintReport();
|
2015-03-21 13:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeAreaAndSetDirty(area) {
|
2017-08-21 00:05:08 +00:00
|
|
|
const contributors = $$('.style-contributor', area);
|
2017-07-12 20:44:59 +00:00
|
|
|
if (!contributors.length) {
|
2017-07-12 19:50:13 +00:00
|
|
|
setCleanItem(area, false);
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
contributors.some(node => {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (node.savedValue) {
|
|
|
|
// it's a saved section, so make it dirty and stop the enumeration
|
|
|
|
setCleanItem(area, false);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// it's an empty section, so undirty the applies-to items,
|
|
|
|
// otherwise orphaned ids would keep the style dirty
|
|
|
|
setCleanItem(node, true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
updateTitle();
|
|
|
|
area.parentNode.removeChild(area);
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2015-03-14 20:07:35 +00:00
|
|
|
function makeSectionVisible(cm) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const section = cm.getSection();
|
|
|
|
const bounds = section.getBoundingClientRect();
|
|
|
|
if (
|
|
|
|
(bounds.bottom > window.innerHeight && bounds.top > 0) ||
|
|
|
|
(bounds.top < 0 && bounds.bottom < window.innerHeight)
|
|
|
|
) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (bounds.top < 0) {
|
|
|
|
window.scrollBy(0, bounds.top - 1);
|
|
|
|
} else {
|
|
|
|
window.scrollBy(0, bounds.bottom - window.innerHeight + 1);
|
|
|
|
}
|
|
|
|
}
|
2015-03-14 20:07:35 +00:00
|
|
|
}
|
|
|
|
|
2015-03-07 00:08:04 +00:00
|
|
|
function setupGlobalSearch() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const originalCommand = {
|
2017-07-12 19:50:13 +00:00
|
|
|
find: CodeMirror.commands.find,
|
|
|
|
findNext: CodeMirror.commands.findNext,
|
|
|
|
findPrev: CodeMirror.commands.findPrev,
|
|
|
|
replace: CodeMirror.commands.replace
|
|
|
|
};
|
2017-07-12 20:44:59 +00:00
|
|
|
const originalOpenDialog = CodeMirror.prototype.openDialog;
|
|
|
|
const originalOpenConfirm = CodeMirror.prototype.openConfirm;
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-20 18:56:18 +00:00
|
|
|
// cm.state.search for last used 'find'
|
|
|
|
let curState;
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-20 18:56:18 +00:00
|
|
|
function shouldIgnoreCase(query) {
|
|
|
|
// treat all-lowercase non-regexp queries as case-insensitive
|
2017-07-16 18:02:00 +00:00
|
|
|
return typeof query === 'string' && query === query.toLowerCase();
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function updateState(cm, newState) {
|
|
|
|
if (!newState) {
|
|
|
|
if (cm.state.search) {
|
|
|
|
return cm.state.search;
|
|
|
|
}
|
|
|
|
if (!curState) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
newState = curState;
|
|
|
|
}
|
|
|
|
cm.state.search = {
|
|
|
|
query: newState.query,
|
|
|
|
overlay: newState.overlay,
|
|
|
|
annotate: cm.showMatchesOnScrollbar(newState.query, shouldIgnoreCase(newState.query))
|
2017-07-12 20:44:59 +00:00
|
|
|
};
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.addOverlay(newState.overlay);
|
|
|
|
return cm.state.search;
|
|
|
|
}
|
|
|
|
|
2017-07-19 09:13:21 +00:00
|
|
|
// overrides the original openDialog with a clone of the provided template
|
2017-07-12 19:50:13 +00:00
|
|
|
function customizeOpenDialog(cm, template, callback) {
|
2017-07-16 16:49:31 +00:00
|
|
|
cm.openDialog = (tmpl, cb, opt) => {
|
2017-07-12 19:50:13 +00:00
|
|
|
// invoke 'callback' and bind 'this' to the original callback
|
2017-07-19 09:13:21 +00:00
|
|
|
originalOpenDialog.call(cm, template.cloneNode(true), callback.bind(cb), opt);
|
2017-07-12 19:50:13 +00:00
|
|
|
};
|
2017-07-16 16:49:31 +00:00
|
|
|
setTimeout(() => { cm.openDialog = originalOpenDialog; }, 0);
|
2017-07-12 19:50:13 +00:00
|
|
|
refocusMinidialog(cm);
|
|
|
|
}
|
|
|
|
|
|
|
|
function focusClosestCM(activeCM) {
|
|
|
|
editors.lastActive = activeCM;
|
2017-07-12 20:44:59 +00:00
|
|
|
const cm = getEditorInSight();
|
2017-07-16 18:02:00 +00:00
|
|
|
if (cm !== activeCM) {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.focus();
|
|
|
|
}
|
|
|
|
return cm;
|
|
|
|
}
|
|
|
|
|
|
|
|
function find(activeCM) {
|
|
|
|
activeCM = focusClosestCM(activeCM);
|
2017-07-16 16:49:31 +00:00
|
|
|
customizeOpenDialog(activeCM, template.find, function (query) {
|
2017-07-12 19:50:13 +00:00
|
|
|
this(query);
|
|
|
|
curState = activeCM.state.search;
|
2017-07-16 18:02:00 +00:00
|
|
|
if (editors.length === 1 || !curState.query) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
editors.forEach(cm => {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (cm !== activeCM) {
|
2017-07-12 20:44:59 +00:00
|
|
|
cm.execCommand('clearSearch');
|
2017-07-12 19:50:13 +00:00
|
|
|
updateState(cm, curState);
|
|
|
|
}
|
|
|
|
});
|
2017-07-16 18:02:00 +00:00
|
|
|
if (CodeMirror.cmpPos(curState.posFrom, curState.posTo) === 0) {
|
2017-07-12 19:50:13 +00:00
|
|
|
findNext(activeCM);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
originalCommand.find(activeCM);
|
|
|
|
}
|
|
|
|
|
|
|
|
function findNext(activeCM, reverse) {
|
2017-07-12 20:44:59 +00:00
|
|
|
let state = updateState(activeCM);
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!state || !state.query) {
|
|
|
|
find(activeCM);
|
|
|
|
return;
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
let pos = activeCM.getCursor(reverse ? 'from' : 'to');
|
2017-08-20 18:56:18 +00:00
|
|
|
// clear the selection, don't move the cursor
|
|
|
|
activeCM.setSelection(activeCM.getCursor());
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-07-16 18:02:00 +00:00
|
|
|
const rxQuery = typeof state.query === 'object'
|
2017-07-12 20:44:59 +00:00
|
|
|
? state.query : stringAsRegExp(state.query, shouldIgnoreCase(state.query) ? 'i' : '');
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-07-16 17:01:39 +00:00
|
|
|
if (
|
|
|
|
document.activeElement &&
|
2017-07-16 18:02:00 +00:00
|
|
|
document.activeElement.name === 'applies-value' &&
|
2017-07-16 17:01:39 +00:00
|
|
|
searchAppliesTo(activeCM)
|
|
|
|
) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-14 08:46:10 +00:00
|
|
|
let cm = activeCM;
|
|
|
|
for (let i = 0; i < editors.length; i++) {
|
2017-07-12 19:50:13 +00:00
|
|
|
state = updateState(cm);
|
|
|
|
if (!cm.hasFocus()) {
|
|
|
|
pos = reverse ? CodeMirror.Pos(cm.lastLine()) : CodeMirror.Pos(0, 0);
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
const searchCursor = cm.getSearchCursor(state.query, pos, shouldIgnoreCase(state.query));
|
2017-07-12 19:50:13 +00:00
|
|
|
if (searchCursor.find(reverse)) {
|
|
|
|
if (editors.length > 1) {
|
|
|
|
makeSectionVisible(cm);
|
|
|
|
cm.focus();
|
|
|
|
}
|
|
|
|
// speedup the original findNext
|
|
|
|
state.posFrom = reverse ? searchCursor.to() : searchCursor.from();
|
|
|
|
state.posTo = CodeMirror.Pos(state.posFrom.line, state.posFrom.ch);
|
2017-07-12 20:44:59 +00:00
|
|
|
originalCommand[reverse ? 'findPrev' : 'findNext'](cm);
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
} else if (!reverse && searchAppliesTo(cm)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cm = editors[(editors.indexOf(cm) + (reverse ? -1 + editors.length : 1)) % editors.length];
|
|
|
|
if (reverse && searchAppliesTo(cm)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// nothing found so far, so call the original search with wrap-around
|
2017-07-12 20:44:59 +00:00
|
|
|
originalCommand[reverse ? 'findPrev' : 'findNext'](activeCM);
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
function searchAppliesTo(cm) {
|
2017-08-21 00:05:08 +00:00
|
|
|
let inputs = $$('.applies-value', cm.getSection());
|
2017-07-12 19:50:13 +00:00
|
|
|
if (reverse) {
|
|
|
|
inputs = inputs.reverse();
|
|
|
|
}
|
|
|
|
inputs.splice(0, inputs.indexOf(document.activeElement) + 1);
|
2017-07-16 16:49:31 +00:00
|
|
|
return inputs.some(input => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const match = rxQuery.exec(input.value);
|
2017-07-12 19:50:13 +00:00
|
|
|
if (match) {
|
|
|
|
input.focus();
|
2017-07-12 20:44:59 +00:00
|
|
|
const end = match.index + match[0].length;
|
2017-07-12 19:50:13 +00:00
|
|
|
// scroll selected part into view in long inputs,
|
|
|
|
// works only outside of current event handlers chain, hence timeout=0
|
2017-07-16 16:49:31 +00:00
|
|
|
setTimeout(() => {
|
2017-07-12 19:50:13 +00:00
|
|
|
input.setSelectionRange(end, end);
|
2017-07-12 20:44:59 +00:00
|
|
|
input.setSelectionRange(match.index, end);
|
2017-07-12 19:50:13 +00:00
|
|
|
}, 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function findPrev(cm) {
|
|
|
|
findNext(cm, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function replace(activeCM, all) {
|
2017-07-14 08:46:10 +00:00
|
|
|
let queue;
|
|
|
|
let query;
|
|
|
|
let replacement;
|
2017-07-12 19:50:13 +00:00
|
|
|
activeCM = focusClosestCM(activeCM);
|
2017-08-30 13:20:49 +00:00
|
|
|
customizeOpenDialog(activeCM, template[all ? 'replaceAll' : 'replace'], function (txt) {
|
2017-07-12 19:50:13 +00:00
|
|
|
query = txt;
|
2017-08-30 13:20:49 +00:00
|
|
|
customizeOpenDialog(activeCM, template.replaceWith, function (txt) {
|
2017-07-12 19:50:13 +00:00
|
|
|
replacement = txt;
|
|
|
|
queue = editors.rotate(-editors.indexOf(activeCM));
|
2017-07-12 20:44:59 +00:00
|
|
|
if (all) {
|
|
|
|
editors.forEach(doReplace);
|
|
|
|
} else {
|
|
|
|
doReplace();
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
|
|
|
this(query);
|
|
|
|
});
|
|
|
|
originalCommand.replace(activeCM, all);
|
|
|
|
|
|
|
|
function doReplace() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const cm = queue.shift();
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!cm) {
|
|
|
|
if (!all) {
|
|
|
|
editors.lastActive.focus();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// hide the first two dialogs (replace, replaceWith)
|
2017-07-16 19:40:13 +00:00
|
|
|
cm.openDialog = (tmpl, callback) => {
|
|
|
|
cm.openDialog = (tmpl, callback) => {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.openDialog = originalOpenDialog;
|
|
|
|
if (all) {
|
|
|
|
callback(replacement);
|
|
|
|
} else {
|
|
|
|
doConfirm(cm);
|
|
|
|
callback(replacement);
|
2017-08-21 00:05:08 +00:00
|
|
|
if (!$('.CodeMirror-dialog', cm.getWrapperElement())) {
|
2017-07-12 19:50:13 +00:00
|
|
|
// no dialog == nothing found in the current CM, move to the next
|
|
|
|
doReplace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
callback(query);
|
|
|
|
};
|
|
|
|
originalCommand.replace(cm, all);
|
|
|
|
}
|
|
|
|
function doConfirm(cm) {
|
2017-07-12 20:44:59 +00:00
|
|
|
let wrapAround = false;
|
|
|
|
const origPos = cm.getCursor();
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.openConfirm = function overrideConfirm(tmpl, callbacks, opt) {
|
2017-07-16 16:49:31 +00:00
|
|
|
const ovrCallbacks = callbacks.map(callback => () => {
|
|
|
|
makeSectionVisible(cm);
|
|
|
|
cm.openConfirm = overrideConfirm;
|
|
|
|
setTimeout(() => { cm.openConfirm = originalOpenConfirm; }, 0);
|
|
|
|
|
|
|
|
const pos = cm.getCursor();
|
|
|
|
callback();
|
|
|
|
const cmp = CodeMirror.cmpPos(cm.getCursor(), pos);
|
|
|
|
wrapAround |= cmp <= 0;
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const dlg = $('.CodeMirror-dialog', cm.getWrapperElement());
|
2017-07-16 18:02:00 +00:00
|
|
|
if (!dlg || cmp === 0 || wrapAround && CodeMirror.cmpPos(cm.getCursor(), origPos) >= 0) {
|
2017-07-16 16:49:31 +00:00
|
|
|
if (dlg) {
|
|
|
|
dlg.remove();
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
doReplace();
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
2017-07-19 09:13:21 +00:00
|
|
|
originalOpenConfirm.call(cm, template.replaceConfirm.cloneNode(true), ovrCallbacks, opt);
|
2017-07-12 19:50:13 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function replaceAll(cm) {
|
|
|
|
replace(cm, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
CodeMirror.commands.find = find;
|
|
|
|
CodeMirror.commands.findNext = findNext;
|
|
|
|
CodeMirror.commands.findPrev = findPrev;
|
|
|
|
CodeMirror.commands.replace = replace;
|
|
|
|
CodeMirror.commands.replaceAll = replaceAll;
|
2015-03-07 00:08:04 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 06:21:43 +00:00
|
|
|
function jumpToLine(cm) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const cur = cm.getCursor();
|
2017-07-12 19:50:13 +00:00
|
|
|
refocusMinidialog(cm);
|
2017-07-19 09:13:21 +00:00
|
|
|
cm.openDialog(template.jumpToLine.cloneNode(true), str => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const m = str.match(/^\s*(\d+)(?:\s*:\s*(\d+))?\s*$/);
|
2017-07-12 19:50:13 +00:00
|
|
|
if (m) {
|
|
|
|
cm.setCursor(m[1] - 1, m[2] ? m[2] - 1 : cur.ch);
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
}, {value: cur.line + 1});
|
2015-03-08 06:21:43 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 07:56:49 +00:00
|
|
|
function toggleStyle() {
|
2017-09-11 16:09:25 +00:00
|
|
|
if (!editor) {
|
2017-09-12 11:37:06 +00:00
|
|
|
toggleSectionStyle();
|
|
|
|
return;
|
2017-09-11 16:09:25 +00:00
|
|
|
}
|
|
|
|
editor.toggleStyle();
|
|
|
|
}
|
|
|
|
|
2017-09-12 11:37:06 +00:00
|
|
|
function toggleSectionStyle() {
|
2017-07-12 19:50:13 +00:00
|
|
|
$('#enabled').checked = !$('#enabled').checked;
|
|
|
|
save();
|
2017-06-06 07:56:49 +00:00
|
|
|
}
|
|
|
|
|
2017-06-28 06:09:29 +00:00
|
|
|
function toggleSectionHeight(cm) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (cm.state.toggleHeightSaved) {
|
|
|
|
// restore previous size
|
|
|
|
cm.setSize(null, cm.state.toggleHeightSaved);
|
|
|
|
cm.state.toggleHeightSaved = 0;
|
|
|
|
} else {
|
|
|
|
// maximize
|
|
|
|
const wrapper = cm.display.wrapper;
|
|
|
|
const allBounds = $('#sections').getBoundingClientRect();
|
|
|
|
const pageExtrasHeight = allBounds.top + window.scrollY +
|
|
|
|
parseFloat(getComputedStyle($('#sections')).paddingBottom);
|
|
|
|
const sectionExtrasHeight = cm.getSection().clientHeight - wrapper.offsetHeight;
|
|
|
|
cm.state.toggleHeightSaved = wrapper.clientHeight;
|
|
|
|
cm.setSize(null, window.innerHeight - sectionExtrasHeight - pageExtrasHeight);
|
|
|
|
const bounds = cm.getSection().getBoundingClientRect();
|
|
|
|
if (bounds.top < 0 || bounds.bottom > window.innerHeight) {
|
|
|
|
window.scrollBy(0, bounds.top);
|
|
|
|
}
|
|
|
|
}
|
2017-06-28 06:09:29 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
function setupAutocomplete(cm, enable = true) {
|
|
|
|
const onOff = enable ? 'on' : 'off';
|
|
|
|
cm[onOff]('change', autocompleteOnTyping);
|
|
|
|
cm[onOff]('pick', autocompletePicked);
|
|
|
|
}
|
|
|
|
|
2017-08-31 18:13:49 +00:00
|
|
|
function autocompleteOnTyping(cm, [info], debounced) {
|
2017-07-12 20:44:59 +00:00
|
|
|
if (
|
|
|
|
cm.state.completionActive ||
|
|
|
|
info.origin && !info.origin.includes('input') ||
|
|
|
|
!info.text.last
|
|
|
|
) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (cm.state.autocompletePicked) {
|
|
|
|
cm.state.autocompletePicked = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!debounced) {
|
2017-08-31 18:13:49 +00:00
|
|
|
debounce(autocompleteOnTyping, 100, cm, [info], true);
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (info.text.last.match(/[-\w!]+$/)) {
|
|
|
|
cm.state.autocompletePicked = false;
|
|
|
|
cm.options.hintOptions.completeSingle = false;
|
|
|
|
cm.execCommand('autocomplete');
|
|
|
|
setTimeout(() => {
|
|
|
|
cm.options.hintOptions.completeSingle = true;
|
|
|
|
});
|
|
|
|
}
|
2017-06-18 12:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function autocompletePicked(cm) {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.state.autocompletePicked = true;
|
2017-06-18 12:20:48 +00:00
|
|
|
}
|
|
|
|
|
2015-10-29 18:20:05 +00:00
|
|
|
function refocusMinidialog(cm) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const section = cm.getSection();
|
2017-08-21 00:05:08 +00:00
|
|
|
if (!$('.CodeMirror-dialog', section)) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// close the currently opened minidialog
|
|
|
|
cm.focus();
|
|
|
|
// make sure to focus the input in newly opened minidialog
|
2017-07-16 16:49:31 +00:00
|
|
|
setTimeout(() => {
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.CodeMirror-dialog', section).focus();
|
2017-07-12 19:50:13 +00:00
|
|
|
}, 0);
|
2015-10-29 18:20:05 +00:00
|
|
|
}
|
|
|
|
|
2015-04-23 01:53:30 +00:00
|
|
|
function nextPrevEditor(cm, direction) {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm = editors[(editors.indexOf(cm) + direction + editors.length) % editors.length];
|
|
|
|
makeSectionVisible(cm);
|
|
|
|
cm.focus();
|
2017-09-01 09:23:49 +00:00
|
|
|
return cm;
|
|
|
|
}
|
|
|
|
|
|
|
|
function nextPrevEditorOnKeydown(cm, event) {
|
|
|
|
const key = event.which;
|
|
|
|
if (key < 37 || key > 40 || event.shiftKey || event.altKey || event.metaKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const {line, ch} = cm.getCursor();
|
|
|
|
switch (key) {
|
|
|
|
case 37:
|
|
|
|
// arrow Left
|
|
|
|
if (line || ch) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// fallthrough to arrow Up
|
|
|
|
case 38:
|
|
|
|
// arrow Up
|
|
|
|
if (line > 0 || cm === editors[0]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
cm = nextPrevEditor(cm, -1);
|
|
|
|
cm.setCursor(cm.doc.size - 1, key === 37 ? 1e20 : ch);
|
|
|
|
break;
|
|
|
|
case 39:
|
|
|
|
// arrow Right
|
|
|
|
if (line < cm.doc.size - 1 || ch < cm.getLine(line).length - 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// fallthrough to arrow Down
|
|
|
|
case 40:
|
|
|
|
// arrow Down
|
|
|
|
if (line < cm.doc.size - 1 || cm === editors.last) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
cm = nextPrevEditor(cm, 1);
|
|
|
|
cm.setCursor(0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
const animation = (cm.getSection().firstElementChild.getAnimations() || [])[0];
|
|
|
|
if (animation) {
|
|
|
|
animation.playbackRate = -1;
|
|
|
|
animation.currentTime = 2000;
|
|
|
|
animation.play();
|
|
|
|
}
|
2015-03-08 06:21:43 +00:00
|
|
|
}
|
|
|
|
|
2015-04-23 01:53:30 +00:00
|
|
|
function getEditorInSight(nearbyElement) {
|
2017-07-12 19:50:13 +00:00
|
|
|
// priority: 1. associated CM for applies-to element 2. last active if visible 3. first visible
|
2017-07-12 20:44:59 +00:00
|
|
|
let cm;
|
|
|
|
if (nearbyElement && nearbyElement.className.indexOf('applies-') >= 0) {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm = getSectionForChild(nearbyElement).CodeMirror;
|
|
|
|
} else {
|
|
|
|
cm = editors.lastActive;
|
|
|
|
}
|
2017-08-30 17:44:41 +00:00
|
|
|
// closest editor should have at least 2 lines visible
|
|
|
|
const lineHeight = editors[0].defaultTextHeight();
|
|
|
|
const scrollY = window.scrollY;
|
|
|
|
const windowBottom = scrollY + window.innerHeight - 2 * lineHeight;
|
|
|
|
const allSectionsContainerTop = scrollY + $('#sections').getBoundingClientRect().top;
|
|
|
|
const distances = [];
|
|
|
|
const alreadyInView = cm && offscreenDistance(null, cm) === 0;
|
|
|
|
return alreadyInView ? cm : findClosest();
|
|
|
|
|
|
|
|
function offscreenDistance(index, cm) {
|
|
|
|
if (index >= 0 && distances[index] !== undefined) {
|
|
|
|
return distances[index];
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-30 17:44:41 +00:00
|
|
|
const section = (cm || editors[index]).getSection();
|
|
|
|
const top = allSectionsContainerTop + section.offsetTop;
|
|
|
|
if (top < scrollY + lineHeight) {
|
|
|
|
return Math.max(0, scrollY - top - lineHeight);
|
|
|
|
}
|
|
|
|
if (top < windowBottom) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-08-30 17:44:41 +00:00
|
|
|
const distance = top - windowBottom + section.offsetHeight;
|
|
|
|
if (index >= 0) {
|
|
|
|
distances[index] = distance;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-30 17:44:41 +00:00
|
|
|
return distance;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 17:44:41 +00:00
|
|
|
function findClosest() {
|
2017-08-30 17:54:03 +00:00
|
|
|
const last = editors.length - 1;
|
2017-08-30 17:44:41 +00:00
|
|
|
let a = 0;
|
2017-08-30 17:54:03 +00:00
|
|
|
let b = last;
|
2017-08-30 17:44:41 +00:00
|
|
|
let c;
|
|
|
|
let cm, distance;
|
|
|
|
while (a < b - 1) {
|
|
|
|
c = (a + b) / 2 | 0;
|
|
|
|
distance = offscreenDistance(c);
|
|
|
|
if (!distance || !c) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
const distancePrev = offscreenDistance(c - 1);
|
2017-08-30 17:54:03 +00:00
|
|
|
const distanceNext = c < last ? offscreenDistance(c + 1) : 1e20;
|
2017-08-30 17:44:41 +00:00
|
|
|
if (distancePrev <= distance && distance <= distanceNext) {
|
|
|
|
b = c;
|
|
|
|
} else {
|
|
|
|
a = c;
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-30 17:44:41 +00:00
|
|
|
while (b && offscreenDistance(b - 1) <= offscreenDistance(b)) {
|
|
|
|
b--;
|
|
|
|
}
|
|
|
|
cm = editors[b];
|
|
|
|
if (distances[b] > 0) {
|
|
|
|
makeSectionVisible(cm);
|
|
|
|
}
|
|
|
|
return cm;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2015-04-23 01:53:30 +00:00
|
|
|
}
|
|
|
|
|
2015-06-23 16:24:53 +00:00
|
|
|
function beautify(event) {
|
2017-09-12 15:19:16 +00:00
|
|
|
loadScript('/vendor-overwrites/beautify/beautify-css-mod.js')
|
|
|
|
.then(() => {
|
2017-08-29 11:28:13 +00:00
|
|
|
if (!window.css_beautify && window.exports) {
|
|
|
|
window.css_beautify = window.exports.css_beautify;
|
|
|
|
}
|
2017-09-12 15:19:16 +00:00
|
|
|
})
|
|
|
|
.then(doBeautify);
|
2017-08-13 02:28:44 +00:00
|
|
|
|
2017-07-12 19:50:13 +00:00
|
|
|
function doBeautify() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const tabs = prefs.get('editor.indentWithTabs');
|
|
|
|
const options = prefs.get('editor.beautify');
|
|
|
|
options.indent_size = tabs ? 1 : prefs.get('editor.tabSize');
|
|
|
|
options.indent_char = tabs ? '\t' : ' ';
|
|
|
|
|
|
|
|
const section = getSectionForChild(event.target);
|
2017-09-12 11:34:04 +00:00
|
|
|
const scope = section ? [section.CodeMirror] : editors;
|
2017-07-12 20:44:59 +00:00
|
|
|
|
|
|
|
showHelp(t('styleBeautify'), '<div class="beautify-options">' +
|
|
|
|
optionHtml('.selector1,', 'selector_separator_newline') +
|
|
|
|
optionHtml('.selector2,', 'newline_before_open_brace') +
|
|
|
|
optionHtml('{', 'newline_after_open_brace') +
|
|
|
|
optionHtml('border: none;', 'newline_between_properties', true) +
|
|
|
|
optionHtml('display: block;', 'newline_before_close_brace', true) +
|
|
|
|
optionHtml('}', 'newline_between_rules') +
|
2017-07-12 19:50:13 +00:00
|
|
|
`<label style="display: block; clear: both;"><input data-option="indent_conditional" type="checkbox"
|
|
|
|
${options.indent_conditional !== false ? 'checked' : ''}>` +
|
|
|
|
t('styleBeautifyIndentConditional') + '</label>' +
|
2017-07-12 20:44:59 +00:00
|
|
|
'</div>' +
|
|
|
|
'<div><button role="undo"></button></div>');
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const undoButton = $('#help-popup button[role="undo"]');
|
2017-07-16 18:02:00 +00:00
|
|
|
undoButton.textContent = t(scope.length === 1 ? 'undo' : 'undoGlobal');
|
2017-07-16 16:49:31 +00:00
|
|
|
undoButton.addEventListener('click', () => {
|
2017-07-12 20:44:59 +00:00
|
|
|
let undoable = false;
|
2017-07-16 16:49:31 +00:00
|
|
|
scope.forEach(cm => {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (cm.beautifyChange && cm.beautifyChange[cm.changeGeneration()]) {
|
|
|
|
delete cm.beautifyChange[cm.changeGeneration()];
|
|
|
|
cm.undo();
|
|
|
|
cm.scrollIntoView(cm.getCursor());
|
|
|
|
undoable |= cm.beautifyChange[cm.changeGeneration()];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
undoButton.disabled = !undoable;
|
|
|
|
});
|
|
|
|
|
2017-07-16 16:49:31 +00:00
|
|
|
scope.forEach(cm => {
|
|
|
|
setTimeout(() => {
|
2017-07-12 19:50:13 +00:00
|
|
|
const pos = options.translate_positions =
|
|
|
|
[].concat.apply([], cm.doc.sel.ranges.map(r =>
|
|
|
|
[Object.assign({}, r.anchor), Object.assign({}, r.head)]));
|
2017-07-12 20:44:59 +00:00
|
|
|
const text = cm.getValue();
|
2017-08-29 11:28:13 +00:00
|
|
|
const newText = css_beautify(text, options);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (newText !== text) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!cm.beautifyChange || !cm.beautifyChange[cm.changeGeneration()]) {
|
|
|
|
// clear the list if last change wasn't a css-beautify
|
|
|
|
cm.beautifyChange = {};
|
|
|
|
}
|
|
|
|
cm.setValue(newText);
|
|
|
|
const selections = [];
|
|
|
|
for (let i = 0; i < pos.length; i += 2) {
|
|
|
|
selections.push({anchor: pos[i], head: pos[i + 1]});
|
|
|
|
}
|
|
|
|
cm.setSelections(selections);
|
|
|
|
cm.beautifyChange[cm.changeGeneration()] = true;
|
|
|
|
undoButton.disabled = false;
|
|
|
|
}
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.beautify-options').onchange = ({target}) => {
|
2017-07-16 18:02:00 +00:00
|
|
|
const value = target.type === 'checkbox' ? target.checked : target.selectedIndex > 0;
|
2017-07-12 19:50:13 +00:00
|
|
|
prefs.set('editor.beautify', Object.assign(options, {[target.dataset.option]: value}));
|
|
|
|
if (target.parentNode.hasAttribute('newline')) {
|
|
|
|
target.parentNode.setAttribute('newline', value.toString());
|
|
|
|
}
|
|
|
|
doBeautify();
|
|
|
|
};
|
|
|
|
|
|
|
|
function optionHtml(label, optionName, indent) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const value = options[optionName];
|
|
|
|
return '<div newline="' + value.toString() + '">' +
|
|
|
|
'<span' + (indent ? ' indent' : '') + '>' + label + '</span>' +
|
|
|
|
'<select data-option="' + optionName + '">' +
|
|
|
|
'<option' + (value ? '' : ' selected') + '> </option>' +
|
|
|
|
'<option' + (value ? ' selected' : '') + '>\\n</option>' +
|
|
|
|
'</select></div>';
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-23 16:24:53 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 09:46:41 +00:00
|
|
|
onDOMready().then(init);
|
2015-01-30 17:05:06 +00:00
|
|
|
|
2017-09-10 15:46:54 +00:00
|
|
|
function init() {
|
|
|
|
initCodeMirror();
|
|
|
|
const params = getParams();
|
2017-09-12 11:47:32 +00:00
|
|
|
getStyle().then(style => {
|
|
|
|
styleId = style.id;
|
|
|
|
sessionStorage.justEditedStyleId = styleId;
|
2017-09-12 13:34:12 +00:00
|
|
|
initWithStyle({style});
|
2017-09-12 11:47:32 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function getStyle() {
|
2017-09-10 15:46:54 +00:00
|
|
|
if (!params.id) {
|
|
|
|
// match should be 2 - one for the whole thing, one for the parentheses
|
|
|
|
// This is an add
|
|
|
|
$('#heading').textContent = t('addStyleTitle');
|
2017-09-12 11:47:32 +00:00
|
|
|
return Promise.resolve(createEmptyStyle());
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-09-10 15:46:54 +00:00
|
|
|
$('#heading').textContent = t('editStyleHeading');
|
|
|
|
// This is an edit
|
|
|
|
return getStylesSafe({id: params.id}).then(styles => {
|
|
|
|
let style = styles[0];
|
|
|
|
if (!style) {
|
|
|
|
style = createEmptyStyle();
|
|
|
|
history.replaceState({}, document.title, location.pathname);
|
|
|
|
}
|
|
|
|
return style;
|
|
|
|
});
|
2017-09-12 11:47:32 +00:00
|
|
|
}
|
2017-09-12 11:39:01 +00:00
|
|
|
|
|
|
|
function createEmptyStyle() {
|
|
|
|
const params = getParams();
|
|
|
|
const style = {
|
|
|
|
id: null,
|
|
|
|
name: '',
|
|
|
|
enabled: true,
|
|
|
|
sections: [{code: ''}]
|
|
|
|
};
|
|
|
|
for (const i in CssToProperty) {
|
|
|
|
if (params[i]) {
|
|
|
|
style.sections[0][CssToProperty[i]] = [params[i]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return style;
|
|
|
|
}
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-20 04:59:51 +00:00
|
|
|
function setStyleMeta(style) {
|
2017-09-03 15:14:31 +00:00
|
|
|
$('#name').value = style.name || '';
|
|
|
|
$('#enabled').checked = style.enabled !== false;
|
|
|
|
$('#url').href = style.url || '';
|
2017-03-20 04:59:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 11:57:43 +00:00
|
|
|
function initWithStyle(request) {
|
|
|
|
if (!editor) {
|
2017-09-12 15:19:16 +00:00
|
|
|
if (!request.style.usercss) {
|
2017-09-12 12:01:27 +00:00
|
|
|
initWithSectionStyle(request);
|
|
|
|
} else {
|
|
|
|
editor = createSourceEditor(request.style);
|
|
|
|
}
|
2017-09-12 11:57:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.codeIsUpdated === false) {
|
|
|
|
editor.updateStyleMeta(request.style);
|
2017-09-11 16:09:25 +00:00
|
|
|
} else {
|
2017-09-12 11:57:43 +00:00
|
|
|
editor.replaceStyle(request.style);
|
2017-09-11 16:09:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-12 11:37:06 +00:00
|
|
|
function initWithSectionStyle({style, codeIsUpdated}) {
|
2017-07-12 19:50:13 +00:00
|
|
|
setStyleMeta(style);
|
|
|
|
|
|
|
|
if (codeIsUpdated === false) {
|
|
|
|
setCleanGlobal();
|
|
|
|
updateTitle();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// if this was done in response to an update, we need to clear existing sections
|
2017-08-29 22:49:03 +00:00
|
|
|
editors.length = 0;
|
|
|
|
getSections().forEach(div => div.remove());
|
2017-07-12 20:44:59 +00:00
|
|
|
const queue = style.sections.length ? style.sections.slice() : [{code: ''}];
|
2017-08-29 20:36:56 +00:00
|
|
|
const t0 = performance.now();
|
2017-08-29 22:49:03 +00:00
|
|
|
maximizeCodeHeight.stats = null;
|
2017-07-12 19:50:13 +00:00
|
|
|
// after 100ms the sections will be added asynchronously
|
2017-08-29 20:36:56 +00:00
|
|
|
while (performance.now() - t0 <= 100 && queue.length) {
|
2017-07-12 19:50:13 +00:00
|
|
|
add();
|
|
|
|
}
|
|
|
|
(function processQueue() {
|
|
|
|
if (queue.length) {
|
|
|
|
add();
|
2017-08-29 20:36:56 +00:00
|
|
|
setTimeout(processQueue);
|
2017-08-31 21:52:38 +00:00
|
|
|
if (performance.now() - t0 > 500) {
|
|
|
|
setGlobalProgress(editors.length, style.sections.length);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
setGlobalProgress();
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
})();
|
2017-09-01 09:25:40 +00:00
|
|
|
editors[0].focus();
|
2017-07-12 19:50:13 +00:00
|
|
|
initHooks();
|
2017-08-29 22:49:03 +00:00
|
|
|
setCleanGlobal();
|
|
|
|
updateTitle();
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
function add() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const sectionDiv = addSection(null, queue.shift());
|
2017-07-12 19:50:13 +00:00
|
|
|
maximizeCodeHeight(sectionDiv, !queue.length);
|
2017-08-29 20:36:56 +00:00
|
|
|
if (!queue.length) {
|
|
|
|
editors.last.state.renderLintReportNow = true;
|
2017-08-20 14:06:17 +00:00
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2015-03-21 13:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function initHooks() {
|
2017-08-29 22:49:03 +00:00
|
|
|
if (initHooks.alreadyDone) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
initHooks.alreadyDone = true;
|
2017-08-21 00:05:08 +00:00
|
|
|
$$('#header .style-contributor').forEach(node => {
|
2017-07-12 20:44:59 +00:00
|
|
|
node.addEventListener('change', onChange);
|
|
|
|
node.addEventListener('input', onChange);
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
2017-08-21 00:05:08 +00:00
|
|
|
$('#toggle-style-help').addEventListener('click', showToggleStyleHelp);
|
|
|
|
$('#to-mozilla').addEventListener('click', showMozillaFormat, false);
|
|
|
|
$('#to-mozilla-help').addEventListener('click', showToMozillaHelp, false);
|
|
|
|
$('#from-mozilla').addEventListener('click', fromMozillaFormat);
|
|
|
|
$('#beautify').addEventListener('click', beautify);
|
|
|
|
$('#save-button').addEventListener('click', save, false);
|
|
|
|
$('#sections-help').addEventListener('click', showSectionHelp, false);
|
|
|
|
$('#keyMap-help').addEventListener('click', showKeyMapHelp, false);
|
|
|
|
$('#cancel-button').addEventListener('click', goBackToManage);
|
2017-09-03 16:54:25 +00:00
|
|
|
|
2017-09-01 09:46:41 +00:00
|
|
|
$('#options').open = prefs.get('editor.options.expanded');
|
|
|
|
$('#options h2').addEventListener('click', () => {
|
|
|
|
setTimeout(() => prefs.set('editor.options.expanded', $('#options').open));
|
|
|
|
});
|
2017-09-03 17:06:20 +00:00
|
|
|
prefs.subscribe(['editor.options.expanded'], (key, value) => {
|
|
|
|
$('#options').open = value;
|
|
|
|
});
|
2017-09-01 09:46:41 +00:00
|
|
|
|
2017-08-17 19:08:48 +00:00
|
|
|
initLint();
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-07-31 16:39:10 +00:00
|
|
|
if (!FIREFOX) {
|
|
|
|
$$([
|
|
|
|
'input:not([type])',
|
|
|
|
'input[type="text"]',
|
|
|
|
'input[type="search"]',
|
|
|
|
'input[type="number"]',
|
|
|
|
].join(',')
|
|
|
|
).forEach(e => e.addEventListener('mousedown', toggleContextMenuDelete));
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-27 15:03:59 +00:00
|
|
|
window.addEventListener('load', function _() {
|
|
|
|
window.removeEventListener('load', _);
|
|
|
|
window.addEventListener('resize', () => debounce(rememberWindowSize, 100));
|
|
|
|
});
|
|
|
|
|
2017-07-12 19:50:13 +00:00
|
|
|
setupGlobalSearch();
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 22:29:07 +00:00
|
|
|
|
|
|
|
function toggleContextMenuDelete(event) {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (event.button === 2 && prefs.get('editor.contextDelete')) {
|
2017-07-12 19:50:13 +00:00
|
|
|
chrome.contextMenus.update('editor.contextDelete', {
|
|
|
|
enabled: Boolean(
|
2017-07-16 18:02:00 +00:00
|
|
|
this.selectionStart !== this.selectionEnd ||
|
2017-07-12 19:50:13 +00:00
|
|
|
this.somethingSelected && this.somethingSelected()
|
|
|
|
),
|
|
|
|
}, ignoreChromeError);
|
|
|
|
}
|
2017-03-21 22:29:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-24 23:03:10 +00:00
|
|
|
function maximizeCodeHeight(sectionDiv, isLast) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const cm = sectionDiv.CodeMirror;
|
|
|
|
const stats = maximizeCodeHeight.stats = maximizeCodeHeight.stats || {totalHeight: 0, deltas: []};
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!stats.cmActualHeight) {
|
|
|
|
stats.cmActualHeight = getComputedHeight(cm.display.wrapper);
|
|
|
|
}
|
|
|
|
if (!stats.sectionMarginTop) {
|
|
|
|
stats.sectionMarginTop = parseFloat(getComputedStyle(sectionDiv).marginTop);
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
const sectionTop = sectionDiv.getBoundingClientRect().top - stats.sectionMarginTop;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!stats.firstSectionTop) {
|
|
|
|
stats.firstSectionTop = sectionTop;
|
|
|
|
}
|
2017-07-12 20:44:59 +00:00
|
|
|
const extrasHeight = getComputedHeight(sectionDiv) - stats.cmActualHeight;
|
|
|
|
const cmMaxHeight = window.innerHeight - extrasHeight - sectionTop - stats.sectionMarginTop;
|
|
|
|
const cmDesiredHeight = cm.display.sizer.clientHeight + 2 * cm.defaultTextHeight();
|
|
|
|
const cmGrantableHeight = Math.max(stats.cmActualHeight, Math.min(cmMaxHeight, cmDesiredHeight));
|
2017-07-12 19:50:13 +00:00
|
|
|
stats.deltas.push(cmGrantableHeight - stats.cmActualHeight);
|
|
|
|
stats.totalHeight += cmGrantableHeight + extrasHeight;
|
|
|
|
if (!isLast) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
stats.totalHeight += stats.firstSectionTop;
|
|
|
|
if (stats.totalHeight <= window.innerHeight) {
|
2017-07-16 16:49:31 +00:00
|
|
|
editors.forEach((cm, index) => {
|
2017-07-12 19:50:13 +00:00
|
|
|
cm.setSize(null, stats.deltas[index] + stats.cmActualHeight);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// scale heights to fill the gap between last section and bottom edge of the window
|
2017-08-21 00:05:08 +00:00
|
|
|
const sections = $('#sections');
|
2017-07-12 20:44:59 +00:00
|
|
|
const available = window.innerHeight - sections.getBoundingClientRect().bottom -
|
2017-07-12 19:50:13 +00:00
|
|
|
parseFloat(getComputedStyle(sections).marginBottom);
|
|
|
|
if (available <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
const totalDelta = stats.deltas.reduce((sum, d) => sum + d, 0);
|
2017-07-12 20:44:59 +00:00
|
|
|
const q = available / totalDelta;
|
|
|
|
const baseHeight = stats.cmActualHeight - stats.sectionMarginTop;
|
2017-07-16 16:49:31 +00:00
|
|
|
stats.deltas.forEach((delta, index) => {
|
2017-07-12 19:50:13 +00:00
|
|
|
editors[index].setSize(null, baseHeight + Math.floor(q * delta));
|
|
|
|
});
|
2015-05-24 23:03:10 +00:00
|
|
|
}
|
|
|
|
|
2015-03-21 13:24:45 +00:00
|
|
|
function updateTitle() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const DIRTY_TITLE = '* $';
|
2015-03-14 11:51:41 +00:00
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const name = $('#name').savedValue;
|
2017-07-12 20:44:59 +00:00
|
|
|
const clean = isCleanGlobal();
|
|
|
|
const title = styleId === null ? t('addStyleTitle') : t('editStyleTitle', [name]);
|
|
|
|
document.title = clean ? title : DIRTY_TITLE.replace('$', title);
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function validate() {
|
2017-08-21 00:05:08 +00:00
|
|
|
const name = $('#name').value;
|
2017-07-16 18:02:00 +00:00
|
|
|
if (name === '') {
|
2017-09-01 09:27:59 +00:00
|
|
|
$('#name').focus();
|
2017-07-12 20:44:59 +00:00
|
|
|
return t('styleMissingName');
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
// validate the regexps
|
2017-08-21 00:05:08 +00:00
|
|
|
if ($$('.applies-to-list').some(list => {
|
2017-07-16 16:49:31 +00:00
|
|
|
list.childNodes.some(li => {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (li.className === template.appliesToEverything.className) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-08-21 00:05:08 +00:00
|
|
|
const valueElement = $('[name=applies-value]', li);
|
|
|
|
const type = $('[name=applies-type]', li).value;
|
2017-07-12 20:44:59 +00:00
|
|
|
const value = valueElement.value;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (type && value) {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (type === 'regexp') {
|
2017-07-12 19:50:13 +00:00
|
|
|
try {
|
|
|
|
new RegExp(value);
|
|
|
|
} catch (ex) {
|
|
|
|
valueElement.focus();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
})) {
|
2017-07-12 20:44:59 +00:00
|
|
|
return t('styleBadRegexp');
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
return null;
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 20:36:56 +00:00
|
|
|
function updateLintReportIfEnabled(...args) {
|
|
|
|
if (CodeMirror.defaults.lint) {
|
|
|
|
updateLintReport(...args);
|
2017-08-20 14:06:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-30 17:05:06 +00:00
|
|
|
function save() {
|
2017-09-11 16:09:25 +00:00
|
|
|
if (!editor) {
|
2017-09-12 11:37:06 +00:00
|
|
|
saveSectionStyle();
|
|
|
|
return;
|
2017-09-11 16:09:25 +00:00
|
|
|
}
|
|
|
|
editor.save();
|
|
|
|
}
|
|
|
|
|
2017-09-12 11:37:06 +00:00
|
|
|
function saveSectionStyle() {
|
2017-08-20 14:06:17 +00:00
|
|
|
updateLintReportIfEnabled(null, 0);
|
2017-07-12 19:50:13 +00:00
|
|
|
|
|
|
|
// save the contents of the CodeMirror editors back into the textareas
|
2017-07-12 20:44:59 +00:00
|
|
|
for (let i = 0; i < editors.length; i++) {
|
2017-07-12 19:50:13 +00:00
|
|
|
editors[i].save();
|
|
|
|
}
|
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
const error = validate();
|
2017-07-12 19:50:13 +00:00
|
|
|
if (error) {
|
|
|
|
alert(error);
|
|
|
|
return;
|
|
|
|
}
|
2017-08-21 00:05:08 +00:00
|
|
|
const name = $('#name').value;
|
|
|
|
const enabled = $('#enabled').checked;
|
2017-07-12 19:50:13 +00:00
|
|
|
saveStyleSafe({
|
|
|
|
id: styleId,
|
|
|
|
name: name,
|
|
|
|
enabled: enabled,
|
|
|
|
reason: 'editSave',
|
|
|
|
sections: getSectionsHashes()
|
|
|
|
})
|
|
|
|
.then(saveComplete);
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 19:31:03 +00:00
|
|
|
function getSectionsHashes() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const sections = [];
|
2017-07-16 16:49:31 +00:00
|
|
|
getSections().forEach(div => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const meta = getMeta(div);
|
|
|
|
const code = div.CodeMirror.getValue();
|
2017-07-16 18:02:00 +00:00
|
|
|
if (/^\s*$/.test(code) && Object.keys(meta).length === 0) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
meta.code = code;
|
|
|
|
sections.push(meta);
|
|
|
|
});
|
|
|
|
return sections;
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getMeta(e) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const meta = {urls: [], urlPrefixes: [], domains: [], regexps: []};
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.applies-to-list', e).childNodes.forEach(li => {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (li.className === template.appliesToEverything.className) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-08-21 00:05:08 +00:00
|
|
|
const type = $('[name=applies-type]', li).value;
|
|
|
|
const value = $('[name=applies-value]', li).value;
|
2017-07-12 19:50:13 +00:00
|
|
|
if (type && value) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const property = CssToProperty[type];
|
2017-07-12 19:50:13 +00:00
|
|
|
meta[property].push(value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return meta;
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function saveComplete(style) {
|
2017-07-12 19:50:13 +00:00
|
|
|
styleId = style.id;
|
2017-07-23 15:33:55 +00:00
|
|
|
sessionStorage.justEditedStyleId = styleId;
|
2017-07-12 19:50:13 +00:00
|
|
|
setCleanGlobal();
|
|
|
|
|
|
|
|
// Go from new style URL to edit style URL
|
2017-07-16 18:02:00 +00:00
|
|
|
if (location.href.indexOf('id=') === -1) {
|
2017-07-12 20:44:59 +00:00
|
|
|
history.replaceState({}, document.title, 'edit.html?id=' + style.id);
|
2017-07-19 12:38:27 +00:00
|
|
|
$('#heading').textContent = t('editStyleHeading');
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
updateTitle();
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showMozillaFormat() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const popup = showCodeMirrorPopup(t('styleToMozillaFormatTitle'), '', {readOnly: true});
|
2017-07-12 19:50:13 +00:00
|
|
|
popup.codebox.setValue(toMozillaFormat());
|
2017-07-12 20:44:59 +00:00
|
|
|
popup.codebox.execCommand('selectAll');
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function toMozillaFormat() {
|
2017-08-05 16:49:25 +00:00
|
|
|
return mozParser.format({sections: getSectionsHashes()});
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 17:44:46 +00:00
|
|
|
function fromMozillaFormat() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const popup = showCodeMirrorPopup(t('styleFromMozillaFormatPrompt'), tHTML(`<div>
|
|
|
|
<button name="import-append" i18n-text="importAppendLabel" i18n-title="importAppendTooltip"></button>
|
|
|
|
<button name="import-replace" i18n-text="importReplaceLabel" i18n-title="importReplaceTooltip"></button>
|
|
|
|
</div>`
|
2017-07-19 11:34:31 +00:00
|
|
|
));
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const contents = $('.contents', popup);
|
2017-07-12 19:50:13 +00:00
|
|
|
contents.insertBefore(popup.codebox.display.wrapper, contents.firstElementChild);
|
|
|
|
popup.codebox.focus();
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
$('[name="import-append"]', popup).addEventListener('click', doImport);
|
|
|
|
$('[name="import-replace"]', popup).addEventListener('click', doImport);
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-07-16 16:49:31 +00:00
|
|
|
popup.codebox.on('change', () => {
|
2017-07-12 19:50:13 +00:00
|
|
|
clearTimeout(popup.mozillaTimeout);
|
2017-07-16 16:49:31 +00:00
|
|
|
popup.mozillaTimeout = setTimeout(() => {
|
2017-07-12 20:44:59 +00:00
|
|
|
popup.classList.toggle('ready', trimNewLines(popup.codebox.getValue()));
|
2017-07-12 19:50:13 +00:00
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
|
2017-08-21 00:25:27 +00:00
|
|
|
function doImport(event) {
|
2017-09-12 15:19:16 +00:00
|
|
|
const replaceOldStyle = event.target.name === 'import-replace';
|
2017-07-12 20:44:59 +00:00
|
|
|
const mozStyle = trimNewLines(popup.codebox.getValue());
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-09-12 15:19:16 +00:00
|
|
|
mozParser.parse(mozStyle)
|
|
|
|
.then(updateSection)
|
|
|
|
.then(() => {
|
|
|
|
editors.forEach(cm => updateLintReportIfEnabled(cm, 1));
|
|
|
|
editors.last.state.renderLintReportNow = true;
|
|
|
|
$('.dismiss', popup).onclick();
|
|
|
|
})
|
|
|
|
.catch(showError);
|
|
|
|
|
|
|
|
function showError(errors) {
|
|
|
|
if (!errors.join) {
|
|
|
|
errors = [errors];
|
|
|
|
}
|
|
|
|
showHelp(t('issues'), $element({
|
|
|
|
tag: 'pre',
|
|
|
|
textContent: errors.join('\n'),
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateSection(sections) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (replaceOldStyle) {
|
2017-07-16 16:49:31 +00:00
|
|
|
editors.slice(0).reverse().forEach(cm => {
|
2017-07-12 19:50:13 +00:00
|
|
|
removeSection({target: cm.getSection().firstElementChild});
|
|
|
|
});
|
|
|
|
} else if (!editors.last.getValue()) {
|
|
|
|
// nuke the last blank section
|
2017-08-21 00:05:08 +00:00
|
|
|
if ($('.applies-to-everything', editors.last.getSection())) {
|
2017-07-12 19:50:13 +00:00
|
|
|
removeSection({target: editors.last.getSection()});
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
|
|
|
|
const firstSection = sections[0];
|
|
|
|
setCleanItem(addSection(null, firstSection), false);
|
|
|
|
const firstAddedCM = editors.last;
|
|
|
|
for (const section of sections.slice(1)) {
|
|
|
|
setCleanItem(addSection(null, section), false);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
|
|
|
|
delete maximizeCodeHeight.stats;
|
|
|
|
editors.forEach(cm => {
|
|
|
|
maximizeCodeHeight(cm.getSection(), cm === editors.last);
|
|
|
|
});
|
|
|
|
|
|
|
|
makeSectionVisible(firstAddedCM);
|
|
|
|
firstAddedCM.focus();
|
2017-09-12 15:19:16 +00:00
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-09-12 15:19:16 +00:00
|
|
|
|
2017-07-12 19:50:13 +00:00
|
|
|
function trimNewLines(s) {
|
2017-07-12 20:44:59 +00:00
|
|
|
return s.replace(/^[\s\n]+/, '').replace(/[\s\n]+$/, '');
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2015-07-13 17:44:46 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 17:05:06 +00:00
|
|
|
function showSectionHelp() {
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('styleSectionsTitle'), t('sectionHelp'));
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showAppliesToHelp() {
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('appliesLabel'), t('appliesHelp'));
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showToMozillaHelp() {
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('styleMozillaFormatHeading'), t('styleToMozillaFormatHelp'));
|
2015-04-26 12:34:59 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 07:56:49 +00:00
|
|
|
function showToggleStyleHelp() {
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('helpAlt'), t('styleEnabledToggleHint'));
|
2017-06-06 07:56:49 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 12:34:59 +00:00
|
|
|
function showKeyMapHelp() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const keyMap = mergeKeyMaps({}, prefs.get('editor.keyMap'), CodeMirror.defaults.extraKeys);
|
|
|
|
const keyMapSorted = Object.keys(keyMap)
|
2017-07-16 16:49:31 +00:00
|
|
|
.map(key => ({key: key, cmd: keyMap[key]}))
|
2017-07-12 20:44:59 +00:00
|
|
|
.concat([{key: 'Shift-Ctrl-Wheel', cmd: 'scrollWindow'}])
|
2017-07-16 18:02:00 +00:00
|
|
|
.sort((a, b) => (a.cmd < b.cmd || (a.cmd === b.cmd && a.key < b.key) ? -1 : 1));
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('cm_keyMap') + ': ' + prefs.get('editor.keyMap'),
|
2017-07-12 19:50:13 +00:00
|
|
|
'<table class="keymap-list">' +
|
2017-07-12 20:44:59 +00:00
|
|
|
'<thead><tr><th><input placeholder="' + t('helpKeyMapHotkey') + '" type="search"></th>' +
|
|
|
|
'<th><input placeholder="' + t('helpKeyMapCommand') + '" type="search"></th></tr></thead>' +
|
2017-07-16 16:49:31 +00:00
|
|
|
'<tbody>' + keyMapSorted.map(value =>
|
|
|
|
'<tr><td>' + value.key + '</td><td>' + value.cmd + '</td></tr>'
|
|
|
|
).join('') +
|
2017-07-12 20:44:59 +00:00
|
|
|
'</tbody>' +
|
|
|
|
'</table>');
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const table = $('#help-popup table');
|
2017-07-12 20:44:59 +00:00
|
|
|
table.addEventListener('input', filterTable);
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
const inputs = $$('input', table);
|
2017-07-12 20:44:59 +00:00
|
|
|
inputs[0].addEventListener('keydown', hotkeyHandler);
|
2017-07-12 19:50:13 +00:00
|
|
|
inputs[1].focus();
|
|
|
|
|
|
|
|
function hotkeyHandler(event) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const keyName = CodeMirror.keyName(event);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (keyName === 'Esc' || keyName === 'Tab' || keyName === 'Shift-Tab') {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
// normalize order of modifiers,
|
2017-07-12 20:44:59 +00:00
|
|
|
// for modifier-only keys ('Ctrl-Shift') a dummy main key has to be temporarily added
|
|
|
|
const keyMap = {};
|
|
|
|
keyMap[keyName.replace(/(Shift|Ctrl|Alt|Cmd)$/, '$&-dummy')] = '';
|
|
|
|
const normalizedKey = Object.keys(CodeMirror.normalizeKeyMap(keyMap))[0];
|
|
|
|
this.value = normalizedKey.replace('-dummy', '');
|
2017-07-12 19:50:13 +00:00
|
|
|
filterTable(event);
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
|
2017-07-12 19:50:13 +00:00
|
|
|
function filterTable(event) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const input = event.target;
|
|
|
|
const col = input.parentNode.cellIndex;
|
|
|
|
inputs[1 - col].value = '';
|
2017-07-16 16:49:31 +00:00
|
|
|
table.tBodies[0].childNodes.forEach(row => {
|
2017-07-19 11:34:31 +00:00
|
|
|
const cell = row.children[col];
|
2017-07-19 16:18:34 +00:00
|
|
|
const text = cell.textContent;
|
|
|
|
const query = stringAsRegExp(input.value, 'gi');
|
|
|
|
const test = query.test(text);
|
|
|
|
row.style.display = input.value && test === false ? 'none' : '';
|
|
|
|
if (input.value && test) {
|
|
|
|
cell.textContent = '';
|
|
|
|
let offset = 0;
|
|
|
|
text.replace(query, (match, index) => {
|
|
|
|
if (index > offset) {
|
|
|
|
cell.appendChild(document.createTextNode(text.substring(offset, index)));
|
|
|
|
}
|
|
|
|
cell.appendChild($element({tag: 'mark', textContent: match}));
|
|
|
|
offset = index + match.length;
|
|
|
|
});
|
|
|
|
if (offset + 1 !== text.length) {
|
|
|
|
cell.appendChild(document.createTextNode(text.substring(offset)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cell.textContent = text;
|
2017-07-19 11:34:31 +00:00
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
// clear highlight from the other column
|
2017-07-19 16:18:34 +00:00
|
|
|
const otherCell = row.children[1 - col];
|
|
|
|
if (otherCell.children.length) {
|
|
|
|
const text = otherCell.textContent;
|
|
|
|
otherCell.textContent = text;
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
function mergeKeyMaps(merged, ...more) {
|
|
|
|
more.forEach(keyMap => {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (typeof keyMap === 'string') {
|
2017-07-12 19:50:13 +00:00
|
|
|
keyMap = CodeMirror.keyMap[keyMap];
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
Object.keys(keyMap).forEach(key => {
|
2017-07-12 20:44:59 +00:00
|
|
|
let cmd = keyMap[key];
|
2017-07-12 19:50:13 +00:00
|
|
|
// filter out '...', 'attach', etc. (hotkeys start with an uppercase letter)
|
2017-07-16 18:02:00 +00:00
|
|
|
if (!merged[key] && !key.match(/^[a-z]/) && cmd !== '...') {
|
|
|
|
if (typeof cmd === 'function') {
|
2017-07-12 19:50:13 +00:00
|
|
|
// for 'emacs' keymap: provide at least something meaningful (hotkeys and the function body)
|
|
|
|
// for 'vim*' keymaps: almost nothing as it doesn't rely on CM keymap mechanism
|
2017-07-12 20:44:59 +00:00
|
|
|
cmd = cmd.toString().replace(/^function.*?\{[\s\r\n]*([\s\S]+?)[\s\r\n]*\}$/, '$1');
|
|
|
|
merged[key] = cmd.length <= 200 ? cmd : cmd.substr(0, 200) + '...';
|
2017-07-12 19:50:13 +00:00
|
|
|
} else {
|
|
|
|
merged[key] = cmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (keyMap.fallthrough) {
|
|
|
|
merged = mergeKeyMaps(merged, keyMap.fallthrough);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return merged;
|
|
|
|
}
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-26 21:37:45 +00:00
|
|
|
function showRegExpTester(event, section = getSectionForChild(this)) {
|
2017-07-12 19:50:13 +00:00
|
|
|
const GET_FAVICON_URL = 'https://www.google.com/s2/favicons?domain=';
|
|
|
|
const OWN_ICON = chrome.runtime.getManifest().icons['16'];
|
|
|
|
const cachedRegexps = showRegExpTester.cachedRegexps =
|
|
|
|
showRegExpTester.cachedRegexps || new Map();
|
2017-08-21 00:05:08 +00:00
|
|
|
const regexps = [...$('.applies-to-list', section).children]
|
2017-07-12 19:50:13 +00:00
|
|
|
.map(item =>
|
|
|
|
!item.matches('.applies-to-everything') &&
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.applies-type', item).value === 'regexp' &&
|
|
|
|
$('.applies-value', item).value.trim()
|
|
|
|
)
|
2017-07-12 19:50:13 +00:00
|
|
|
.filter(item => item)
|
|
|
|
.map(text => {
|
|
|
|
const rxData = Object.assign({text}, cachedRegexps.get(text));
|
|
|
|
if (!rxData.urls) {
|
|
|
|
cachedRegexps.set(text, Object.assign(rxData, {
|
2017-08-30 14:50:32 +00:00
|
|
|
// imitate buggy Stylish-for-chrome, see detectSloppyRegexps()
|
|
|
|
rx: tryRegExp('^' + text + '$'),
|
2017-07-12 19:50:13 +00:00
|
|
|
urls: new Map(),
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
return rxData;
|
|
|
|
});
|
|
|
|
chrome.tabs.onUpdated.addListener(function _(tabId, info) {
|
2017-08-21 00:05:08 +00:00
|
|
|
if ($('.regexp-report')) {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (info.url) {
|
|
|
|
showRegExpTester(event, section);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
chrome.tabs.onUpdated.removeListener(_);
|
|
|
|
}
|
|
|
|
});
|
2017-08-30 18:19:53 +00:00
|
|
|
const getMatchInfo = m => m && {text: m[0], pos: m.index};
|
|
|
|
|
2017-07-12 19:50:13 +00:00
|
|
|
queryTabs().then(tabs => {
|
|
|
|
const supported = tabs.map(tab => tab.url)
|
2017-08-16 17:40:24 +00:00
|
|
|
.filter(url => URLS.supported(url));
|
2017-07-12 19:50:13 +00:00
|
|
|
const unique = [...new Set(supported).values()];
|
|
|
|
for (const rxData of regexps) {
|
|
|
|
const {rx, urls} = rxData;
|
|
|
|
if (rx) {
|
|
|
|
const urlsNow = new Map();
|
|
|
|
for (const url of unique) {
|
2017-08-30 18:19:53 +00:00
|
|
|
const match = urls.get(url) || getMatchInfo(url.match(rx));
|
2017-07-12 19:50:13 +00:00
|
|
|
if (match) {
|
|
|
|
urlsNow.set(url, match);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rxData.urls = urlsNow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const stats = {
|
|
|
|
full: {data: [], label: t('styleRegexpTestFull')},
|
2017-07-19 12:09:29 +00:00
|
|
|
partial: {data: [], label: [
|
|
|
|
t('styleRegexpTestPartial'),
|
|
|
|
template.regexpTestPartial.cloneNode(true),
|
|
|
|
]},
|
2017-07-12 19:50:13 +00:00
|
|
|
none: {data: [], label: t('styleRegexpTestNone')},
|
|
|
|
invalid: {data: [], label: t('styleRegexpTestInvalid')},
|
|
|
|
};
|
2017-07-19 12:09:29 +00:00
|
|
|
// collect stats
|
2017-07-12 19:50:13 +00:00
|
|
|
for (const {text, rx, urls} of regexps) {
|
|
|
|
if (!rx) {
|
|
|
|
stats.invalid.data.push({text});
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!urls.size) {
|
|
|
|
stats.none.data.push({text});
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const full = [];
|
|
|
|
const partial = [];
|
|
|
|
for (const [url, match] of urls.entries()) {
|
|
|
|
const faviconUrl = url.startsWith(URLS.ownOrigin)
|
|
|
|
? OWN_ICON
|
|
|
|
: GET_FAVICON_URL + new URL(url).hostname;
|
2017-07-19 12:09:29 +00:00
|
|
|
const icon = $element({tag: 'img', src: faviconUrl});
|
2017-08-30 18:19:53 +00:00
|
|
|
if (match.text.length === url.length) {
|
2017-07-19 12:09:29 +00:00
|
|
|
full.push($element({appendChild: [
|
|
|
|
icon,
|
|
|
|
url,
|
|
|
|
]}));
|
2017-07-12 19:50:13 +00:00
|
|
|
} else {
|
2017-07-19 12:09:29 +00:00
|
|
|
partial.push($element({appendChild: [
|
|
|
|
icon,
|
2017-08-30 18:19:53 +00:00
|
|
|
url.substr(0, match.pos),
|
|
|
|
$element({tag: 'mark', textContent: match.text}),
|
|
|
|
url.substr(match.pos + match.text.length),
|
2017-07-19 12:09:29 +00:00
|
|
|
]}));
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (full.length) {
|
|
|
|
stats.full.data.push({text, urls: full});
|
|
|
|
}
|
|
|
|
if (partial.length) {
|
|
|
|
stats.partial.data.push({text, urls: partial});
|
|
|
|
}
|
|
|
|
}
|
2017-07-19 12:09:29 +00:00
|
|
|
// render stats
|
|
|
|
const report = $element({className: 'regexp-report'});
|
|
|
|
const br = $element({tag: 'br'});
|
|
|
|
for (const type in stats) {
|
|
|
|
// top level groups: full, partial, none, invalid
|
|
|
|
const {label, data} = stats[type];
|
|
|
|
if (!data.length) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-20 09:16:36 +00:00
|
|
|
const block = report.appendChild($element({
|
2017-07-19 12:09:29 +00:00
|
|
|
tag: 'details',
|
|
|
|
open: true,
|
|
|
|
dataset: {type},
|
2017-07-20 09:16:36 +00:00
|
|
|
appendChild: $element({tag: 'summary', appendChild: label}),
|
2017-07-19 12:09:29 +00:00
|
|
|
}));
|
2017-07-20 09:16:36 +00:00
|
|
|
// 2nd level: regexp text
|
|
|
|
for (const {text, urls} of data) {
|
|
|
|
if (urls) {
|
|
|
|
// type is partial or full
|
|
|
|
block.appendChild($element({
|
|
|
|
tag: 'details',
|
|
|
|
open: true,
|
|
|
|
appendChild: [
|
|
|
|
$element({tag: 'summary', textContent: text}),
|
|
|
|
// 3rd level: tab urls
|
|
|
|
...urls,
|
|
|
|
],
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
// type is none or invalid
|
|
|
|
block.appendChild(document.createTextNode(text));
|
|
|
|
block.appendChild(br.cloneNode());
|
|
|
|
}
|
|
|
|
}
|
2017-07-19 12:09:29 +00:00
|
|
|
}
|
|
|
|
showHelp(t('styleRegexpTestTitle'), report);
|
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.regexp-report').onclick = event => {
|
2017-07-12 19:50:13 +00:00
|
|
|
const target = event.target.closest('a, .regexp-report div');
|
|
|
|
if (target) {
|
|
|
|
openURL({url: target.href || target.textContent});
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
2017-03-26 21:37:45 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 10:06:02 +00:00
|
|
|
function showHelp(title, body) {
|
2017-07-19 12:09:29 +00:00
|
|
|
const div = $('#help-popup');
|
2017-07-12 20:44:59 +00:00
|
|
|
div.classList.remove('big');
|
2017-07-19 12:47:55 +00:00
|
|
|
$('.contents', div).textContent = '';
|
2017-07-19 11:34:31 +00:00
|
|
|
$('.contents', div).appendChild(typeof body === 'string' ? tHTML(body) : body);
|
2017-07-19 12:09:29 +00:00
|
|
|
$('.title', div).textContent = title;
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-07-16 18:02:00 +00:00
|
|
|
if (getComputedStyle(div).display === 'none') {
|
2017-07-12 20:44:59 +00:00
|
|
|
document.addEventListener('keydown', closeHelp);
|
2017-08-20 18:56:18 +00:00
|
|
|
// avoid chaining on multiple showHelp() calls
|
2017-08-21 00:05:08 +00:00
|
|
|
$('.dismiss', div).onclick = closeHelp;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 20:44:59 +00:00
|
|
|
div.style.display = 'block';
|
2017-07-12 19:50:13 +00:00
|
|
|
return div;
|
|
|
|
|
|
|
|
function closeHelp(e) {
|
2017-07-12 20:44:59 +00:00
|
|
|
if (
|
|
|
|
!e ||
|
2017-07-16 18:02:00 +00:00
|
|
|
e.type === 'click' ||
|
|
|
|
((e.keyCode || e.which) === 27 && !e.altKey && !e.ctrlKey && !e.shiftKey && !e.metaKey)
|
2017-07-12 20:44:59 +00:00
|
|
|
) {
|
|
|
|
div.style.display = '';
|
2017-08-20 14:31:25 +00:00
|
|
|
const contents = $('.contents');
|
|
|
|
contents.textContent = '';
|
|
|
|
clearTimeout(contents.timer);
|
2017-07-12 20:44:59 +00:00
|
|
|
document.removeEventListener('keydown', closeHelp);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 17:44:46 +00:00
|
|
|
function showCodeMirrorPopup(title, html, options) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const popup = showHelp(title, html);
|
|
|
|
popup.classList.add('big');
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-08-21 00:05:08 +00:00
|
|
|
popup.codebox = CodeMirror($('.contents', popup), Object.assign({
|
2017-07-12 20:44:59 +00:00
|
|
|
mode: 'css',
|
2017-07-12 19:50:13 +00:00
|
|
|
lineNumbers: true,
|
|
|
|
lineWrapping: true,
|
|
|
|
foldGutter: true,
|
2017-07-12 20:44:59 +00:00
|
|
|
gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter', 'CodeMirror-lint-markers'],
|
2017-07-12 19:50:13 +00:00
|
|
|
matchBrackets: true,
|
2017-08-28 05:22:19 +00:00
|
|
|
lint: linterConfig.getForCodeMirror(),
|
2017-07-12 19:50:13 +00:00
|
|
|
styleActiveLine: true,
|
2017-07-12 20:44:59 +00:00
|
|
|
theme: prefs.get('editor.theme'),
|
|
|
|
keyMap: prefs.get('editor.keyMap')
|
2017-07-12 19:50:13 +00:00
|
|
|
}, options));
|
|
|
|
popup.codebox.focus();
|
2017-07-16 16:49:31 +00:00
|
|
|
popup.codebox.on('focus', () => { hotkeyRerouter.setState(false); });
|
|
|
|
popup.codebox.on('blur', () => { hotkeyRerouter.setState(true); });
|
2017-07-12 19:50:13 +00:00
|
|
|
return popup;
|
2015-07-13 17:44:46 +00:00
|
|
|
}
|
|
|
|
|
2015-01-30 17:28:05 +00:00
|
|
|
function getParams() {
|
2017-07-12 20:44:59 +00:00
|
|
|
const params = {};
|
|
|
|
const urlParts = location.href.split('?', 2);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (urlParts.length === 1) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return params;
|
|
|
|
}
|
2017-07-16 16:49:31 +00:00
|
|
|
urlParts[1].split('&').forEach(keyValue => {
|
2017-07-12 20:44:59 +00:00
|
|
|
const splitKeyValue = keyValue.split('=', 2);
|
2017-07-12 19:50:13 +00:00
|
|
|
params[decodeURIComponent(splitKeyValue[0])] = decodeURIComponent(splitKeyValue[1]);
|
|
|
|
});
|
|
|
|
return params;
|
2015-01-30 17:28:05 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 10:51:40 +00:00
|
|
|
chrome.runtime.onMessage.addListener(onRuntimeMessage);
|
|
|
|
|
|
|
|
function onRuntimeMessage(request) {
|
2017-07-12 19:50:13 +00:00
|
|
|
switch (request.method) {
|
2017-07-12 20:44:59 +00:00
|
|
|
case 'styleUpdated':
|
2017-07-16 18:02:00 +00:00
|
|
|
if (styleId && styleId === request.style.id && request.reason !== 'editSave') {
|
2017-07-12 19:50:13 +00:00
|
|
|
if ((request.style.sections[0] || {}).code === null) {
|
|
|
|
// the code-less style came from notifyAllTabs
|
|
|
|
onBackgroundReady().then(() => {
|
|
|
|
request.style = BG.cachedStyles.byId.get(request.style.id);
|
|
|
|
initWithStyle(request);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
initWithStyle(request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2017-07-12 20:44:59 +00:00
|
|
|
case 'styleDeleted':
|
2017-07-16 18:02:00 +00:00
|
|
|
if (styleId && styleId === request.id) {
|
2017-07-16 16:49:31 +00:00
|
|
|
window.onbeforeunload = () => {};
|
2017-07-12 19:50:13 +00:00
|
|
|
window.close();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2017-07-12 20:44:59 +00:00
|
|
|
case 'prefChanged':
|
2017-07-12 19:50:13 +00:00
|
|
|
if ('editor.smartIndent' in request.prefs) {
|
|
|
|
CodeMirror.setOption('smartIndent', request.prefs['editor.smartIndent']);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'editDeleteText':
|
|
|
|
document.execCommand('delete');
|
|
|
|
break;
|
|
|
|
}
|
2017-04-11 10:51:40 +00:00
|
|
|
}
|
2015-04-23 01:53:30 +00:00
|
|
|
|
2015-05-24 23:03:10 +00:00
|
|
|
function getComputedHeight(el) {
|
2017-07-12 20:44:59 +00:00
|
|
|
const compStyle = getComputedStyle(el);
|
2017-07-12 19:50:13 +00:00
|
|
|
return el.getBoundingClientRect().height +
|
|
|
|
parseFloat(compStyle.marginTop) + parseFloat(compStyle.marginBottom);
|
2015-05-24 23:03:10 +00:00
|
|
|
}
|
2017-04-20 14:00:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
function getCodeMirrorThemes() {
|
2017-07-12 19:50:13 +00:00
|
|
|
if (!chrome.runtime.getPackageDirectoryEntry) {
|
|
|
|
const themes = [
|
|
|
|
chrome.i18n.getMessage('defaultTheme'),
|
|
|
|
'3024-day',
|
|
|
|
'3024-night',
|
|
|
|
'abcdef',
|
|
|
|
'ambiance',
|
|
|
|
'ambiance-mobile',
|
|
|
|
'base16-dark',
|
|
|
|
'base16-light',
|
|
|
|
'bespin',
|
|
|
|
'blackboard',
|
|
|
|
'cobalt',
|
|
|
|
'colorforth',
|
|
|
|
'dracula',
|
|
|
|
'duotone-dark',
|
|
|
|
'duotone-light',
|
|
|
|
'eclipse',
|
|
|
|
'elegant',
|
|
|
|
'erlang-dark',
|
|
|
|
'hopscotch',
|
|
|
|
'icecoder',
|
|
|
|
'isotope',
|
|
|
|
'lesser-dark',
|
|
|
|
'liquibyte',
|
|
|
|
'material',
|
|
|
|
'mbo',
|
|
|
|
'mdn-like',
|
|
|
|
'midnight',
|
|
|
|
'monokai',
|
|
|
|
'neat',
|
|
|
|
'neo',
|
|
|
|
'night',
|
|
|
|
'panda-syntax',
|
|
|
|
'paraiso-dark',
|
|
|
|
'paraiso-light',
|
|
|
|
'pastel-on-dark',
|
|
|
|
'railscasts',
|
|
|
|
'rubyblue',
|
|
|
|
'seti',
|
|
|
|
'solarized',
|
|
|
|
'the-matrix',
|
|
|
|
'tomorrow-night-bright',
|
|
|
|
'tomorrow-night-eighties',
|
|
|
|
'ttcn',
|
|
|
|
'twilight',
|
|
|
|
'vibrant-ink',
|
|
|
|
'xq-dark',
|
|
|
|
'xq-light',
|
|
|
|
'yeti',
|
|
|
|
'zenburn',
|
|
|
|
];
|
|
|
|
localStorage.codeMirrorThemes = themes.join(' ');
|
|
|
|
return Promise.resolve(themes);
|
|
|
|
}
|
|
|
|
return new Promise(resolve => {
|
|
|
|
chrome.runtime.getPackageDirectoryEntry(rootDir => {
|
|
|
|
rootDir.getDirectory('vendor/codemirror/theme', {create: false}, themeDir => {
|
|
|
|
themeDir.createReader().readEntries(entries => {
|
|
|
|
const themes = [
|
|
|
|
chrome.i18n.getMessage('defaultTheme')
|
|
|
|
].concat(
|
|
|
|
entries.filter(entry => entry.isFile)
|
|
|
|
.sort((a, b) => (a.name < b.name ? -1 : 1))
|
|
|
|
.map(entry => entry.name.replace(/\.css$/, ''))
|
|
|
|
);
|
|
|
|
localStorage.codeMirrorThemes = themes.join(' ');
|
|
|
|
resolve(themes);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-04-20 14:00:43 +00:00
|
|
|
}
|
2017-08-31 21:52:38 +00:00
|
|
|
|
|
|
|
function setGlobalProgress(done, total) {
|
|
|
|
const progressElement = $('#global-progress') ||
|
|
|
|
total && document.body.appendChild($element({id: 'global-progress'}));
|
|
|
|
if (total) {
|
|
|
|
const progress = (done / Math.max(done, total) * 100).toFixed(1);
|
|
|
|
progressElement.style.borderLeftWidth = progress + 'vw';
|
|
|
|
setTimeout(() => {
|
|
|
|
progressElement.title = progress + '%';
|
|
|
|
});
|
|
|
|
} else if (progressElement) {
|
|
|
|
progressElement.remove();
|
|
|
|
}
|
|
|
|
}
|