Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: devtools-panel.js

Issue 5646124035604480: Issue 154 - Added UI for devtools panel on Chrome (Closed)
Patch Set: Addressed comments Created Feb. 4, 2015, 3:35 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « devtools-panel.html ('k') | ext/devtools.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH
4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 function generateFilter(request)
19 {
20 var filter = request.url.replace(/^[\w\-]+:\/+(?:www\.)?/, "||");
21
22 if (request.type == "POPUP")
23 {
24 filter += "$popup";
25
26 if (request.url == "about:blank")
27 filter += ",domain=" + request.docDomain;
28 }
29
30 return filter;
31 }
32
33 function createActionButton(action, label, filter)
34 {
35 var button = document.createElement("span");
36
37 button.textContent = label;
38 button.classList.add("action");
39
40 button.addEventListener("click", function()
41 {
42 ext.backgroundPage.sendMessage({
43 type: "filters." + action,
44 filter: filter
45 });
46 });
47
48 return button;
49 }
50
51 function createRecord(request, filter, template)
52 {
53 var row = document.importNode(template, true);
54
55 row.querySelector(".domain").textContent = request.docDomain;
56 row.querySelector(".type" ).textContent = request.type;
57
58 var urlElement = row.querySelector(".url");
59 var actionWrapper = row.querySelector(".action-wrapper");
60
61 if (request.url)
62 {
63 urlElement.textContent = request.url;
64
65 if ("openResource" in ext.devtools.panels && request.type != "POPUP")
66 {
67 urlElement.classList.add("resourceLink");
68 urlElement.addEventListener("click", function()
69 {
70 ext.devtools.panels.openResource(request.url);
71 });
72 }
73 }
74
75 if (filter)
76 {
77 var filterElement = row.querySelector(".filter");
78 var originElement = row.querySelector(".origin");
79
80 filterElement.textContent = filter.text;
81 row.dataset.state = filter.whitelisted ? "whitelisted" : "blocked";
82
83 if (filter.subscription)
84 originElement.textContent = filter.subscription;
85 else
86 {
87 if (filter.userDefined)
88 originElement.textContent = "user-defined";
89 else
90 originElement.textContent = "unnamed subscription";
91
92 originElement.classList.add("unnamed");
93 }
94
95 if (!filter.whitelisted && request.type != "ELEMHIDE")
96 actionWrapper.appendChild(createActionButton("add", "Add exception", "@@" + generateFilter(request)));
97
98 if (filter.userDefined)
99 actionWrapper.appendChild(createActionButton("remove", "Remove rule", filt er.text));
100 }
101 else
102 actionWrapper.appendChild(createActionButton("add", "Block item", generateFi lter(request)));
103
104 return row;
105 }
106
107 document.addEventListener("DOMContentLoaded", function()
108 {
109 var container = document.getElementById("items");
110 var table = container.querySelector("tbody");
111 var template = document.querySelector("template").content.firstElementChild;
112
113 document.getElementById("reload").addEventListener("click", function()
114 {
115 ext.devtools.inspectedWindow.reload();
116 });
117
118 document.getElementById("filter-state").addEventListener("change", function(ev ent)
119 {
120 container.dataset.filterState = event.target.value;
121 });
122
123 document.getElementById("filter-type").addEventListener("change", function(eve nt)
124 {
125 container.dataset.filterType = event.target.value;
126 });
127
128 ext.onMessage.addListener(function(message)
129 {
130 switch (message.type)
131 {
132 case "add-record":
133 table.appendChild(createRecord(message.request, message.filter, template ));
134 break;
135
136 case "update-record":
137 var oldRow = table.getElementsByTagName("tr")[message.index];
138 var newRow = createRecord(message.request, message.filter, template);
139 oldRow.parentNode.replaceChild(newRow, oldRow);
140 newRow.classList.add("changed");
141 container.classList.add("has-changes");
142 break;
143
144 case "remove-record":
145 var row = table.getElementsByTagName("tr")[message.index];
146 row.parentNode.removeChild(row);
147 container.classList.add("has-changes");
148 break;
149
150 case "reset":
151 table.innerHTML = "";
152 container.classList.remove("has-changes");
153 break;
154 }
155 });
156
157 ext.backgroundPage.sendMessage({
158 type: "devtools.init",
159 inspectedTabId: ext.devtools.inspectedWindow.tabId
160 });
161 });
OLDNEW
« no previous file with comments | « devtools-panel.html ('k') | ext/devtools.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld