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

Delta Between Two Patch Sets: popup.js

Issue 29532767: Issue 5593 - Use messaging in popup for prefs, whitelisting, and stats (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Left Patch Set: Simplify whenPageReady Created Sept. 21, 2017, 4:46 a.m.
Right Patch Set: Revert one more instance of ext.pages.open Created Sept. 27, 2017, 9:40 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « popup.html ('k') | skin/popup.css » ('j') | stats.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 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 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 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/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 "use strict"; 18 "use strict";
19 19
20 const {require} = ext.backgroundPage.getWindow(); 20 let tab = null;
21
22 const {Filter} = require("filterClasses");
23 const {FilterStorage} = require("filterStorage");
24 const {checkWhitelisted} = require("whitelisting");
25 const {getDecodedHostname} = require("url");
26
27 let page = null;
28
29 function createPageObject(tab)
30 {
31 if (!tab)
32 return null;
33
34 // Create a lightweight page object that resembles ext.Page, but with only
35 // an id and an optional url property.
36 let pageObject = {id: tab.id};
Manish Jethani 2017/09/21 04:54:00 We need to rename this to get rid of a lint error,
37
38 if (tab.url)
39 pageObject.url = new URL(tab.url);
40
41 return pageObject;
42 }
43 21
44 function getPref(key, callback) 22 function getPref(key, callback)
45 { 23 {
46 chrome.runtime.sendMessage({type: "prefs.get", key}, callback); 24 chrome.runtime.sendMessage({type: "prefs.get", key}, callback);
47 } 25 }
48 26
49 function togglePref(key, callback) 27 function togglePref(key, callback)
50 { 28 {
51 chrome.runtime.sendMessage({type: "prefs.toggle", key}, callback); 29 chrome.runtime.sendMessage({type: "prefs.toggle", key}, callback);
52 } 30 }
53 31
54 function whenPageReady(pageId) 32 function isPageWhitelisted(callback)
33 {
34 chrome.runtime.sendMessage({type: "filters.isWhitelisted", tab}, callback);
35 }
36
37 function whenPageReady()
55 { 38 {
56 return new Promise(resolve => 39 return new Promise(resolve =>
57 { 40 {
58 let handlePageReady = () => 41 function onMessage(message, sender)
59 {
60 ext.onMessage.removeListener(onMessage);
61 resolve();
62 };
63
64 let onMessage = (message, sender) =>
Manish Jethani 2017/09/21 04:54:00 I meant to ask, is it preferred to use "function f
Sebastian Noack 2017/09/21 22:57:17 I prefer named functions over arrow functions that
Manish Jethani 2017/09/24 22:37:24 Changed now.
65 { 42 {
66 if (message.type == "composer.ready" && sender.page && 43 if (message.type == "composer.ready" && sender.page &&
67 sender.page.id == pageId) 44 sender.page.id == tab.id)
68 { 45 {
69 handlePageReady(); 46 ext.onMessage.removeListener(onMessage);
47 resolve();
70 } 48 }
71 }; 49 }
72 50
73 ext.onMessage.addListener(onMessage); 51 ext.onMessage.addListener(onMessage);
74 52
75 chrome.runtime.sendMessage({type: "composer.isPageReady", pageId}, ready => 53 chrome.runtime.sendMessage({
54 type: "composer.isPageReady",
55 pageId: tab.id
56 },
57 ready =>
76 { 58 {
77 if (ready) 59 if (ready)
78 handlePageReady(); 60 {
61 ext.onMessage.removeListener(onMessage);
62 resolve();
63 }
79 }); 64 });
80 }); 65 });
81 } 66 }
82 67
83 function onLoad() 68 function onLoad()
84 { 69 {
85 chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs => 70 chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs =>
86 { 71 {
87 page = createPageObject(tabs[0]); 72 if (tabs.length > 0)
73 tab = {id: tabs[0].id, url: tabs[0].url};
74
75 let urlProtocol = tab && tab.url && new URL(tab.url).protocol;
88 76
89 // Mark page as 'local' to hide non-relevant elements 77 // Mark page as 'local' to hide non-relevant elements
90 if (!page || (page.url.protocol != "http:" && 78 if (urlProtocol != "http:" && urlProtocol != "https:")
91 page.url.protocol != "https:"))
92 { 79 {
93 document.body.classList.add("local"); 80 document.body.classList.add("local");
94 document.body.classList.remove("nohtml"); 81 document.body.classList.remove("nohtml");
95 } 82 }
96 else 83 else
97 { 84 {
98 whenPageReady(page.id).then(() => 85 whenPageReady().then(() =>
99 { 86 {
100 document.body.classList.remove("nohtml"); 87 document.body.classList.remove("nohtml");
101 }); 88 });
102 } 89 }
103 90
104 // Ask content script whether clickhide is active. If so, show 91 // Ask content script whether clickhide is active. If so, show
105 // cancel button. If that isn't the case, ask background.html 92 // cancel button. If that isn't the case, ask background.html
106 // whether it has cached filters. If so, ask the user whether she 93 // whether it has cached filters. If so, ask the user whether she
107 // wants those filters. Otherwise, we are in default state. 94 // wants those filters. Otherwise, we are in default state.
108 if (page) 95 if (tab)
109 { 96 {
110 if (checkWhitelisted(page)) 97 isPageWhitelisted(whitelisted =>
111 document.body.classList.add("disabled"); 98 {
99 if (whitelisted)
100 document.body.classList.add("disabled");
101 });
112 102
113 chrome.tabs.sendMessage(page.id, { 103 chrome.tabs.sendMessage(tab.id, {
114 type: "composer.content.getState" 104 type: "composer.content.getState"
115 }, 105 },
116 response => 106 response =>
117 { 107 {
118 if (response && response.active) 108 if (response && response.active)
119 document.body.classList.add("clickhide-active"); 109 document.body.classList.add("clickhide-active");
120 }); 110 });
121 } 111 }
122 }); 112 });
123 113
124 document.getElementById("enabled").addEventListener( 114 document.getElementById("enabled").addEventListener(
125 "click", toggleEnabled, false 115 "click", toggleEnabled, false
126 ); 116 );
127 document.getElementById("clickhide").addEventListener( 117 document.getElementById("clickhide").addEventListener(
128 "click", activateClickHide, false 118 "click", activateClickHide, false
129 ); 119 );
130 document.getElementById("clickhide-cancel").addEventListener( 120 document.getElementById("clickhide-cancel").addEventListener(
131 "click", cancelClickHide, false 121 "click", cancelClickHide, false
132 ); 122 );
133 document.getElementById("options").addEventListener("click", () => 123 document.getElementById("options").addEventListener("click", () =>
134 { 124 {
135 ext.showOptions(); 125 ext.showOptions(window.close);
136 }, false); 126 }, false);
137 127
138 // Set up collapsing of menu items 128 // Set up collapsing of menu items
139 for (let collapser of document.getElementsByClassName("collapse")) 129 for (let collapser of document.getElementsByClassName("collapse"))
140 { 130 {
141 collapser.addEventListener("click", toggleCollapse, false); 131 collapser.addEventListener("click", toggleCollapse, false);
142 getPref(collapser.dataset.option, value => 132 getPref(collapser.dataset.option, value =>
143 { 133 {
144 if (value) 134 if (value)
145 { 135 {
146 document.getElementById( 136 document.getElementById(
147 collapser.dataset.collapsible 137 collapser.dataset.collapsible
148 ).classList.remove("collapsed"); 138 ).classList.remove("collapsed");
149 } 139 }
150 }); 140 });
151 } 141 }
152 } 142 }
153 143
154 function toggleEnabled() 144 function toggleEnabled()
155 { 145 {
156 let disabled = document.body.classList.toggle("disabled"); 146 let disabled = document.body.classList.toggle("disabled");
157 if (disabled) 147 chrome.runtime.sendMessage({
158 { 148 type: disabled ? "filters.whitelist" : "filters.unwhitelist",
159 let host = getDecodedHostname(page.url).replace(/^www\./, ""); 149 tab
160 let filter = Filter.fromText("@@||" + host + "^$document"); 150 });
161 if (filter.subscriptions.length && filter.disabled)
162 filter.disabled = false;
163 else
164 {
165 filter.disabled = false;
166 FilterStorage.addFilter(filter);
167 }
168 }
169 else
170 {
171 // Remove any exception rules applying to this URL
172 let filter = checkWhitelisted(page);
173 while (filter)
174 {
175 FilterStorage.removeFilter(filter);
176 if (filter.subscriptions.length)
177 filter.disabled = true;
178 filter = checkWhitelisted(page);
179 }
180 }
181 } 151 }
182 152
183 function activateClickHide() 153 function activateClickHide()
184 { 154 {
185 document.body.classList.add("clickhide-active"); 155 document.body.classList.add("clickhide-active");
186 page.sendMessage({type: "composer.content.startPickingElement"}); 156 chrome.tabs.sendMessage(tab.id, {
157 type: "composer.content.startPickingElement"
158 });
187 159
188 // Close the popup after a few seconds, so user doesn't have to 160 // Close the popup after a few seconds, so user doesn't have to
189 activateClickHide.timeout = window.setTimeout(ext.closePopup, 5000); 161 activateClickHide.timeout = window.setTimeout(window.close, 5000);
190 } 162 }
191 163
192 function cancelClickHide() 164 function cancelClickHide()
193 { 165 {
194 if (activateClickHide.timeout) 166 if (activateClickHide.timeout)
195 { 167 {
196 window.clearTimeout(activateClickHide.timeout); 168 window.clearTimeout(activateClickHide.timeout);
197 activateClickHide.timeout = null; 169 activateClickHide.timeout = null;
198 } 170 }
199 document.body.classList.remove("clickhide-active"); 171 document.body.classList.remove("clickhide-active");
200 page.sendMessage({type: "composer.content.finished"}); 172 chrome.tabs.sendMessage(tab.id, {type: "composer.content.finished"});
201 } 173 }
202 174
203 function toggleCollapse(event) 175 function toggleCollapse(event)
204 { 176 {
205 let collapser = event.currentTarget; 177 let collapser = event.currentTarget;
206 let collapsible = document.getElementById(collapser.dataset.collapsible); 178 let collapsible = document.getElementById(collapser.dataset.collapsible);
207 collapsible.classList.toggle("collapsed"); 179 collapsible.classList.toggle("collapsed");
208 togglePref(collapser.dataset.option); 180 togglePref(collapser.dataset.option);
209 } 181 }
210 182
211 document.addEventListener("DOMContentLoaded", onLoad, false); 183 document.addEventListener("DOMContentLoaded", onLoad, false);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld