var styleId = null; var dirty = false; var lockScroll; // ensure the section doesn't jump when clicking selected text var appliesToTemplate = document.createElement("li"); appliesToTemplate.innerHTML = ''; var appliesToEverythingTemplate = document.createElement("li"); appliesToEverythingTemplate.className = "applies-to-everything"; appliesToEverythingTemplate.innerHTML = t("appliesToEverything") + ' ' var sectionTemplate = document.createElement("div"); sectionTemplate.innerHTML = '
'; var editors = [] // array of all CodeMirror instances // replace given textarea with the CodeMirror editor function setupCodeMirror(textarea) { CodeMirror.commands.save = function(cm) { save() } var cm = CodeMirror.fromTextArea(textarea, { mode: 'css', lineNumbers: true, lineWrapping: true, foldGutter: true, gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter", "CodeMirror-lint-markers"], matchBrackets: true, lint: CodeMirror.lint.css, smartIndent: prefs.getPref("smart-indent"), keyMap: "sublime", extraKeys: {"Ctrl-Space": "autocomplete"} }); cm.addKeyMap({ "Ctrl-G": function(cm) { var cur = cm.getCursor(); cm.openDialog(t('editGotoLine') + ': ', function(str) { var m = str.match(/^\s*(\d+)(?:\s*:\s*(\d+))?\s*$/); if (m) { cm.setCursor(m[1] - 1, m[2] ? m[2] - 1 : cur.ch); } }, {value: cur.line+1}); }, "Alt-PageDown": function(cm) { editors[(editors.indexOf(cm) + 1) % editors.length].focus(); }, "Alt-PageUp": function(cm) { editors[(editors.indexOf(cm) - 1 + editors.length) % editors.length].focus(); } }); cm.lastChange = cm.changeGeneration(); cm.on("change", indicateCodeChange); // ensure the entire section is visible on focus cm.on("focus", function(cm) { var section = cm.display.wrapper.parentNode; var bounds = section.getBoundingClientRect(); if ((bounds.bottom > window.innerHeight && bounds.top > 0) || (bounds.top < 0 && bounds.bottom < window.innerHeight)) { lockScroll = null; if (bounds.top < 0) { window.scrollBy(0, bounds.top - 1); } else { window.scrollBy(0, bounds.bottom - window.innerHeight + 1); } // prevent possible double fire of selection change event induced by window.scrollBy var selectionChangeCount = 0, selection; function beforeSelectionChange(cm, obj) { if (++selectionChangeCount == 1) { selection = obj.ranges; } else { obj.update(selection); cm.off("beforeSelectionChange", beforeSelectionChange); } } cm.on("beforeSelectionChange", beforeSelectionChange); setTimeout(function() { cm.off("beforeSelectionChange", beforeSelectionChange) }, 200); } }); // ensure the section doesn't jump when clicking selected text cm.on("cursorActivity", function(cm) { setTimeout(function() { lockScroll = { windowScrollY: window.scrollY, editor: cm, editorScrollInfo: cm.getScrollInfo() } }, 0); }); editors.push(cm); } // ensure the section doesn't jump when clicking selected text document.addEventListener("scroll", function(e) { if (lockScroll && lockScroll.windowScrollY != window.scrollY) { window.scrollTo(0, lockScroll.windowScrollY); lockScroll.editor.scrollTo(lockScroll.editorScrollInfo.left, lockScroll.editorScrollInfo.top); lockScroll = null; } }); document.addEventListener("keydown", function(e) { if (e.ctrlKey && !e.shiftKey && !e.altKey && !e.metaKey && e.keyCode == 83) { e.preventDefault(); save(); } }); function makeDirty() { dirty = true; } window.onbeforeunload = function() { prefs.setPref('windowPosition', { left: screenLeft, top: screenTop, width: outerWidth, height: outerHeight }); return dirty || isCodeDirty() ? t('styleChangesNotSaved') : null; } function isCodeDirty() { for(var i=0; i < editors.length; i++) { if (!editors[i].isClean(editors[i].lastChange)) { return true; } } return false; } function indicateCodeChange(cm) { var clean = cm.isClean(cm.lastChange); if (clean != cm.lastClean) { cm.lastClean = clean; var label = cm.getTextArea().previousElementSibling; if (label) { label.textContent = label.textContent.replace(/\*?$/, clean ? '' : '*'); } } }; function addAppliesTo(list, name, value) { var showingEverything = list.querySelector(".applies-to-everything") != null; // blow away "Everything" if it's there if (showingEverything) { list.removeChild(list.firstChild); } var e; if (name && value) { e = appliesToTemplate.cloneNode(true); e.querySelector("[name=applies-type]").value = name; e.querySelector("[name=applies-value]").value = value; e.querySelector(".remove-applies-to").addEventListener("click", removeAppliesTo, false); e.querySelector(".applies-value").addEventListener("change", makeDirty, false); e.querySelector(".applies-type").addEventListener("change", makeDirty, false); } else if (showingEverything || list.hasChildNodes()) { e = appliesToTemplate.cloneNode(true); if (list.hasChildNodes()) { e.querySelector("[name=applies-type]").value = list.querySelector("li:last-child [name='applies-type']").value; } e.querySelector(".remove-applies-to").addEventListener("click", removeAppliesTo, false); e.querySelector(".applies-value").addEventListener("change", makeDirty, false); e.querySelector(".applies-type").addEventListener("change", makeDirty, false); } else { e = appliesToEverythingTemplate.cloneNode(true); } e.querySelector(".add-applies-to").addEventListener("click", function() {addAppliesTo(this.parentNode.parentNode)}, false); list.appendChild(e); } function addSection(section) { var div = sectionTemplate.cloneNode(true); div.querySelector(".applies-to-help").addEventListener("click", showAppliesToHelp, false); div.querySelector(".remove-section").addEventListener("click", removeSection, false); div.querySelector(".add-section").addEventListener("click", function() {addSection()}, false); var appliesTo = div.querySelector(".applies-to-list"); if (section) { var codeElement = div.querySelector(".code"); codeElement.value = section.code; codeElement.addEventListener("change", makeDirty, false); if (section.urls) { section.urls.forEach(function(url) { addAppliesTo(appliesTo, "url", url); }); } if (section.urlPrefixes) { section.urlPrefixes.forEach(function(url) { addAppliesTo(appliesTo, "url-prefix", url); }); } if (section.domains) { section.domains.forEach(function(d) { addAppliesTo(appliesTo, "domain", d); }); } if (section.regexps) { section.regexps.forEach(function(d) { addAppliesTo(appliesTo, "regexp", d); }); } if (!section.urls && !section.urlPrefixes && !section.domains && !section.regexps) { addAppliesTo(appliesTo); } } else { addAppliesTo(appliesTo); } var sections = document.getElementById("sections"); sections.appendChild(div); setupCodeMirror(div.querySelector('.code')); } function removeAppliesTo(event) { var appliesToList = event.target.parentNode.parentNode; appliesToList.removeChild(event.target.parentNode); if (!appliesToList.hasChildNodes()) { var e = appliesToEverythingTemplate.cloneNode(true); e.querySelector(".add-applies-to").addEventListener("click", function() {addAppliesTo(this.parentNode.parentNode)}, false); appliesToList.appendChild(e); } makeDirty(); } function removeSection(event) { var section = event.target.parentNode; var cm = section.querySelector(".CodeMirror-wrap"); if (cm && editors.indexOf(cm.CodeMirror) >= 0) { editors.splice(editors.indexOf(cm.CodeMirror), 1); } section.parentNode.removeChild(section); makeDirty(); } function setupGlobalSearch() { var originalCommand = { find: CodeMirror.commands.find, findNext: CodeMirror.commands.findNext, findPrev: CodeMirror.commands.findPrev } function shouldIgnoreCase(query) { // treat all-lowercase non-regexp queries as case-insensitive return typeof query == "string" && query == query.toLowerCase(); } function find(activeCM) { var originalOpenDialog = activeCM.openDialog; activeCM.openDialog = function(template, callback, options) { originalOpenDialog.call(activeCM, template, function(query) { activeCM.openDialog = originalOpenDialog; callback(query); var state = activeCM.state.search; if (editors.length == 1 || !state.query) { return; } for (var i=0; i < editors.length; i++) { var cm = editors[i]; if (cm == activeCM) { continue; } cm.execCommand("clearSearch"); cm.state.search = { query: state.query, overlay: state.overlay, annotate: cm.showMatchesOnScrollbar(state.query, shouldIgnoreCase(state.query)) } cm.addOverlay(state.overlay); } if (CodeMirror.cmpPos(activeCM.state.search.posFrom, activeCM.state.search.posTo) == 0) { findNext(activeCM); } }, options); } originalCommand.find(activeCM); } function findNext(activeCM, reverse) { if (!activeCM.state.search || !activeCM.state.search.query) { find(activeCM); return; } var pos = activeCM.getCursor(); // check if the search term is currently selected in the editor var m = activeCM.getSelection().match(activeCM.state.search.query); if (m && m[0].length == activeCM.getSelection().length) { pos = activeCM.getCursor(reverse ? "from" : "to"); activeCM.setSelection(activeCM.getCursor()); } for (var i=0, cm=activeCM; i < editors.length; i++) { var state = cm.state.search; if (cm != activeCM) { pos = reverse ? CodeMirror.Pos(cm.lastLine()) : CodeMirror.Pos(0, 0); } var searchCursor = cm.getSearchCursor(state.query, pos, shouldIgnoreCase(state.query)); if (searchCursor.find(reverse) || editors.length == 1) { if (editors.length > 1) { cm.focus(); } // speedup the original findNext state.posFrom = reverse ? searchCursor.to() : searchCursor.from(); state.posTo = CodeMirror.Pos(state.posFrom.line, state.posFrom.ch); originalCommand[reverse ? "findPrev" : "findNext"](cm); return; } cm = editors[(editors.indexOf(cm) + (reverse ? -1 + editors.length : 1)) % editors.length]; } // nothing found so far, so call the original search with wrap-around originalCommand[reverse ? "findPrev" : "findNext"](activeCM); } CodeMirror.commands.find = find; CodeMirror.commands.findNext = function(cm) { findNext(cm) } CodeMirror.commands.findPrev = function(cm) { findNext(cm, true) } } window.addEventListener("load", init, false); function init() { tE("sections-help", "helpAlt", "alt"); loadPrefs({"smart-indent": "true"}); var params = getParams(); if (!params.id) { // match should be 2 - one for the whole thing, one for the parentheses // This is an add var section = {code: ""} if (params.domain) { section.domains = [params.domain]; } else if (params.url) { section.urls = [params.url]; } else if (params["url-prefix"]) { section.urlPrefixes = [params["url-prefix"]]; } addSection(section); // default to enabled document.getElementById("enabled").checked = true document.title = t("addStyleTitle"); tE("heading", "addStyleTitle"); setupGlobalSearch(); return; } // This is an edit chrome.extension.sendMessage({method: "getStyles", id: params.id}, function(styles) { var style = styles[0]; styleId = style.id; initWithStyle(style); }); } function initWithStyle(style) { document.getElementById("name").value = style.name; document.getElementById("enabled").checked = style.enabled == "true"; document.getElementById("heading").innerHTML = t("editStyleHeading"); initTitle(style.name); // if this was done in response to an update, we need to clear existing sections Array.prototype.forEach.call(document.querySelectorAll("#sections > div"), function(div) { div.parentNode.removeChild(div); }); style.sections.forEach(addSection); setupGlobalSearch(); } function initTitle(name) { document.title = t('editStyleTitle', [name]); } function validate() { var name = document.getElementById("name").value; if (name == "") { return t("styleMissingName"); } // validate the regexps if (Array.prototype.some.call(document.querySelectorAll(".applies-to-list"), function(list) { return Array.prototype.some.call(list.childNodes, function(li) { if (li.className == appliesToEverythingTemplate.className) { return false; } var valueElement = li.querySelector("[name=applies-value]"); var a = li.querySelector("[name=applies-type]").value; var b = valueElement.value; if (a && b) { if (a == "regexp") { try { new RegExp(b); } catch (ex) { valueElement.focus(); return true; } } } return false; }); })) { return t("styleBadRegexp"); } return null; } function save() { // save the contents of the CodeMirror editors back into the textareas for (var i=0; i < editors.length; i++) { editors[i].save(); } var error = validate(); if (error) { alert(error); return; } var name = document.getElementById("name").value; var enabled = document.getElementById("enabled").checked; var request = { method: "saveStyle", id: styleId, name: name, enabled: enabled, sections: getSections(), }; chrome.extension.sendMessage(request, saveComplete); } function getSections() { var sections = []; Array.prototype.forEach.call(document.querySelectorAll("#sections > div"), function(div) { var code = div.querySelector(".code").value; if (/^\s*$/.test(code)) { return; } var meta = getMeta(div); meta.code = code; sections.push(meta); }); return sections; } function getMeta(e) { var meta = {urls: [], urlPrefixes: [], domains: [], regexps: []}; Array.prototype.forEach.call(e.querySelector(".applies-to-list").childNodes, function(li) { if (li.className == appliesToEverythingTemplate.className) { return; } var a = li.querySelector("[name=applies-type]").value; var b = li.querySelector("[name=applies-value]").value; if (a && b) { switch (a) { case "url": meta.urls.push(b); break; case "url-prefix": meta.urlPrefixes.push(b); break; case "domain": meta.domains.push(b); break; case "regexp": meta.regexps.push(b); break; } } }); return meta; } function saveComplete(style) { dirty = false; for(var i=0; i < editors.length; i++) { var cm = editors[i]; cm.lastChange = cm.changeGeneration(true); indicateCodeChange(cm); } // Go from new style URL to edit style URL if (location.href.indexOf("id=") == -1) { // give the code above a moment before we kill the page setTimeout(function() {location.href = "edit.html?id=" + style.id;}, 200); } else { initTitle(document.getElementById("name").value); } } function showMozillaFormat() { var w = window.open("data:text/plain;charset=UTF-8," + encodeURIComponent(toMozillaFormat())); } function toMozillaFormat() { return getSections().map(function(section) { if (section.urls.length == 0 && section.urlPrefixes.length == 0 && section.domains.length == 0 && section.regexps.length == 0) { return section.code; } var propertyToCss = {"urls": "url", "urlPrefixes": "url-prefix", "domains": "domain", "regexps": "regexp"}; var cssMds = []; for (var i in propertyToCss) { cssMds = cssMds.concat(section[i].map(function(v) { return propertyToCss[i] + "(\"" + v.replace(/\\/g, "\\\\") + "\")"; })); } return "@-moz-document " + cssMds.join(", ") + " {\n" + section.code + "\n}"; }).join("\n\n"); } function showSectionHelp() { showHelp(t("sectionHelp")); } function showAppliesToHelp() { showHelp(t("appliesHelp")); } function showToMozillaHelp() { showHelp(t("styleToMozillaFormatHelp")); } function showHelp(text) { alert(text); } function getParams() { var params = {}; var urlParts = location.href.split("?", 2); if (urlParts.length == 1) { return params; } urlParts[1].split("&").forEach(function(keyValue) { var splitKeyValue = keyValue.split("=", 2); params[decodeURIComponent(splitKeyValue[0])] = decodeURIComponent(splitKeyValue[1]); }); return params; } chrome.extension.onMessage.addListener(function(request, sender, sendResponse) { var installed = document.getElementById("installed"); switch (request.method) { case "styleUpdated": if (styleId == request.id) { initWithStyle(request.style); dirty = false; } break; case "styleDeleted": if (styleId == request.id) { window.close(); break; } break; case "prefChanged": if (request.prefName == "smart-indent") { editors.forEach(function(editor) { editor.setOption("smartIndent", request.value); }); } } }); tE("name-label", "styleNameLabel"); tE("enabled-label", "styleEnabledLabel"); tE("to-mozilla", "styleToMozillaFormat"); tE("save-button", "styleSaveLabel"); tE("cancel-button", "styleCancelEditLabel"); tE("sections-heading", "styleSectionsTitle"); tE("options-heading", "optionsHeading"); tE("smart-indent-label", "prefSmartIndent"); document.getElementById("name").addEventListener("change", makeDirty, false); document.getElementById("enabled").addEventListener("change", makeDirty, false); document.getElementById("to-mozilla").addEventListener("click", showMozillaFormat, false); document.getElementById("to-mozilla-help").addEventListener("click", showToMozillaHelp, false); document.getElementById("save-button").addEventListener("click", save, false); document.getElementById("sections-help").addEventListener("click", showSectionHelp, false);