2017-12-02 20:41:15 +00:00
|
|
|
/*
|
|
|
|
global CodeMirror parserlib loadScript
|
|
|
|
global CSSLint initLint linterConfig updateLintReport renderLintReport updateLinter
|
|
|
|
global mozParser createSourceEditor
|
|
|
|
global closeCurrentTab regExpTester messageBox
|
|
|
|
global setupCodeMirror
|
|
|
|
global beautify
|
|
|
|
global initWithSectionStyle addSections removeSection getSectionsHashes
|
|
|
|
*/
|
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;
|
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-12-02 20:41:15 +00:00
|
|
|
window.onbeforeunload = beforeUnload;
|
|
|
|
chrome.runtime.onMessage.addListener(onRuntimeMessage);
|
|
|
|
|
2017-12-07 17:26:41 +00:00
|
|
|
preinit();
|
|
|
|
|
2017-11-26 13:04:03 +00:00
|
|
|
Promise.all([
|
2017-12-07 17:26:41 +00:00
|
|
|
initStyleData(),
|
2017-11-26 13:04:03 +00:00
|
|
|
onDOMready(),
|
|
|
|
])
|
2017-12-08 02:45:27 +00:00
|
|
|
.then(([style]) => {
|
|
|
|
const usercss = isUsercss(style);
|
|
|
|
$('#heading').textContent = t(styleId ? 'editStyleHeading' : 'addStyleTitle');
|
|
|
|
$('#name').placeholder = t(usercss ? 'usercssEditorNamePlaceholder' : 'styleMissingName');
|
|
|
|
$('#name').title = usercss ? t('usercssReplaceTemplateName') : '';
|
|
|
|
|
|
|
|
$('#beautify').onclick = beautify;
|
|
|
|
$('#lint').addEventListener('scroll', hideLintHeaderOnScroll, {passive: true});
|
|
|
|
window.addEventListener('resize', () => debounce(rememberWindowSize, 100));
|
|
|
|
|
|
|
|
if (usercss) {
|
|
|
|
editor = createSourceEditor(style);
|
|
|
|
} else {
|
|
|
|
initWithSectionStyle({style});
|
|
|
|
document.addEventListener('wheel', scrollEntirePageOnCtrlShift);
|
|
|
|
}
|
|
|
|
});
|
2015-03-21 13:24:45 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function preinit() {
|
|
|
|
// make querySelectorAll enumeration code readable
|
|
|
|
['forEach', 'some', 'indexOf', 'map'].forEach(method => {
|
|
|
|
NodeList.prototype[method] = Array.prototype[method];
|
|
|
|
});
|
2017-04-17 18:06:00 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
// eslint-disable-next-line no-extend-native
|
|
|
|
Object.defineProperties(Array.prototype, {
|
|
|
|
last: {
|
|
|
|
get() {
|
|
|
|
return this[this.length - 1];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
rotate: {
|
|
|
|
value: function (amount) {
|
|
|
|
// negative amount == rotate left
|
|
|
|
const r = this.slice(-amount, this.length);
|
|
|
|
Array.prototype.push.apply(r, this.slice(0, this.length - r.length));
|
|
|
|
return r;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2017-04-20 14:00:43 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
// preload the theme so that CodeMirror can calculate its metrics in DOMContentLoaded->setupLivePrefs()
|
2017-12-09 16:05:44 +00:00
|
|
|
new MutationObserver((mutations, observer) => {
|
|
|
|
const themeElement = $('#cm-theme');
|
|
|
|
if (themeElement) {
|
|
|
|
themeElement.href = prefs.get('editor.theme') === 'default' ? ''
|
|
|
|
: 'vendor/codemirror/theme/' + prefs.get('editor.theme') + '.css';
|
|
|
|
observer.disconnect();
|
|
|
|
}
|
|
|
|
}).observe(document, {subtree: true, childList: true});
|
2017-12-02 20:41:15 +00:00
|
|
|
|
|
|
|
if (chrome.windows) {
|
|
|
|
queryTabs({currentWindow: true}).then(tabs => {
|
|
|
|
const windowId = tabs[0].windowId;
|
|
|
|
if (prefs.get('openEditInWindow')) {
|
|
|
|
if (
|
|
|
|
/true/.test(sessionStorage.saveSizeOnClose) &&
|
|
|
|
'left' in prefs.get('windowPosition', {}) &&
|
|
|
|
!isWindowMaximized()
|
|
|
|
) {
|
|
|
|
// window was reopened via Ctrl-Shift-T etc.
|
|
|
|
chrome.windows.update(windowId, prefs.get('windowPosition'));
|
|
|
|
}
|
|
|
|
if (tabs.length === 1 && window.history.length === 1) {
|
|
|
|
chrome.windows.getAll(windows => {
|
|
|
|
if (windows.length > 1) {
|
|
|
|
sessionStorageHash('saveSizeOnClose').set(windowId, true);
|
|
|
|
saveSizeOnClose = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
saveSizeOnClose = sessionStorageHash('saveSizeOnClose').value[windowId];
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
});
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
getOwnTab().then(tab => {
|
|
|
|
const ownTabId = tab.id;
|
2017-12-08 02:45:27 +00:00
|
|
|
|
|
|
|
// use browser history back when 'back to manage' is clicked
|
|
|
|
if (sessionStorageHash('manageStylesHistory').value[ownTabId] === location.href) {
|
|
|
|
onDOMready().then(() => {
|
|
|
|
$('#cancel-button').onclick = event => {
|
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
history.back();
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// no windows on android
|
2017-12-02 20:41:15 +00:00
|
|
|
if (!chrome.windows) {
|
2017-09-12 19:45:33 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
// When an edit page gets attached or detached, remember its state
|
|
|
|
// so we can do the same to the next one to open.
|
|
|
|
chrome.tabs.onAttached.addListener((tabId, info) => {
|
|
|
|
if (tabId !== ownTabId) {
|
2017-09-12 19:45:33 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
if (info.newPosition !== 0) {
|
|
|
|
prefs.set('openEditInWindow', false);
|
|
|
|
return;
|
2017-09-12 19:45:33 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
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'));
|
2017-09-12 19:45:33 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
prefs.set('openEditInWindow', openEditInWindow);
|
|
|
|
});
|
2017-09-12 19:45:33 +00:00
|
|
|
});
|
2017-12-02 20:41:15 +00:00
|
|
|
});
|
2015-03-08 06:21:43 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function onRuntimeMessage(request) {
|
|
|
|
switch (request.method) {
|
|
|
|
case 'styleUpdated':
|
|
|
|
if (styleId && styleId === request.style.id &&
|
|
|
|
request.reason !== 'editSave' &&
|
|
|
|
request.reason !== 'config') {
|
|
|
|
// code-less style from notifyAllTabs
|
|
|
|
if ((request.style.sections[0] || {}).code === null) {
|
|
|
|
request.style = BG.cachedStyles.byId.get(request.style.id);
|
|
|
|
}
|
|
|
|
if (isUsercss(request.style)) {
|
|
|
|
editor.replaceStyle(request.style, request.codeIsUpdated);
|
|
|
|
} else {
|
|
|
|
initWithSectionStyle(request);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
break;
|
|
|
|
case 'styleDeleted':
|
|
|
|
if (styleId === request.id || editor && editor.getStyle().id === request.id) {
|
|
|
|
window.onbeforeunload = () => {};
|
|
|
|
closeCurrentTab();
|
2017-07-12 19:50:13 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-08-15 19:13:58 +00:00
|
|
|
break;
|
2017-12-02 20:41:15 +00:00
|
|
|
case 'prefChanged':
|
|
|
|
if ('editor.smartIndent' in request.prefs) {
|
|
|
|
CodeMirror.setOption('smartIndent', request.prefs['editor.smartIndent']);
|
2017-08-27 14:36:20 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
break;
|
|
|
|
case 'editDeleteText':
|
|
|
|
document.execCommand('delete');
|
|
|
|
break;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-27 11:56:04 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function beforeUnload() {
|
2017-08-27 11:56:04 +00:00
|
|
|
if (saveSizeOnClose) {
|
|
|
|
rememberWindowSize();
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
document.activeElement.blur();
|
2017-10-08 16:43:00 +00:00
|
|
|
if (isClean()) {
|
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');
|
2015-03-03 00:58:04 +00:00
|
|
|
|
2017-11-09 04:47:37 +00:00
|
|
|
function isClean() {
|
|
|
|
if (editor) {
|
|
|
|
return !editor.isDirty();
|
|
|
|
} else {
|
|
|
|
return isCleanGlobal();
|
|
|
|
}
|
2017-10-08 16:43:00 +00:00
|
|
|
}
|
2015-10-29 18:20:05 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function isUsercss(style) {
|
|
|
|
return (
|
|
|
|
style.usercssData ||
|
|
|
|
!style.id && prefs.get('newStyleAsUsercss')
|
|
|
|
);
|
2015-06-23 16:24:53 +00:00
|
|
|
}
|
|
|
|
|
2017-11-26 13:04:03 +00:00
|
|
|
function initStyleData() {
|
2017-11-28 19:19:00 +00:00
|
|
|
// TODO: remove .replace(/^\?/, '') when minimum_chrome_version >= 52 (https://crbug.com/601425)
|
|
|
|
const params = new URLSearchParams(location.search.replace(/^\?/, ''));
|
2017-11-26 13:04:03 +00:00
|
|
|
const id = params.get('id');
|
|
|
|
const createEmptyStyle = () => ({
|
|
|
|
id: null,
|
|
|
|
name: '',
|
|
|
|
enabled: true,
|
|
|
|
sections: [
|
|
|
|
Object.assign({code: ''},
|
|
|
|
...Object.keys(CssToProperty)
|
|
|
|
.map(name => ({
|
|
|
|
[CssToProperty[name]]: params.get(name) && [params.get(name)] || []
|
|
|
|
}))
|
|
|
|
)
|
|
|
|
],
|
2017-09-12 11:47:32 +00:00
|
|
|
});
|
2017-12-07 17:26:41 +00:00
|
|
|
return getStylesSafe({id: id || -1})
|
|
|
|
.then(([style = createEmptyStyle()]) => {
|
|
|
|
styleId = sessionStorage.justEditedStyleId = style.id;
|
|
|
|
// we set "usercss" class on <html> when <body> is empty
|
|
|
|
// so there'll be no flickering of the elements that depend on it
|
|
|
|
if (isUsercss(style)) {
|
|
|
|
document.documentElement.classList.add('usercss');
|
|
|
|
}
|
|
|
|
// strip URL parameters when invoked for a non-existent id
|
|
|
|
if (!styleId) {
|
|
|
|
history.replaceState({}, document.title, location.pathname);
|
|
|
|
}
|
|
|
|
return style;
|
|
|
|
});
|
2015-01-30 17:05:06 +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);
|
|
|
|
$('#save-button').addEventListener('click', save, false);
|
|
|
|
$('#sections-help').addEventListener('click', showSectionHelp, false);
|
2017-09-03 16:54:25 +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"]',
|
2017-12-02 20:41:15 +00:00
|
|
|
].join(','))
|
|
|
|
.forEach(e => e.addEventListener('mousedown', toggleContextMenuDelete));
|
2017-07-31 16:39:10 +00:00
|
|
|
}
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function onChange(event) {
|
|
|
|
const node = event.target;
|
|
|
|
if ('savedValue' in node) {
|
|
|
|
const currentValue = node.type === 'checkbox' ? node.checked : node.value;
|
|
|
|
setCleanItem(node, node.savedValue === currentValue);
|
|
|
|
} else {
|
|
|
|
// the manually added section's applies-to is dirty only when the value is non-empty
|
|
|
|
setCleanItem(node, node.localName !== 'input' || !node.value.trim());
|
|
|
|
// only valid when actually saved
|
|
|
|
delete node.savedValue;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
updateTitle();
|
2017-03-21 22:29:07 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
// Set .dirty on stylesheet contributors that have changed
|
|
|
|
function setDirtyClass(node, isDirty) {
|
|
|
|
node.classList.toggle('dirty', isDirty);
|
|
|
|
}
|
2017-03-21 22:29:07 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function setCleanItem(node, isClean) {
|
|
|
|
if (!node.id) {
|
|
|
|
node.id = Date.now().toString(32).substr(-6);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
|
|
|
|
if (isClean) {
|
|
|
|
delete dirty[node.id];
|
|
|
|
// code sections have .CodeMirror property
|
|
|
|
if (node.CodeMirror) {
|
|
|
|
node.savedValue = node.CodeMirror.changeGeneration();
|
|
|
|
} else {
|
|
|
|
node.savedValue = node.type === 'checkbox' ? node.checked : node.value;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dirty[node.id] = true;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2015-05-24 23:03:10 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
setDirtyClass(node, !isClean);
|
|
|
|
}
|
2015-03-14 11:51:41 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function isCleanGlobal() {
|
|
|
|
const clean = Object.keys(dirty).length === 0;
|
|
|
|
setDirtyClass(document.body, !clean);
|
|
|
|
return clean;
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function setCleanGlobal() {
|
|
|
|
$$('#header, #sections > div').forEach(setCleanSection);
|
|
|
|
// forget the dirty applies-to ids from a deleted section after the style was saved
|
|
|
|
dirty = {};
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function setCleanSection(section) {
|
|
|
|
$$('.style-contributor', section).forEach(node => setCleanItem(node, true));
|
|
|
|
|
|
|
|
// #header section has no codemirror
|
|
|
|
const cm = section.CodeMirror;
|
|
|
|
if (cm) {
|
|
|
|
section.savedValue = cm.changeGeneration();
|
|
|
|
updateTitle();
|
2017-08-20 14:06:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function toggleStyle() {
|
|
|
|
$('#enabled').checked = !$('#enabled').checked;
|
|
|
|
save();
|
2017-09-11 16:09:25 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function save() {
|
2017-08-20 14:06:17 +00:00
|
|
|
updateLintReportIfEnabled(null, 0);
|
2017-12-02 20:41:15 +00:00
|
|
|
if (!validate()) {
|
2017-07-12 19:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
|
2017-07-12 19:50:13 +00:00
|
|
|
saveStyleSafe({
|
|
|
|
id: styleId,
|
2017-12-03 17:32:50 +00:00
|
|
|
name: $('#name').value.trim(),
|
2017-12-02 20:41:15 +00:00
|
|
|
enabled: $('#enabled').checked,
|
2017-07-12 19:50:13 +00:00
|
|
|
reason: 'editSave',
|
|
|
|
sections: getSectionsHashes()
|
|
|
|
})
|
2017-12-02 20:41:15 +00:00
|
|
|
.then(style => {
|
|
|
|
styleId = style.id;
|
|
|
|
sessionStorage.justEditedStyleId = styleId;
|
|
|
|
setCleanGlobal();
|
|
|
|
// Go from new style URL to edit style URL
|
|
|
|
if (location.href.indexOf('id=') === -1) {
|
|
|
|
history.replaceState({}, document.title, 'edit.html?id=' + style.id);
|
|
|
|
$('#heading').textContent = t('editStyleHeading');
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
updateTitle();
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function validate() {
|
|
|
|
const name = $('#name').value.trim();
|
|
|
|
if (!name) {
|
|
|
|
$('#name').focus();
|
|
|
|
messageBox.alert(t('styleMissingName'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($$('.applies-to-list li:not(.applies-to-everything)')
|
|
|
|
.some(li => {
|
|
|
|
const type = $('[name=applies-type]', li).value;
|
|
|
|
const value = $('[name=applies-value]', li);
|
|
|
|
const rx = value.value.trim();
|
|
|
|
if (type === 'regexp' && rx && !tryRegExp(rx)) {
|
|
|
|
value.focus();
|
|
|
|
value.select();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
})) {
|
|
|
|
messageBox.alert(t('styleBadRegexp'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function updateTitle() {
|
|
|
|
const DIRTY_TITLE = '* $';
|
|
|
|
const name = $('#name').savedValue;
|
|
|
|
const clean = isCleanGlobal();
|
|
|
|
const title = styleId === null ? t('addStyleTitle') : t('editStyleTitle', [name]);
|
|
|
|
document.title = clean ? title : DIRTY_TITLE.replace('$', title);
|
2017-12-12 18:33:41 +00:00
|
|
|
$('#save-button').disabled = clean;
|
2017-12-02 20:41:15 +00:00
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function updateLintReportIfEnabled(...args) {
|
|
|
|
if (CodeMirror.defaults.lint) {
|
|
|
|
updateLintReport(...args);
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
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-11-14 06:36:43 +00:00
|
|
|
const popup = showCodeMirrorPopup(t('styleFromMozillaFormatPrompt'),
|
2017-12-03 21:12:09 +00:00
|
|
|
$create([
|
|
|
|
$create('button', {
|
2017-11-14 06:36:43 +00:00
|
|
|
name: 'import-append',
|
|
|
|
textContent: t('importAppendLabel'),
|
2017-11-28 17:05:26 +00:00
|
|
|
title: 'Ctrl-Enter:\n' + t('importAppendTooltip'),
|
2017-11-14 06:36:43 +00:00
|
|
|
onclick: doImport,
|
|
|
|
}),
|
2017-12-03 21:12:09 +00:00
|
|
|
$create('button', {
|
2017-11-14 06:36:43 +00:00
|
|
|
name: 'import-replace',
|
|
|
|
textContent: t('importReplaceLabel'),
|
2017-11-28 17:05:26 +00:00
|
|
|
title: 'Ctrl-Shift-Enter:\n' + t('importReplaceTooltip'),
|
2017-11-15 01:23:16 +00:00
|
|
|
onclick: () => doImport({replaceOldStyle: true}),
|
2017-11-14 06:36:43 +00:00
|
|
|
}),
|
2017-12-03 21:12:09 +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-11-15 01:23:16 +00:00
|
|
|
popup.codebox.on('changes', cm => {
|
|
|
|
popup.classList.toggle('ready', !cm.isBlank());
|
2017-11-28 17:03:50 +00:00
|
|
|
cm.markClean();
|
2017-07-12 19:50:13 +00:00
|
|
|
});
|
2017-11-15 01:23:16 +00:00
|
|
|
// overwrite default extraKeys as those are inapplicable in popup context
|
|
|
|
popup.codebox.options.extraKeys = {
|
|
|
|
'Ctrl-Enter': doImport,
|
|
|
|
'Shift-Ctrl-Enter': () => doImport({replaceOldStyle: true}),
|
|
|
|
};
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-11-15 01:23:16 +00:00
|
|
|
function doImport({replaceOldStyle = false}) {
|
|
|
|
lockPageUI(true);
|
|
|
|
new Promise(setTimeout)
|
|
|
|
.then(() => mozParser.parse(popup.codebox.getValue().trim()))
|
|
|
|
.then(sections => {
|
|
|
|
removeOldSections(replaceOldStyle);
|
|
|
|
return addSections(sections, div => setCleanItem(div, false));
|
|
|
|
})
|
|
|
|
.then(sectionDivs => {
|
|
|
|
sectionDivs.forEach(div => updateLintReportIfEnabled(div.CodeMirror, 1));
|
2017-12-09 16:05:00 +00:00
|
|
|
$('.dismiss').dispatchEvent(new Event('click'));
|
2017-09-12 15:19:16 +00:00
|
|
|
})
|
2017-11-15 01:23:16 +00:00
|
|
|
.catch(showError)
|
|
|
|
.then(() => lockPageUI(false));
|
|
|
|
}
|
2017-09-12 15:19:16 +00:00
|
|
|
|
2017-11-15 01:23:16 +00:00
|
|
|
function removeOldSections(removeAll) {
|
|
|
|
let toRemove;
|
|
|
|
if (removeAll) {
|
|
|
|
toRemove = editors.slice().reverse();
|
|
|
|
} else if (editors.last.isBlank() && $('.applies-to-everything', editors.last.getSection())) {
|
|
|
|
toRemove = [editors.last];
|
|
|
|
} else {
|
|
|
|
return;
|
2017-09-12 15:19:16 +00:00
|
|
|
}
|
2017-11-15 01:23:16 +00:00
|
|
|
toRemove.forEach(cm => removeSection({target: cm.getSection()}));
|
|
|
|
}
|
2017-09-12 15:19:16 +00:00
|
|
|
|
2017-11-15 01:23:16 +00:00
|
|
|
function lockPageUI(locked) {
|
|
|
|
document.documentElement.style.pointerEvents = locked ? 'none' : '';
|
2017-12-09 16:05:00 +00:00
|
|
|
if (popup.codebox) {
|
|
|
|
popup.classList.toggle('ready', locked ? false : !popup.codebox.isBlank());
|
|
|
|
popup.codebox.options.readOnly = locked;
|
|
|
|
popup.codebox.display.wrapper.style.opacity = locked ? '.5' : '';
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-09-12 15:19:16 +00:00
|
|
|
|
2017-11-15 01:23:16 +00:00
|
|
|
function showError(errors) {
|
2017-12-09 16:04:19 +00:00
|
|
|
messageBox({
|
|
|
|
className: 'center danger',
|
|
|
|
title: t('styleFromMozillaFormatError'),
|
|
|
|
contents: $create('pre', Array.isArray(errors) ? errors.join('\n') : errors),
|
|
|
|
buttons: [t('confirmClose')],
|
|
|
|
});
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2015-07-13 17:44:46 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 18:33:41 +00:00
|
|
|
function showSectionHelp(event) {
|
|
|
|
event.preventDefault();
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('styleSectionsTitle'), t('sectionHelp'));
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 18:33:41 +00:00
|
|
|
function showAppliesToHelp(event) {
|
|
|
|
event.preventDefault();
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('appliesLabel'), t('appliesHelp'));
|
2015-01-30 17:05:06 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 18:33:41 +00:00
|
|
|
function showToMozillaHelp(event) {
|
|
|
|
event.preventDefault();
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('styleMozillaFormatHeading'), t('styleToMozillaFormatHelp'));
|
2015-04-26 12:34:59 +00:00
|
|
|
}
|
|
|
|
|
2017-12-09 15:25:44 +00:00
|
|
|
function showToggleStyleHelp(event) {
|
|
|
|
event.preventDefault();
|
2017-07-12 20:44:59 +00:00
|
|
|
showHelp(t('helpAlt'), t('styleEnabledToggleHint'));
|
2017-06-06 07:56:49 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 17:03:50 +00:00
|
|
|
function showHelp(title = '', body) {
|
2017-07-19 12:09:29 +00:00
|
|
|
const div = $('#help-popup');
|
2017-12-04 16:14:04 +00:00
|
|
|
div.className = '';
|
2017-12-13 04:33:16 +00:00
|
|
|
|
2017-11-28 17:03:50 +00:00
|
|
|
const contents = $('.contents', div);
|
|
|
|
contents.textContent = '';
|
|
|
|
if (body) {
|
|
|
|
contents.appendChild(typeof body === 'string' ? tHTML(body) : body);
|
|
|
|
}
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-12-13 04:33:16 +00:00
|
|
|
$('.title', div).textContent = title;
|
2017-07-12 19:50:13 +00:00
|
|
|
|
2017-12-13 04:33:16 +00:00
|
|
|
showHelp.close = showHelp.close || (event => {
|
2017-12-02 21:22:03 +00:00
|
|
|
const canClose =
|
|
|
|
!event ||
|
|
|
|
event.type === 'click' ||
|
|
|
|
(
|
|
|
|
event.which === 27 &&
|
|
|
|
!event.altKey && !event.ctrlKey && !event.shiftKey && !event.metaKey &&
|
|
|
|
!$('.CodeMirror-hints, #message-box') &&
|
|
|
|
(
|
|
|
|
!document.activeElement ||
|
|
|
|
document.activeElement.matches(':not(input), .can-close-on-esc')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (!canClose) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (event && div.codebox && !div.codebox.options.readOnly && !div.codebox.isClean()) {
|
2017-12-13 04:33:16 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
messageBox.confirm(t('confirmDiscardChanges'))
|
|
|
|
.then(ok => ok && showHelp.close());
|
|
|
|
});
|
2017-12-02 21:22:03 +00:00
|
|
|
return;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-13 04:33:16 +00:00
|
|
|
if (div.contains(document.activeElement) && showHelp.originalFocus) {
|
|
|
|
showHelp.originalFocus.focus();
|
|
|
|
}
|
2017-12-02 21:22:03 +00:00
|
|
|
div.style.display = '';
|
|
|
|
contents.textContent = '';
|
|
|
|
clearTimeout(contents.timer);
|
2017-12-13 04:33:16 +00:00
|
|
|
window.removeEventListener('keydown', showHelp.close, true);
|
2017-12-02 21:22:03 +00:00
|
|
|
window.dispatchEvent(new Event('closeHelp'));
|
2017-12-13 04:33:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (getComputedStyle(div).display === 'none') {
|
|
|
|
window.addEventListener('keydown', showHelp.close, true);
|
|
|
|
$('.dismiss', div).onclick = showHelp.close;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-13 04:33:16 +00:00
|
|
|
|
|
|
|
// reset any inline styles
|
|
|
|
div.style = 'display: block';
|
|
|
|
|
|
|
|
showHelp.originalFocus = document.activeElement;
|
|
|
|
return div;
|
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-12-09 15:23:18 +00:00
|
|
|
let cm = 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));
|
2017-12-02 20:41:15 +00:00
|
|
|
cm.focus();
|
2017-12-10 08:24:52 +00:00
|
|
|
const rerouteOn = () => cm.rerouteHotkeys(false);
|
|
|
|
const rerouteOff = () => cm.rerouteHotkeys(true);
|
|
|
|
cm.on('focus', rerouteOn);
|
|
|
|
cm.on('blur', rerouteOff);
|
2017-12-09 15:23:18 +00:00
|
|
|
window.addEventListener('closeHelp', function _() {
|
|
|
|
window.removeEventListener('closeHelp', _);
|
2017-12-10 08:24:52 +00:00
|
|
|
cm.off('focus', rerouteOn);
|
|
|
|
cm.off('blur', rerouteOff);
|
2017-12-09 15:23:18 +00:00
|
|
|
cm = popup.codebox = null;
|
|
|
|
});
|
2017-07-12 19:50:13 +00:00
|
|
|
return popup;
|
2015-07-13 17:44:46 +00:00
|
|
|
}
|
|
|
|
|
2017-08-31 21:52:38 +00:00
|
|
|
function setGlobalProgress(done, total) {
|
|
|
|
const progressElement = $('#global-progress') ||
|
2017-12-03 21:12:09 +00:00
|
|
|
total && document.body.appendChild($create('#global-progress'));
|
2017-08-31 21:52:38 +00:00
|
|
|
if (total) {
|
|
|
|
const progress = (done / Math.max(done, total) * 100).toFixed(1);
|
|
|
|
progressElement.style.borderLeftWidth = progress + 'vw';
|
|
|
|
setTimeout(() => {
|
|
|
|
progressElement.title = progress + '%';
|
|
|
|
});
|
2017-12-02 16:54:54 +00:00
|
|
|
} else {
|
|
|
|
$.remove(progressElement);
|
2017-08-31 21:52:38 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
|
|
|
|
function scrollEntirePageOnCtrlShift(event) {
|
|
|
|
// make Shift-Ctrl-Wheel scroll entire page even when mouse is over a code editor
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hideLintHeaderOnScroll() {
|
|
|
|
// workaround part2 for the <details> not showing its toggle icon: hide <summary> on scroll
|
|
|
|
const newOpacity = this.scrollTop === 0 ? '' : '0';
|
|
|
|
const style = this.firstElementChild.style;
|
|
|
|
if (style.opacity !== newOpacity) {
|
|
|
|
style.opacity = newOpacity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function rememberWindowSize() {
|
|
|
|
if (
|
|
|
|
document.visibilityState === 'visible' &&
|
|
|
|
prefs.get('openEditInWindow') &&
|
|
|
|
!isWindowMaximized()
|
|
|
|
) {
|
|
|
|
prefs.set('windowPosition', {
|
|
|
|
left: window.screenX,
|
|
|
|
top: window.screenY,
|
|
|
|
width: window.outerWidth,
|
|
|
|
height: window.outerHeight,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function isWindowMaximized() {
|
|
|
|
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
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleContextMenuDelete(event) {
|
|
|
|
if (chrome.contextMenus && event.button === 2 && prefs.get('editor.contextDelete')) {
|
|
|
|
chrome.contextMenus.update('editor.contextDelete', {
|
|
|
|
enabled: Boolean(
|
|
|
|
this.selectionStart !== this.selectionEnd ||
|
|
|
|
this.somethingSelected && this.somethingSelected()
|
|
|
|
),
|
|
|
|
}, ignoreChromeError);
|
|
|
|
}
|
|
|
|
}
|