2017-09-11 16:09:25 +00:00
|
|
|
/* global CodeMirror dirtyReporter initLint beautify showKeyMapHelp */
|
|
|
|
/* global showToggleStyleHelp goBackToManage updateLintReportIfEnabled */
|
2017-10-04 08:47:56 +00:00
|
|
|
/* global hotkeyRerouter setupAutocomplete setupOptionsExpand */
|
2017-10-08 14:03:27 +00:00
|
|
|
/* global editors linterConfig updateLinter regExpTester */
|
2017-09-11 16:09:25 +00:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
function createSourceEditor(style) {
|
2017-09-14 01:09:40 +00:00
|
|
|
// style might be an object reference to background page
|
|
|
|
style = deepCopy(style);
|
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
// draw HTML
|
|
|
|
$('#sections').innerHTML = '';
|
|
|
|
$('#name').disabled = true;
|
|
|
|
$('#mozilla-format-heading').parentNode.remove();
|
|
|
|
|
2017-09-12 12:06:00 +00:00
|
|
|
$('#sections').appendChild(
|
|
|
|
$element({className: 'single-editor', appendChild: [
|
|
|
|
$element({tag: 'textarea'})
|
|
|
|
]})
|
|
|
|
);
|
2017-09-11 16:09:25 +00:00
|
|
|
|
2017-10-04 08:47:56 +00:00
|
|
|
setupOptionsExpand();
|
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
// draw CodeMirror
|
2017-09-16 01:24:50 +00:00
|
|
|
$('#sections textarea').value = style.sourceCode;
|
2017-09-11 16:09:25 +00:00
|
|
|
const cm = CodeMirror.fromTextArea($('#sections textarea'));
|
2017-09-11 19:44:19 +00:00
|
|
|
// too many functions depend on this global
|
|
|
|
editors.push(cm);
|
2017-09-11 16:09:25 +00:00
|
|
|
|
|
|
|
// dirty reporter
|
|
|
|
const dirty = dirtyReporter();
|
|
|
|
dirty.onChange(() => {
|
|
|
|
const DIRTY = dirty.isDirty();
|
|
|
|
document.body.classList.toggle('dirty', DIRTY);
|
|
|
|
$('#save-button').disabled = !DIRTY;
|
2017-09-13 09:33:32 +00:00
|
|
|
updateTitle();
|
2017-09-11 16:09:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// draw metas info
|
|
|
|
updateMetas();
|
|
|
|
initHooks();
|
2017-09-13 08:58:03 +00:00
|
|
|
initAppliesToReport(cm);
|
|
|
|
|
2017-10-07 10:00:25 +00:00
|
|
|
// setup linter
|
|
|
|
initLint();
|
|
|
|
const linterEl = $('#editor.linter');
|
|
|
|
cm.on('optionChange', (cm, option) => {
|
|
|
|
if (option === 'mode' || option === 'lint') {
|
|
|
|
const lint = cm.getOption('lint');
|
|
|
|
const mode = cm.getOption('mode');
|
|
|
|
|
|
|
|
if (mode !== 'css' && linterConfig.getName(lint) === 'csslint') {
|
|
|
|
updateLinter({linter: 'stylelint'});
|
|
|
|
linterEl.value = 'stylelint';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
linterEl.addEventListener('change', () => {
|
|
|
|
if (cm.getOption('mode') !== 'css' && linterEl.value === 'csslint') {
|
|
|
|
setTimeout(() => {
|
|
|
|
linterEl.value = 'stylelint';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-09-13 08:58:03 +00:00
|
|
|
function initAppliesToReport(cm) {
|
2017-09-15 09:13:58 +00:00
|
|
|
const APPLIES_TYPE = [
|
|
|
|
[t('appliesUrlOption'), 'url'],
|
|
|
|
[t('appliesUrlPrefixOption'), 'url-prefix'],
|
|
|
|
[t('appliesDomainOption'), 'domain'],
|
|
|
|
[t('appliesRegexpOption'), 'regexp']
|
|
|
|
];
|
|
|
|
const THROTTLE_DELAY = 400;
|
|
|
|
let widgets = [];
|
|
|
|
let timer;
|
|
|
|
let fromLine;
|
|
|
|
let toLine;
|
|
|
|
let style;
|
|
|
|
let isInit;
|
2017-09-14 01:58:22 +00:00
|
|
|
const optionEl = buildOption();
|
2017-09-13 08:58:03 +00:00
|
|
|
|
2017-09-14 01:58:22 +00:00
|
|
|
$('#options').insertBefore(optionEl, $('#options > .option.aligned'));
|
2017-09-13 08:58:03 +00:00
|
|
|
|
2017-09-14 01:58:22 +00:00
|
|
|
if (prefs.get('editor.appliesToLineWidget')) {
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
prefs.subscribe(['editor.appliesToLineWidget'], (key, value) => {
|
|
|
|
if (!isInit && value) {
|
|
|
|
init();
|
|
|
|
} else if (isInit && !value) {
|
|
|
|
uninit();
|
|
|
|
}
|
|
|
|
optionEl.checked = value;
|
|
|
|
});
|
|
|
|
|
|
|
|
optionEl.addEventListener('change', e => {
|
|
|
|
prefs.set('editor.appliesToLineWidget', e.target.checked);
|
|
|
|
});
|
|
|
|
|
|
|
|
function buildOption() {
|
|
|
|
return $element({className: 'option', appendChild: [
|
|
|
|
$element({
|
|
|
|
tag: 'input',
|
|
|
|
type: 'checkbox',
|
|
|
|
id: 'editor.appliesToLineWidget',
|
|
|
|
checked: prefs.get('editor.appliesToLineWidget')
|
|
|
|
}),
|
|
|
|
$element({
|
|
|
|
tag: 'label',
|
|
|
|
htmlFor: 'editor.appliesToLineWidget',
|
|
|
|
textContent: ' ' + t('appliesLineWidgetLabel'),
|
|
|
|
title: t('appliesLineWidgetWarning')
|
|
|
|
})
|
|
|
|
]});
|
|
|
|
}
|
|
|
|
|
|
|
|
function init() {
|
|
|
|
isInit = true;
|
|
|
|
|
|
|
|
style = getComputedStyle(cm.getGutterElement());
|
|
|
|
fromLine = null;
|
|
|
|
toLine = null;
|
|
|
|
|
|
|
|
cm.on('change', onChange);
|
|
|
|
cm.on('optionChange', onOptionChange);
|
|
|
|
|
|
|
|
// is it possible to avoid flickering?
|
|
|
|
window.addEventListener('load', updateStyle);
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
function uninit() {
|
|
|
|
isInit = false;
|
|
|
|
|
2017-09-15 09:13:58 +00:00
|
|
|
widgets.forEach(clearWidget);
|
2017-09-14 01:58:22 +00:00
|
|
|
widgets.length = 0;
|
|
|
|
cm.off('change', onChange);
|
|
|
|
cm.off('optionChange', onOptionChange);
|
|
|
|
window.removeEventListener('load', updateStyle);
|
|
|
|
}
|
|
|
|
|
2017-09-15 09:13:58 +00:00
|
|
|
function onChange(cm, {from, to, origin}) {
|
|
|
|
if (origin === 'appliesTo') {
|
|
|
|
return;
|
|
|
|
}
|
2017-09-13 08:58:03 +00:00
|
|
|
if (fromLine === null || toLine === null) {
|
|
|
|
fromLine = from.line;
|
|
|
|
toLine = to.line;
|
|
|
|
} else {
|
|
|
|
fromLine = Math.min(fromLine, from.line);
|
|
|
|
toLine = Math.max(toLine, to.line);
|
|
|
|
}
|
|
|
|
clearTimeout(timer);
|
2017-09-15 09:13:58 +00:00
|
|
|
timer = setTimeout(update, THROTTLE_DELAY);
|
2017-09-14 01:58:22 +00:00
|
|
|
}
|
2017-09-13 08:58:03 +00:00
|
|
|
|
2017-09-14 01:58:22 +00:00
|
|
|
function onOptionChange(cm, option) {
|
2017-09-13 08:58:03 +00:00
|
|
|
if (option === 'theme') {
|
|
|
|
updateStyle();
|
|
|
|
}
|
2017-09-14 01:58:22 +00:00
|
|
|
}
|
2017-09-13 08:58:03 +00:00
|
|
|
|
|
|
|
function update() {
|
|
|
|
cm.operation(doUpdate);
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateStyle() {
|
|
|
|
style = getComputedStyle(cm.getGutterElement());
|
|
|
|
widgets.forEach(setWidgetStyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setWidgetStyle(widget) {
|
2017-09-13 15:35:34 +00:00
|
|
|
let borderStyle = '';
|
|
|
|
if (style.borderRightWidth !== '0px') {
|
|
|
|
borderStyle = `${style.borderRightWidth} ${style.borderRightStyle} ${style.borderRightColor}`;
|
|
|
|
} else {
|
|
|
|
borderStyle = `1px solid ${style.color}`;
|
|
|
|
}
|
2017-09-13 08:58:03 +00:00
|
|
|
widget.node.style.backgroundColor = style.backgroundColor;
|
|
|
|
widget.node.style.borderTop = borderStyle;
|
|
|
|
widget.node.style.borderBottom = borderStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
function doUpdate() {
|
|
|
|
// find which widgets needs to be update
|
|
|
|
// some widgets (lines) might be deleted
|
|
|
|
widgets = widgets.filter(w => w.line.lineNo() !== null);
|
|
|
|
let i = fromLine === null ? 0 : widgets.findIndex(w => w.line.lineNo() > fromLine) - 1;
|
|
|
|
let j = toLine === null ? 0 : widgets.findIndex(w => w.line.lineNo() > toLine);
|
|
|
|
if (i === -2) {
|
|
|
|
i = widgets.length - 1;
|
|
|
|
}
|
|
|
|
if (j < 0) {
|
|
|
|
j = widgets.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
// decide search range
|
|
|
|
const fromIndex = widgets[i] ? cm.indexFromPos({line: widgets[i].line.lineNo(), ch: 0}) : 0;
|
|
|
|
const toIndex = widgets[j] ? cm.indexFromPos({line: widgets[j].line.lineNo(), ch: 0}) : cm.getValue().length;
|
|
|
|
|
|
|
|
// splice
|
|
|
|
if (i < 0) {
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
widgets.splice(i, 0, ...createWidgets(fromIndex, toIndex, widgets.splice(i, j - i)));
|
|
|
|
|
|
|
|
fromLine = null;
|
|
|
|
toLine = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function *createWidgets(start, end, removed) {
|
|
|
|
let i = 0;
|
|
|
|
for (const section of findAppliesTo(start, end)) {
|
|
|
|
while (removed[i] && removed[i].line.lineNo() < section.pos.line) {
|
2017-09-15 09:13:58 +00:00
|
|
|
clearWidget(removed[i++]);
|
2017-09-13 08:58:03 +00:00
|
|
|
}
|
2017-09-15 09:13:58 +00:00
|
|
|
setupMarkers(section);
|
2017-09-13 08:58:03 +00:00
|
|
|
if (removed[i] && removed[i].line.lineNo() === section.pos.line) {
|
|
|
|
// reuse old widget
|
2017-09-15 09:13:58 +00:00
|
|
|
removed[i].section.applies.forEach(apply => {
|
|
|
|
apply.type.mark.clear();
|
|
|
|
apply.value.mark.clear();
|
|
|
|
});
|
|
|
|
removed[i].section = section;
|
2017-09-13 08:58:03 +00:00
|
|
|
const newNode = buildElement(section);
|
|
|
|
removed[i].node.parentNode.replaceChild(newNode, removed[i].node);
|
|
|
|
removed[i].node = newNode;
|
|
|
|
setWidgetStyle(removed[i]);
|
|
|
|
removed[i].changed();
|
|
|
|
yield removed[i];
|
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// new widget
|
|
|
|
const widget = cm.addLineWidget(section.pos.line, buildElement(section), {
|
|
|
|
coverGutter: true,
|
|
|
|
noHScroll: true,
|
|
|
|
above: true
|
|
|
|
});
|
2017-09-15 09:13:58 +00:00
|
|
|
widget.section = section;
|
2017-09-13 08:58:03 +00:00
|
|
|
setWidgetStyle(widget);
|
|
|
|
yield widget;
|
|
|
|
}
|
2017-09-15 09:13:58 +00:00
|
|
|
removed.slice(i).forEach(clearWidget);
|
|
|
|
}
|
|
|
|
|
|
|
|
function clearWidget(widget) {
|
|
|
|
widget.clear();
|
2017-10-05 17:10:45 +00:00
|
|
|
widget.section.applies.forEach(clearApply);
|
|
|
|
}
|
|
|
|
|
|
|
|
function clearApply(apply) {
|
|
|
|
apply.type.mark.clear();
|
|
|
|
apply.value.mark.clear();
|
|
|
|
apply.mark.clear();
|
2017-09-15 09:13:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function setupMarkers({applies}) {
|
2017-10-05 17:10:45 +00:00
|
|
|
applies.forEach(setupApplyMarkers);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupApplyMarkers(apply) {
|
|
|
|
apply.type.mark = cm.markText(
|
|
|
|
cm.posFromIndex(apply.type.start),
|
|
|
|
cm.posFromIndex(apply.type.end),
|
|
|
|
{clearWhenEmpty: false}
|
|
|
|
);
|
|
|
|
apply.value.mark = cm.markText(
|
|
|
|
cm.posFromIndex(apply.value.start),
|
|
|
|
cm.posFromIndex(apply.value.end),
|
|
|
|
{clearWhenEmpty: false}
|
|
|
|
);
|
|
|
|
apply.mark = cm.markText(
|
|
|
|
cm.posFromIndex(apply.start),
|
|
|
|
cm.posFromIndex(apply.end),
|
|
|
|
{clearWhenEmpty: false}
|
|
|
|
);
|
2017-09-13 08:58:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function buildElement({applies}) {
|
|
|
|
const el = $element({className: 'applies-to', appendChild: [
|
|
|
|
$element({tag: 'label', appendChild: [
|
|
|
|
t('appliesLabel'),
|
|
|
|
// $element({tag: 'svg'})
|
|
|
|
]}),
|
2017-10-08 14:03:27 +00:00
|
|
|
$element({
|
|
|
|
tag: 'ul',
|
|
|
|
className: 'applies-to-list',
|
|
|
|
appendChild: applies.map(makeInputEl)
|
|
|
|
})
|
2017-09-13 08:58:03 +00:00
|
|
|
]});
|
2017-09-13 12:39:42 +00:00
|
|
|
if (!$('li', el)) {
|
2017-09-13 08:58:03 +00:00
|
|
|
$('ul', el).appendChild($element({
|
|
|
|
tag: 'li',
|
|
|
|
className: 'applies-to-everything',
|
|
|
|
textContent: t('appliesToEverything')
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
return el;
|
|
|
|
|
2017-10-08 14:03:27 +00:00
|
|
|
function makeInputEl(apply) {
|
|
|
|
const el = $element({tag: 'li', appendChild: makeInput(apply)});
|
|
|
|
el.dataset.type = apply.type.text;
|
|
|
|
el.addEventListener('change', e => {
|
|
|
|
if (e.target.classList.contains('applies-type')) {
|
|
|
|
el.dataset.type = apply.type.text;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return el;
|
|
|
|
}
|
|
|
|
|
2017-10-05 17:10:45 +00:00
|
|
|
function makeInput(apply) {
|
|
|
|
const typeInput = $element({
|
|
|
|
tag: 'select',
|
|
|
|
className: 'applies-type',
|
|
|
|
appendChild: APPLIES_TYPE.map(([label, value]) => $element({
|
|
|
|
tag: 'option',
|
|
|
|
value: value,
|
|
|
|
textContent: label
|
|
|
|
})),
|
|
|
|
onchange(e) {
|
|
|
|
applyChange(apply.type, e.target.value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
typeInput.value = apply.type.text;
|
|
|
|
let timer;
|
|
|
|
const valueInput = $element({
|
|
|
|
tag: 'input',
|
|
|
|
className: 'applies-value',
|
|
|
|
value: apply.value.text,
|
|
|
|
oninput(e) {
|
|
|
|
clearTimeout(timer);
|
|
|
|
timer = setTimeout(applyChange, THROTTLE_DELAY, apply.value, e.target.value);
|
2017-10-08 14:03:27 +00:00
|
|
|
},
|
|
|
|
onfocus: updateRegexpTest
|
|
|
|
});
|
|
|
|
const regexpTestButton = $element({
|
|
|
|
tag: 'button',
|
|
|
|
type: 'button',
|
|
|
|
className: 'applies-to-regexp-test',
|
|
|
|
textContent: t('styleRegexpTestButton'),
|
|
|
|
onclick() {
|
|
|
|
regExpTester.toggle();
|
|
|
|
regExpTester.update([apply.value.text]);
|
2017-10-05 17:10:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
const removeButton = $element({
|
|
|
|
tag: 'button',
|
|
|
|
type: 'button',
|
|
|
|
className: 'applies-to-remove',
|
|
|
|
textContent: t('appliesRemove'),
|
|
|
|
onclick(e) {
|
|
|
|
const i = applies.indexOf(apply);
|
|
|
|
let repl;
|
|
|
|
let from;
|
|
|
|
let to;
|
|
|
|
if (applies.length < 2) {
|
|
|
|
alert('Can\'t remove last applies-to');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (i === 0) {
|
|
|
|
from = apply.mark.find().from;
|
|
|
|
to = applies[i + 1].mark.find().from;
|
|
|
|
repl = '';
|
|
|
|
} else if (i === applies.length - 1) {
|
|
|
|
from = applies[i - 1].mark.find().to;
|
|
|
|
to = apply.mark.find().to;
|
|
|
|
repl = '';
|
|
|
|
} else {
|
|
|
|
from = applies[i - 1].mark.find().to;
|
|
|
|
to = applies[i + 1].mark.find().from;
|
|
|
|
repl = ', ';
|
|
|
|
}
|
|
|
|
cm.replaceRange(repl, from, to, 'appliesTo');
|
|
|
|
clearApply(apply);
|
|
|
|
e.target.closest('li').remove();
|
|
|
|
applies.splice(i, 1);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
const addButton = $element({
|
|
|
|
tag: 'button',
|
|
|
|
type: 'button',
|
|
|
|
className: 'applies-to-add',
|
|
|
|
textContent: t('appliesAdd'),
|
|
|
|
onclick(e) {
|
|
|
|
const i = applies.indexOf(apply);
|
|
|
|
const pos = apply.mark.find().to;
|
|
|
|
const text = `, ${apply.type.text}("")`;
|
|
|
|
cm.replaceRange(text, pos, pos, 'appliesTo');
|
|
|
|
const index = cm.indexFromPos(pos);
|
|
|
|
const newApply = {
|
|
|
|
type: {
|
|
|
|
text: apply.type.text
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
text: ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
newApply.start = index + 2;
|
|
|
|
newApply.type.start = newApply.start;
|
|
|
|
newApply.type.end = newApply.type.start + newApply.type.text.length;
|
|
|
|
newApply.value.start = newApply.type.end + 2;
|
|
|
|
newApply.value.end = newApply.value.start + newApply.value.text.length;
|
|
|
|
newApply.end = newApply.value.end + 2;
|
|
|
|
setupApplyMarkers(newApply);
|
|
|
|
applies.splice(i + 1, 0, newApply);
|
|
|
|
const li = e.target.closest('li');
|
2017-10-08 14:03:27 +00:00
|
|
|
li.parentNode.insertBefore(makeInputEl(newApply), li.nextSibling);
|
2017-10-05 17:10:45 +00:00
|
|
|
}
|
|
|
|
});
|
2017-10-08 14:03:27 +00:00
|
|
|
return [typeInput, valueInput, regexpTestButton, removeButton, addButton];
|
|
|
|
|
|
|
|
function updateRegexpTest() {
|
|
|
|
if (apply.type.text === 'regexp') {
|
|
|
|
const re = apply.value.text.trim();
|
|
|
|
if (re) {
|
|
|
|
regExpTester.update([re]);
|
|
|
|
} else {
|
|
|
|
regExpTester.update([]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-05 17:10:45 +00:00
|
|
|
|
|
|
|
function applyChange(input, newText) {
|
|
|
|
const range = input.mark.find();
|
|
|
|
input.mark.clear();
|
|
|
|
cm.replaceRange(newText, range.from, range.to, 'appliesTo');
|
|
|
|
input.mark = cm.markText(
|
2017-09-15 09:13:58 +00:00
|
|
|
range.from,
|
2017-10-05 17:10:45 +00:00
|
|
|
cm.findPosH(
|
|
|
|
range.from,
|
|
|
|
newText.length,
|
|
|
|
'char'
|
|
|
|
),
|
|
|
|
{clearWhenEmpty: false}
|
|
|
|
);
|
|
|
|
input.text = newText;
|
|
|
|
|
|
|
|
if (input === apply.type) {
|
|
|
|
const range = apply.mark.find();
|
|
|
|
apply.mark.clear();
|
|
|
|
apply.mark = cm.markText(
|
|
|
|
input.mark.find().from,
|
|
|
|
range.to,
|
|
|
|
{clearWhenEmpty: false}
|
|
|
|
);
|
|
|
|
}
|
2017-10-08 14:03:27 +00:00
|
|
|
|
|
|
|
updateRegexpTest();
|
2017-10-05 17:10:45 +00:00
|
|
|
}
|
2017-09-13 08:58:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function *findAppliesTo(posStart, posEnd) {
|
|
|
|
const text = cm.getValue();
|
|
|
|
const re = /^[\t ]*@-moz-document\s+/mg;
|
2017-09-14 01:10:11 +00:00
|
|
|
const applyRe = /^(url|url-prefix|domain|regexp)\(((['"])(?:\\\\|\\\n|\\\3|[^\n])*?\3|[^)\n]*)\)[\s,]*/i;
|
2017-09-13 08:58:03 +00:00
|
|
|
let preIndex = re.lastIndex = posStart;
|
|
|
|
let match;
|
|
|
|
let pos = cm.posFromIndex(preIndex);
|
|
|
|
while ((match = re.exec(text))) {
|
|
|
|
if (match.index >= posEnd) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pos = cm.findPosH(pos, match.index - preIndex, 'char');
|
|
|
|
const applies = [];
|
|
|
|
let t = text.slice(re.lastIndex);
|
|
|
|
let m;
|
2017-09-15 07:36:44 +00:00
|
|
|
let offset = 0;
|
2017-09-13 08:58:03 +00:00
|
|
|
while ((m = t.match(applyRe))) {
|
2017-09-15 07:36:44 +00:00
|
|
|
const apply = {
|
2017-09-15 09:13:58 +00:00
|
|
|
type: {
|
|
|
|
text: m[1]
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
text: normalizeString(m[2])
|
|
|
|
}
|
2017-09-15 07:36:44 +00:00
|
|
|
};
|
2017-09-15 09:13:58 +00:00
|
|
|
apply.type.start = re.lastIndex + offset;
|
|
|
|
apply.type.end = apply.type.start + apply.type.text.length;
|
|
|
|
apply.value.start = apply.type.end + (apply.value.text === m[2] ? 1 : 2);
|
|
|
|
apply.value.end = apply.value.start + apply.value.text.length;
|
2017-10-05 17:10:45 +00:00
|
|
|
apply.start = apply.type.start;
|
|
|
|
apply.end = apply.value.end + (apply.value.text === m[2] ? 1 : 2);
|
2017-09-15 09:13:58 +00:00
|
|
|
applies.push(apply);
|
2017-09-13 08:58:03 +00:00
|
|
|
t = t.slice(m[0].length);
|
2017-09-15 07:36:44 +00:00
|
|
|
offset += m[0].length;
|
2017-09-13 08:58:03 +00:00
|
|
|
}
|
|
|
|
yield {pos, applies};
|
|
|
|
preIndex = match.index;
|
|
|
|
re.lastIndex = text.length - t.length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function normalizeString(s) {
|
|
|
|
if (/^(['"])[\s\S]*\1$/.test(s)) {
|
|
|
|
return s.slice(1, -1);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
2017-09-11 16:09:25 +00:00
|
|
|
|
|
|
|
function initHooks() {
|
|
|
|
// sidebar commands
|
|
|
|
$('#save-button').onclick = save;
|
|
|
|
$('#beautify').onclick = beautify;
|
|
|
|
$('#keyMap-help').onclick = showKeyMapHelp;
|
|
|
|
$('#toggle-style-help').onclick = showToggleStyleHelp;
|
|
|
|
$('#cancel-button').onclick = goBackToManage;
|
|
|
|
|
|
|
|
// enable
|
|
|
|
$('#enabled').onchange = e => {
|
|
|
|
const value = e.target.checked;
|
|
|
|
dirty.modify('enabled', style.enabled, value);
|
|
|
|
style.enabled = value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// source
|
|
|
|
cm.on('change', () => {
|
|
|
|
const value = cm.getValue();
|
2017-09-16 01:24:50 +00:00
|
|
|
dirty.modify('source', style.sourceCode, value);
|
|
|
|
style.sourceCode = value;
|
2017-09-11 16:09:25 +00:00
|
|
|
|
|
|
|
updateLintReportIfEnabled(cm);
|
|
|
|
});
|
|
|
|
|
|
|
|
// hotkeyRerouter
|
|
|
|
cm.on('focus', () => {
|
|
|
|
hotkeyRerouter.setState(false);
|
|
|
|
});
|
|
|
|
cm.on('blur', () => {
|
|
|
|
hotkeyRerouter.setState(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
// autocomplete
|
|
|
|
if (prefs.get('editor.autocompleteOnTyping')) {
|
|
|
|
setupAutocomplete(cm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateMetas() {
|
|
|
|
$('#name').value = style.name;
|
|
|
|
$('#enabled').checked = style.enabled;
|
|
|
|
$('#url').href = style.url;
|
2017-09-16 01:24:50 +00:00
|
|
|
const {usercssData: {preprocessor}} = style;
|
2017-09-24 08:54:21 +00:00
|
|
|
cm.setPreprocessor(preprocessor);
|
2017-09-11 16:09:25 +00:00
|
|
|
// beautify only works with regular CSS
|
2017-09-24 08:54:21 +00:00
|
|
|
$('#beautify').disabled = cm.getOption('mode') !== 'css';
|
2017-09-13 09:33:32 +00:00
|
|
|
updateTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateTitle() {
|
|
|
|
// title depends on dirty and style meta
|
|
|
|
document.title = (dirty.isDirty() ? '* ' : '') + t('editStyleTitle', [style.name]);
|
2017-09-11 16:09:25 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 17:39:45 +00:00
|
|
|
function replaceStyle(newStyle) {
|
2017-09-14 01:09:40 +00:00
|
|
|
style = deepCopy(newStyle);
|
2017-09-11 16:09:25 +00:00
|
|
|
updateMetas();
|
2017-09-16 01:24:50 +00:00
|
|
|
if (style.sourceCode !== cm.getValue()) {
|
2017-09-11 16:09:25 +00:00
|
|
|
const cursor = cm.getCursor();
|
2017-09-16 01:24:50 +00:00
|
|
|
cm.setValue(style.sourceCode);
|
2017-09-11 16:09:25 +00:00
|
|
|
cm.setCursor(cursor);
|
|
|
|
}
|
|
|
|
dirty.clear();
|
|
|
|
}
|
|
|
|
|
2017-09-12 17:39:45 +00:00
|
|
|
function updateStyleMeta(newStyle) {
|
|
|
|
dirty.modify('enabled', style.enabled, newStyle.enabled);
|
|
|
|
style.enabled = newStyle.enabled;
|
2017-09-12 11:57:43 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
function toggleStyle() {
|
|
|
|
const value = !style.enabled;
|
|
|
|
dirty.modify('enabled', style.enabled, value);
|
|
|
|
style.enabled = value;
|
|
|
|
updateMetas();
|
|
|
|
// save when toggle enable state?
|
|
|
|
save();
|
|
|
|
}
|
|
|
|
|
|
|
|
function save() {
|
|
|
|
if (!dirty.isDirty()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-09-18 03:34:12 +00:00
|
|
|
return onBackgroundReady()
|
|
|
|
.then(() => BG.usercssHelper.save({
|
|
|
|
reason: 'editSave',
|
|
|
|
id: style.id,
|
|
|
|
enabled: style.enabled,
|
|
|
|
sourceCode: style.sourceCode
|
|
|
|
}))
|
|
|
|
.then(replaceStyle)
|
2017-09-11 16:09:25 +00:00
|
|
|
.catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
alert(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-19 00:49:38 +00:00
|
|
|
return {
|
|
|
|
replaceStyle,
|
|
|
|
save,
|
|
|
|
toggleStyle,
|
|
|
|
updateStyleMeta,
|
|
|
|
isDirty: dirty.isDirty,
|
|
|
|
getStyle: () => style
|
|
|
|
};
|
2017-09-11 16:09:25 +00:00
|
|
|
}
|