2015-01-30 17:28:05 +00:00
|
|
|
var writeStyleTemplate = document.createElement("a");
|
|
|
|
writeStyleTemplate.className = "write-style-link";
|
|
|
|
|
2015-03-24 14:07:59 +00:00
|
|
|
var installed = document.getElementById("installed");
|
|
|
|
|
2015-03-12 23:00:23 +00:00
|
|
|
if (!prefs.getPref("popup.stylesFirst")) {
|
2015-03-24 14:07:59 +00:00
|
|
|
document.body.insertBefore(document.querySelector("body > .actions"), installed);
|
2015-03-12 23:00:23 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 09:34:44 +00:00
|
|
|
getActiveTabRealURL(updatePopUp);
|
2015-03-23 18:56:11 +00:00
|
|
|
|
|
|
|
function updatePopUp(url) {
|
2015-08-06 10:05:36 +00:00
|
|
|
var urlWillWork = /^(file|http|https|ftps?|chrome\-extension):/.exec(url);
|
2015-01-30 17:28:05 +00:00
|
|
|
if (!urlWillWork) {
|
2015-03-12 23:00:23 +00:00
|
|
|
document.body.classList.add("blocked");
|
2015-03-27 10:30:07 +00:00
|
|
|
document.getElementById("unavailable").style.display = "block";
|
2015-03-17 18:03:20 +00:00
|
|
|
return;
|
2015-01-30 17:28:05 +00:00
|
|
|
}
|
|
|
|
|
2015-03-23 18:56:11 +00:00
|
|
|
chrome.extension.sendMessage({method: "getStyles", matchUrl: url}, showStyles);
|
|
|
|
document.querySelector("#find-styles a").href = "https://userstyles.org/styles/browse/all/" + encodeURIComponent("file" === urlWillWork[1] ? "file:" : url);
|
2015-01-30 17:28:05 +00:00
|
|
|
|
|
|
|
// Write new style links
|
2015-02-18 18:56:39 +00:00
|
|
|
var writeStyleLinks = [],
|
|
|
|
container = document.createElement('span');
|
|
|
|
container.id = "match";
|
2015-01-30 17:28:05 +00:00
|
|
|
|
|
|
|
// For this URL
|
|
|
|
var urlLink = writeStyleTemplate.cloneNode(true);
|
2015-03-23 18:56:11 +00:00
|
|
|
urlLink.href = "edit.html?url-prefix=" + encodeURIComponent(url);
|
2015-03-02 04:23:03 +00:00
|
|
|
urlLink.appendChild(document.createTextNode( // switchable; default="this URL"
|
2015-03-07 06:51:07 +00:00
|
|
|
!prefs.getPref("popup.breadcrumbs.usePath")
|
2015-03-02 04:23:03 +00:00
|
|
|
? t("writeStyleForURL").replace(/ /g, "\u00a0")
|
2015-03-23 18:56:11 +00:00
|
|
|
: /\/\/[^/]+\/(.*)/.exec(url)[1]
|
2015-03-02 04:23:03 +00:00
|
|
|
));
|
2015-03-23 18:56:11 +00:00
|
|
|
urlLink.title = "url-prefix(\"$\")".replace("$", url);
|
2015-01-30 17:28:05 +00:00
|
|
|
writeStyleLinks.push(urlLink);
|
|
|
|
document.querySelector("#write-style").appendChild(urlLink)
|
2015-03-04 08:20:39 +00:00
|
|
|
if (prefs.getPref("popup.breadcrumbs")) { // switchable; default=enabled
|
2015-03-02 04:23:03 +00:00
|
|
|
urlLink.addEventListener("mouseenter", function(event) { this.parentNode.classList.add("url()") }, false);
|
|
|
|
urlLink.addEventListener("focus", function(event) { this.parentNode.classList.add("url()") }, false);
|
|
|
|
urlLink.addEventListener("mouseleave", function(event) { this.parentNode.classList.remove("url()") }, false);
|
|
|
|
urlLink.addEventListener("blur", function(event) { this.parentNode.classList.remove("url()") }, false);
|
|
|
|
}
|
2015-01-30 17:28:05 +00:00
|
|
|
|
|
|
|
// For domain
|
2015-03-23 18:56:11 +00:00
|
|
|
var domains = getDomains(url)
|
2015-01-30 17:28:05 +00:00
|
|
|
domains.forEach(function(domain) {
|
|
|
|
// Don't include TLD
|
|
|
|
if (domains.length > 1 && domain.indexOf(".") == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var domainLink = writeStyleTemplate.cloneNode(true);
|
|
|
|
domainLink.href = "edit.html?domain=" + encodeURIComponent(domain);
|
|
|
|
domainLink.appendChild(document.createTextNode(domain));
|
2015-03-03 19:31:32 +00:00
|
|
|
domainLink.title = "domain(\"$\")".replace("$", domain);
|
2015-02-18 18:56:39 +00:00
|
|
|
domainLink.setAttribute("subdomain", domain.substring(0, domain.indexOf(".")));
|
2015-01-30 17:28:05 +00:00
|
|
|
writeStyleLinks.push(domainLink);
|
|
|
|
});
|
|
|
|
|
|
|
|
var writeStyle = document.querySelector("#write-style");
|
|
|
|
writeStyleLinks.forEach(function(link, index) {
|
2015-01-30 18:35:37 +00:00
|
|
|
link.addEventListener("click", openLinkInTabOrWindow, false);
|
2015-02-18 18:56:39 +00:00
|
|
|
container.appendChild(link);
|
2015-01-30 17:28:05 +00:00
|
|
|
});
|
2015-03-04 08:20:39 +00:00
|
|
|
if (prefs.getPref("popup.breadcrumbs")) {
|
2015-03-02 04:23:03 +00:00
|
|
|
container.classList.add("breadcrumbs");
|
|
|
|
container.appendChild(container.removeChild(container.firstChild));
|
|
|
|
}
|
2015-02-18 18:56:39 +00:00
|
|
|
writeStyle.appendChild(container);
|
2015-03-23 18:56:11 +00:00
|
|
|
}
|
2012-08-20 01:14:33 +00:00
|
|
|
|
|
|
|
function showStyles(styles) {
|
2015-03-04 08:20:39 +00:00
|
|
|
var enabledFirst = prefs.getPref("popup.enabledFirst");
|
2015-03-03 21:49:23 +00:00
|
|
|
styles.sort(function(a, b) {
|
|
|
|
if (enabledFirst && a.enabled !== b.enabled) return !(a.enabled < b.enabled) ? -1 : 1;
|
|
|
|
return a.name.localeCompare(b.name);
|
|
|
|
});
|
2012-08-20 01:14:33 +00:00
|
|
|
if (styles.length == 0) {
|
|
|
|
installed.innerHTML = "<div class='entry' id='no-styles'>" + t('noStylesForSite') + "</div>";
|
|
|
|
}
|
|
|
|
styles.map(createStyleElement).forEach(function(e) {
|
|
|
|
installed.appendChild(e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function createStyleElement(style) {
|
2015-07-19 15:27:19 +00:00
|
|
|
var e = template.style.cloneNode(true);
|
2014-10-01 19:51:25 +00:00
|
|
|
var checkbox = e.querySelector(".checker");
|
2015-04-08 19:14:16 +00:00
|
|
|
checkbox.id = "style-" + style.id;
|
2014-10-06 16:13:05 +00:00
|
|
|
checkbox.checked = style.enabled == "true";
|
2014-10-01 19:51:25 +00:00
|
|
|
|
2012-08-20 01:14:33 +00:00
|
|
|
e.setAttribute("class", "entry " + (style.enabled == "true" ? "enabled" : "disabled"));
|
|
|
|
e.setAttribute("style-id", style.id);
|
|
|
|
var styleName = e.querySelector(".style-name");
|
|
|
|
styleName.appendChild(document.createTextNode(style.name));
|
2015-04-08 19:14:16 +00:00
|
|
|
styleName.setAttribute("for", "style-" + style.id);
|
2015-05-07 23:07:37 +00:00
|
|
|
styleName.checkbox = checkbox;
|
2012-08-20 01:14:33 +00:00
|
|
|
var editLink = e.querySelector(".style-edit-link");
|
|
|
|
editLink.setAttribute("href", editLink.getAttribute("href") + style.id);
|
2015-01-30 18:38:17 +00:00
|
|
|
editLink.addEventListener("click", openLinkInTabOrWindow, false);
|
2014-10-01 19:51:25 +00:00
|
|
|
|
2015-05-07 23:07:37 +00:00
|
|
|
styleName.addEventListener("click", function() { this.checkbox.click(); event.preventDefault(); });
|
2014-10-06 16:13:05 +00:00
|
|
|
// clicking the checkbox will toggle it, and this will run after that happens
|
|
|
|
checkbox.addEventListener("click", function() { enable(event, event.target.checked); }, false);
|
2015-02-17 19:01:15 +00:00
|
|
|
e.querySelector(".enable").addEventListener("click", function() { enable(event, true); }, false);
|
|
|
|
e.querySelector(".disable").addEventListener("click", function() { enable(event, false); }, false);
|
2014-10-06 16:13:05 +00:00
|
|
|
|
2012-08-20 01:14:33 +00:00
|
|
|
e.querySelector(".delete").addEventListener("click", function() { doDelete(event, false); }, false);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
function enable(event, enabled) {
|
|
|
|
var id = getId(event);
|
|
|
|
enableStyle(id, enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
function doDelete() {
|
2013-07-03 16:43:42 +00:00
|
|
|
// Opera can't do confirms in popups
|
|
|
|
if (getBrowser() != "Opera") {
|
|
|
|
if (!confirm(t('deleteStyleConfirm'))) {
|
|
|
|
return;
|
|
|
|
}
|
2012-08-20 01:14:33 +00:00
|
|
|
}
|
|
|
|
var id = getId(event);
|
|
|
|
deleteStyle(id);
|
|
|
|
}
|
|
|
|
|
2013-07-03 16:43:42 +00:00
|
|
|
function getBrowser() {
|
2013-07-03 17:33:31 +00:00
|
|
|
if (navigator.userAgent.indexOf("OPR") > -1) {
|
2013-07-03 16:43:42 +00:00
|
|
|
return "Opera";
|
|
|
|
}
|
|
|
|
return "Chrome";
|
|
|
|
}
|
|
|
|
|
2012-08-20 01:14:33 +00:00
|
|
|
function getId(event) {
|
|
|
|
var e = event.target;
|
|
|
|
while (e) {
|
|
|
|
if (e.hasAttribute("style-id")) {
|
|
|
|
return e.getAttribute("style-id");
|
|
|
|
}
|
|
|
|
e = e.parentNode;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-01-30 18:35:37 +00:00
|
|
|
function openLinkInTabOrWindow(event) {
|
|
|
|
event.preventDefault();
|
2015-03-03 23:04:27 +00:00
|
|
|
if (prefs.getPref('openEditInWindow', false)) {
|
2015-03-11 00:00:44 +00:00
|
|
|
var options = {url: event.target.href}
|
|
|
|
var wp = prefs.getPref('windowPosition', {});
|
|
|
|
for (var k in wp) options[k] = wp[k];
|
|
|
|
chrome.windows.create(options);
|
2015-01-30 18:35:37 +00:00
|
|
|
} else {
|
2015-03-04 02:06:43 +00:00
|
|
|
openLink(event);
|
2015-01-30 18:35:37 +00:00
|
|
|
}
|
2015-05-10 16:46:09 +00:00
|
|
|
close();
|
2015-01-30 18:35:37 +00:00
|
|
|
}
|
|
|
|
|
2012-08-20 01:14:33 +00:00
|
|
|
function openLink(event) {
|
2013-07-04 22:12:16 +00:00
|
|
|
event.preventDefault();
|
2015-03-13 22:45:38 +00:00
|
|
|
chrome.extension.sendMessage({method: "openURL", url: event.target.href});
|
|
|
|
close();
|
2012-08-20 01:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleUpdate(style) {
|
2015-03-24 14:07:59 +00:00
|
|
|
var styleElement = installed.querySelector("[style-id='" + style.id + "']");
|
|
|
|
if (styleElement) {
|
|
|
|
installed.replaceChild(createStyleElement(style), styleElement);
|
2015-05-08 00:48:09 +00:00
|
|
|
} else {
|
2015-05-21 09:34:44 +00:00
|
|
|
getActiveTabRealURL(function(url) {
|
|
|
|
if (chrome.extension.getBackgroundPage().getApplicableSections(style, url).length) {
|
2015-05-08 00:48:09 +00:00
|
|
|
// a new style for the current url is installed
|
|
|
|
document.getElementById("unavailable").style.display = "none";
|
|
|
|
installed.appendChild(createStyleElement(style));
|
|
|
|
}
|
|
|
|
});
|
2015-03-24 14:07:59 +00:00
|
|
|
}
|
2012-08-20 01:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleDelete(id) {
|
2015-03-24 14:07:59 +00:00
|
|
|
var styleElement = installed.querySelector("[style-id='" + id + "']");
|
|
|
|
if (styleElement) {
|
|
|
|
installed.removeChild(styleElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
|
|
|
|
if (request.method == "updatePopup") {
|
|
|
|
switch (request.reason) {
|
2015-05-08 00:48:09 +00:00
|
|
|
case "styleAdded":
|
2015-03-24 14:07:59 +00:00
|
|
|
case "styleUpdated":
|
|
|
|
handleUpdate(request.style);
|
|
|
|
break;
|
|
|
|
case "styleDeleted":
|
|
|
|
handleDelete(request.id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-01-30 17:28:05 +00:00
|
|
|
["find-styles-link", "open-manage-link"].forEach(function(id) {
|
|
|
|
document.getElementById(id).addEventListener("click", openLink, false);
|
|
|
|
});
|
2015-03-17 18:03:20 +00:00
|
|
|
|
|
|
|
document.getElementById("disableAll").addEventListener("change", function(event) {
|
2015-10-05 11:12:24 +00:00
|
|
|
installed.classList.toggle("disabled", prefs.getPref("disableAll"));
|
2015-03-17 18:03:20 +00:00
|
|
|
});
|
2015-10-05 11:12:24 +00:00
|
|
|
loadPrefs(["disableAll"]);
|