2017-12-02 20:41:15 +00:00
|
|
|
/*
|
2018-10-01 14:03:17 +00:00
|
|
|
global CodeMirror loadScript
|
2017-12-26 20:39:52 +00:00
|
|
|
global createSourceEditor
|
2017-12-02 20:41:15 +00:00
|
|
|
global closeCurrentTab regExpTester messageBox
|
|
|
|
global setupCodeMirror
|
|
|
|
global beautify
|
2017-12-26 20:39:52 +00:00
|
|
|
global sectionsToMozFormat
|
2018-10-10 06:49:37 +00:00
|
|
|
global moveFocus editorWorker msg createSectionsEditor rerouteHotkeys
|
2017-12-02 20:41:15 +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 saveSizeOnClose;
|
2018-01-10 18:56:14 +00:00
|
|
|
let ownTabId;
|
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'};
|
2018-10-09 15:38:29 +00:00
|
|
|
const CssToProperty = Object.entries(propertyToCss)
|
|
|
|
.reduce((o, v) => {
|
|
|
|
o[v[1]] = v[0];
|
|
|
|
return o;
|
|
|
|
}, {});
|
2015-03-21 13:24:45 +00:00
|
|
|
|
2017-09-11 16:09:25 +00:00
|
|
|
let editor;
|
|
|
|
|
2018-08-02 17:54:40 +00:00
|
|
|
document.addEventListener('visibilitychange', beforeUnload);
|
2018-10-10 08:14:51 +00:00
|
|
|
window.addEventListener('beforeunload', beforeUnload);
|
2018-10-06 05:27:58 +00:00
|
|
|
msg.onExtension(onRuntimeMessage);
|
2017-12-02 20:41:15 +00:00
|
|
|
|
2017-12-07 17:26:41 +00:00
|
|
|
preinit();
|
|
|
|
|
2018-10-09 18:43:09 +00:00
|
|
|
(() => {
|
|
|
|
onDOMready().then(() => {
|
|
|
|
prefs.subscribe(['editor.keyMap'], showHotkeyInTooltip);
|
|
|
|
addEventListener('showHotkeyInTooltip', showHotkeyInTooltip);
|
|
|
|
showHotkeyInTooltip();
|
|
|
|
|
|
|
|
buildThemeElement();
|
|
|
|
buildKeymapElement();
|
|
|
|
|
|
|
|
setupLivePrefs();
|
|
|
|
});
|
|
|
|
|
|
|
|
initEditor();
|
|
|
|
|
|
|
|
function getCodeMirrorThemes() {
|
|
|
|
if (!chrome.runtime.getPackageDirectoryEntry) {
|
|
|
|
const themes = [
|
|
|
|
chrome.i18n.getMessage('defaultTheme'),
|
|
|
|
/* populate-theme-start */
|
|
|
|
'3024-day',
|
|
|
|
'3024-night',
|
|
|
|
'abcdef',
|
|
|
|
'ambiance',
|
|
|
|
'ambiance-mobile',
|
|
|
|
'base16-dark',
|
|
|
|
'base16-light',
|
|
|
|
'bespin',
|
|
|
|
'blackboard',
|
|
|
|
'cobalt',
|
|
|
|
'colorforth',
|
|
|
|
'darcula',
|
|
|
|
'dracula',
|
|
|
|
'duotone-dark',
|
|
|
|
'duotone-light',
|
|
|
|
'eclipse',
|
|
|
|
'elegant',
|
|
|
|
'erlang-dark',
|
|
|
|
'gruvbox-dark',
|
|
|
|
'hopscotch',
|
|
|
|
'icecoder',
|
|
|
|
'idea',
|
|
|
|
'isotope',
|
|
|
|
'lesser-dark',
|
|
|
|
'liquibyte',
|
|
|
|
'lucario',
|
|
|
|
'material',
|
|
|
|
'mbo',
|
|
|
|
'mdn-like',
|
|
|
|
'midnight',
|
|
|
|
'monokai',
|
|
|
|
'neat',
|
|
|
|
'neo',
|
|
|
|
'night',
|
|
|
|
'oceanic-next',
|
|
|
|
'panda-syntax',
|
|
|
|
'paraiso-dark',
|
|
|
|
'paraiso-light',
|
|
|
|
'pastel-on-dark',
|
|
|
|
'railscasts',
|
|
|
|
'rubyblue',
|
|
|
|
'seti',
|
|
|
|
'shadowfox',
|
|
|
|
'solarized',
|
|
|
|
'ssms',
|
|
|
|
'the-matrix',
|
|
|
|
'tomorrow-night-bright',
|
|
|
|
'tomorrow-night-eighties',
|
|
|
|
'ttcn',
|
|
|
|
'twilight',
|
|
|
|
'vibrant-ink',
|
|
|
|
'xq-dark',
|
|
|
|
'xq-light',
|
|
|
|
'yeti',
|
|
|
|
'zenburn',
|
|
|
|
/* populate-theme-end */
|
|
|
|
];
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function findKeyForCommand(command, map) {
|
|
|
|
if (typeof map === 'string') map = CodeMirror.keyMap[map];
|
|
|
|
let key = Object.keys(map).find(k => map[k] === command);
|
|
|
|
if (key) {
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
for (const ft of Array.isArray(map.fallthrough) ? map.fallthrough : [map.fallthrough]) {
|
|
|
|
key = ft && findKeyForCommand(command, ft);
|
|
|
|
if (key) {
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildThemeElement() {
|
|
|
|
const themeElement = $('#editor.theme');
|
|
|
|
const themeList = localStorage.codeMirrorThemes;
|
|
|
|
|
|
|
|
const optionsFromArray = options => {
|
|
|
|
const fragment = document.createDocumentFragment();
|
|
|
|
options.forEach(opt => fragment.appendChild($create('option', opt)));
|
|
|
|
themeElement.appendChild(fragment);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (themeList) {
|
|
|
|
optionsFromArray(themeList.split(/\s+/));
|
|
|
|
} else {
|
|
|
|
// Chrome is starting up and shows our edit.html, but the background page isn't loaded yet
|
|
|
|
const theme = prefs.get('editor.theme');
|
|
|
|
optionsFromArray([theme === 'default' ? t('defaultTheme') : theme]);
|
|
|
|
getCodeMirrorThemes().then(() => {
|
|
|
|
const themes = (localStorage.codeMirrorThemes || '').split(/\s+/);
|
|
|
|
optionsFromArray(themes);
|
|
|
|
themeElement.selectedIndex = Math.max(0, themes.indexOf(theme));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildKeymapElement() {
|
|
|
|
// move 'pc' or 'mac' prefix to the end of the displayed label
|
|
|
|
const maps = Object.keys(CodeMirror.keyMap)
|
|
|
|
.map(name => ({
|
|
|
|
value: name,
|
|
|
|
name: name.replace(/^(pc|mac)(.+)/, (s, arch, baseName) =>
|
|
|
|
baseName.toLowerCase() + '-' + (arch === 'mac' ? 'Mac' : 'PC')),
|
|
|
|
}))
|
|
|
|
.sort((a, b) => a.name < b.name && -1 || a.name > b.name && 1);
|
|
|
|
|
|
|
|
const fragment = document.createDocumentFragment();
|
|
|
|
let bin = fragment;
|
|
|
|
let groupName;
|
|
|
|
// group suffixed maps in <optgroup>
|
|
|
|
maps.forEach(({value, name}, i) => {
|
|
|
|
groupName = !name.includes('-') ? name : groupName;
|
|
|
|
const groupWithNext = maps[i + 1] && maps[i + 1].name.startsWith(groupName);
|
|
|
|
if (groupWithNext) {
|
|
|
|
if (bin === fragment) {
|
|
|
|
bin = fragment.appendChild($create('optgroup', {label: name.split('-')[0]}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const el = bin.appendChild($create('option', {value}, name));
|
|
|
|
if (value === prefs.defaults['editor.keyMap']) {
|
|
|
|
el.dataset.default = '';
|
|
|
|
el.title = t('defaultTheme');
|
|
|
|
}
|
|
|
|
if (!groupWithNext) bin = fragment;
|
|
|
|
});
|
|
|
|
$('#editor.keyMap').appendChild(fragment);
|
|
|
|
}
|
|
|
|
|
|
|
|
function showHotkeyInTooltip(_, mapName = prefs.get('editor.keyMap')) {
|
|
|
|
const extraKeys = CodeMirror.defaults.extraKeys;
|
|
|
|
for (const el of $$('[data-hotkey-tooltip]')) {
|
|
|
|
if (el._hotkeyTooltipKeyMap !== mapName) {
|
|
|
|
el._hotkeyTooltipKeyMap = mapName;
|
|
|
|
const title = el._hotkeyTooltipTitle = el._hotkeyTooltipTitle || el.title;
|
|
|
|
const cmd = el.dataset.hotkeyTooltip;
|
|
|
|
const key = cmd[0] === '=' ? cmd.slice(1) :
|
|
|
|
findKeyForCommand(cmd, mapName) ||
|
|
|
|
extraKeys && findKeyForCommand(cmd, extraKeys);
|
|
|
|
const newTitle = title + (title && key ? '\n' : '') + (key || '');
|
|
|
|
if (el.title !== newTitle) el.title = newTitle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function initEditor() {
|
|
|
|
return Promise.all([
|
|
|
|
initStyleData(),
|
|
|
|
onDOMready(),
|
|
|
|
])
|
|
|
|
.then(([style]) => {
|
|
|
|
const usercss = isUsercss(style);
|
|
|
|
$('#heading').textContent = t(style.id ? 'editStyleHeading' : 'addStyleTitle');
|
|
|
|
$('#name').placeholder = t(usercss ? 'usercssEditorNamePlaceholder' : 'styleMissingName');
|
|
|
|
$('#name').title = usercss ? t('usercssReplaceTemplateName') : '';
|
|
|
|
|
|
|
|
$('#preview-label').classList.toggle('hidden', !style.id);
|
|
|
|
|
|
|
|
$('#beautify').onclick = () => beautify(editor.getEditors());
|
|
|
|
$('#lint').addEventListener('scroll', hideLintHeaderOnScroll, {passive: true});
|
|
|
|
window.addEventListener('resize', () => debounce(rememberWindowSize, 100));
|
|
|
|
|
2018-10-10 06:49:37 +00:00
|
|
|
editor = usercss ? createSourceEditor(style) : createSectionsEditor(style);
|
2018-10-09 18:43:09 +00:00
|
|
|
if (editor.ready) {
|
|
|
|
return editor.ready();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})();
|
2015-03-21 13:24:45 +00:00
|
|
|
|
2017-12-02 20:41:15 +00:00
|
|
|
function preinit() {
|
|
|
|
// make querySelectorAll enumeration code readable
|
2018-10-09 15:38:29 +00:00
|
|
|
// FIXME: don't extend native
|
2017-12-02 20:41:15 +00:00
|
|
|
['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 => {
|
2018-01-10 18:56:14 +00:00
|
|
|
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':
|
2018-10-09 16:41:07 +00:00
|
|
|
if (editor.getStyleId() === request.style.id &&
|
2018-01-10 18:56:14 +00:00
|
|
|
request.reason !== 'editPreview' &&
|
2017-12-02 20:41:15 +00:00
|
|
|
request.reason !== 'editSave' &&
|
|
|
|
request.reason !== 'config') {
|
|
|
|
// code-less style from notifyAllTabs
|
2018-01-01 17:02:49 +00:00
|
|
|
const {sections, id} = request.style;
|
2018-01-25 01:42:02 +00:00
|
|
|
((sections && sections[0] || {}).code === null
|
2018-10-05 10:47:52 +00:00
|
|
|
? API.getStyleFromDB(id)
|
2018-01-01 17:02:49 +00:00
|
|
|
: Promise.resolve([request.style])
|
|
|
|
).then(([style]) => {
|
2018-10-09 15:38:29 +00:00
|
|
|
editor.replaceStyle(style, request.codeIsUpdated);
|
2018-01-01 17:02:49 +00:00
|
|
|
});
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-12-02 20:41:15 +00:00
|
|
|
break;
|
|
|
|
case 'styleDeleted':
|
2018-10-09 16:41:07 +00:00
|
|
|
if (editor.getStyleId() === request.style.id) {
|
2018-08-02 17:54:40 +00:00
|
|
|
document.removeEventListener('visibilitychange', beforeUnload);
|
|
|
|
window.onbeforeunload = null;
|
2017-12-02 20:41:15 +00:00
|
|
|
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 'editDeleteText':
|
|
|
|
document.execCommand('delete');
|
|
|
|
break;
|
2017-07-12 19:50:13 +00:00
|
|
|
}
|
2017-08-27 11:56:04 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 17:54:40 +00:00
|
|
|
/**
|
|
|
|
* Invoked for 'visibilitychange' event by default.
|
|
|
|
* Invoked for 'beforeunload' event when the style is modified and unsaved.
|
|
|
|
* See https://developers.google.com/web/updates/2018/07/page-lifecycle-api#legacy-lifecycle-apis-to-avoid
|
|
|
|
* > Never add a beforeunload listener unconditionally or use it as an end-of-session signal.
|
|
|
|
* > Only add it when a user has unsaved work, and remove it as soon as that work has been saved.
|
|
|
|
*/
|
2018-10-10 08:14:51 +00:00
|
|
|
function beforeUnload(e) {
|
2018-08-02 17:54:40 +00:00
|
|
|
if (saveSizeOnClose) rememberWindowSize();
|
|
|
|
const activeElement = document.activeElement;
|
|
|
|
if (activeElement) {
|
|
|
|
// blurring triggers 'change' or 'input' event if needed
|
|
|
|
activeElement.blur();
|
|
|
|
// refocus if unloading was canceled
|
|
|
|
setTimeout(() => activeElement.focus());
|
2017-08-27 11:56:04 +00:00
|
|
|
}
|
2018-10-10 08:14:51 +00:00
|
|
|
if (editor && editor.isDirty()) {
|
2018-08-02 17:54:40 +00:00
|
|
|
// neither confirm() nor custom messages work in modern browsers but just in case
|
2018-10-10 08:14:51 +00:00
|
|
|
if (e) {
|
|
|
|
e.returnValue = t('styleChangesNotSaved');
|
|
|
|
} else {
|
|
|
|
return t('styleChangesNotSaved');
|
|
|
|
}
|
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(/^\?/, ''));
|
2018-10-02 12:22:18 +00:00
|
|
|
const id = Number(params.get('id'));
|
2017-11-26 13:04:03 +00:00
|
|
|
const createEmptyStyle = () => ({
|
|
|
|
id: null,
|
2018-02-14 02:53:35 +00:00
|
|
|
name: params.get('domain') ||
|
|
|
|
tryCatch(() => new URL(params.get('url-prefix')).hostname) ||
|
|
|
|
'',
|
2017-11-26 13:04:03 +00:00
|
|
|
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
|
|
|
});
|
2018-10-02 12:22:18 +00:00
|
|
|
return fetchStyle()
|
|
|
|
.then(style => {
|
2018-10-09 16:41:07 +00:00
|
|
|
if (style.id) sessionStorage.justEditedStyleId = style.id;
|
2017-12-07 17:26:41 +00:00
|
|
|
// 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
|
2018-10-09 16:41:07 +00:00
|
|
|
if (!style.id) {
|
2017-12-07 17:26:41 +00:00
|
|
|
history.replaceState({}, document.title, location.pathname);
|
|
|
|
}
|
|
|
|
return style;
|
|
|
|
});
|
2018-10-02 12:22:18 +00:00
|
|
|
|
|
|
|
function fetchStyle() {
|
|
|
|
if (id) {
|
|
|
|
return API.getStyleFromDB(id);
|
|
|
|
}
|
|
|
|
return Promise.resolve(createEmptyStyle());
|
|
|
|
}
|
2015-01-30 17:05:06 +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-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 ||
|
2018-01-01 07:34:16 +00:00
|
|
|
!document.activeElement.closest('#search-replace-dialog') &&
|
2017-12-02 21:22:03 +00:00
|
|
|
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
|
|
|
});
|
|
|
|
|
2018-08-07 17:11:11 +00:00
|
|
|
window.addEventListener('keydown', showHelp.close, true);
|
|
|
|
$('.dismiss', div).onclick = showHelp.close;
|
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,
|
2018-07-22 17:08:13 +00:00
|
|
|
lineWrapping: prefs.get('editor.lineWrapping'),
|
2017-07-12 19:50:13 +00:00
|
|
|
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,
|
|
|
|
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();
|
2018-10-10 06:49:37 +00:00
|
|
|
rerouteHotkeys(false);
|
2018-07-22 16:37:49 +00:00
|
|
|
|
|
|
|
document.documentElement.style.pointerEvents = 'none';
|
|
|
|
popup.style.pointerEvents = 'auto';
|
|
|
|
|
|
|
|
const onKeyDown = event => {
|
|
|
|
if (event.which === 9 && !event.ctrlKey && !event.altKey && !event.metaKey) {
|
|
|
|
const search = $('#search-replace-dialog');
|
|
|
|
const area = search && search.contains(document.activeElement) ? search : popup;
|
|
|
|
moveFocus(area, event.shiftKey ? -1 : 1);
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
window.addEventListener('keydown', onKeyDown, true);
|
|
|
|
|
2017-12-09 15:23:18 +00:00
|
|
|
window.addEventListener('closeHelp', function _() {
|
|
|
|
window.removeEventListener('closeHelp', _);
|
2018-07-22 16:37:49 +00:00
|
|
|
window.removeEventListener('keydown', onKeyDown, true);
|
|
|
|
document.documentElement.style.removeProperty('pointer-events');
|
2018-10-10 06:49:37 +00:00
|
|
|
rerouteHotkeys(true);
|
2017-12-09 15:23:18 +00:00
|
|
|
cm = popup.codebox = null;
|
|
|
|
});
|
2018-07-22 16:37:49 +00:00
|
|
|
|
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 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);
|
|
|
|
}
|
|
|
|
}
|