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: Change whitelisting calls to use messaging Created Sept. 21, 2017, 7:54 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
20 const {require} = ext.backgroundPage.getWindow();
21 19
22 let tab = null; 20 let tab = null;
Manish Jethani 2017/09/21 08:02:39 So now it's just a lightweight tab object and crea
23 21
24 function getPref(key, callback) 22 function getPref(key, callback)
Manish Jethani 2017/09/21 08:06:25 By the way, since we moved getPref and togglePref
Sebastian Noack 2017/09/21 22:57:17 Where accessing globals from other scripts cannot
Manish Jethani 2017/09/24 22:37:27 Done.
25 { 23 {
26 chrome.runtime.sendMessage({type: "prefs.get", key}, callback); 24 chrome.runtime.sendMessage({type: "prefs.get", key}, callback);
27 } 25 }
28 26
29 function togglePref(key, callback) 27 function togglePref(key, callback)
30 { 28 {
31 chrome.runtime.sendMessage({type: "prefs.toggle", key}, callback); 29 chrome.runtime.sendMessage({type: "prefs.toggle", key}, callback);
32 } 30 }
33 31
34 function isPageWhitelisted(callback) 32 function isPageWhitelisted(callback)
Manish Jethani 2017/09/21 08:02:39 I wonder if we should always use promises here.
35 { 33 {
36 chrome.runtime.sendMessage({type: "filters.isWhitelisted", tab}, callback); 34 chrome.runtime.sendMessage({type: "filters.isWhitelisted", tab}, callback);
37 } 35 }
38 36
39 function whenPageReady() 37 function whenPageReady()
40 { 38 {
41 let pageId = tab.id;
Sebastian Noack 2017/09/21 22:57:18 Why do we have to chache tab.id into a local varia
Manish Jethani 2017/09/24 22:37:27 It was not necessary, removed.
42
43 return new Promise(resolve => 39 return new Promise(resolve =>
44 { 40 {
45 let handlePageReady = () => 41 function onMessage(message, sender)
Sebastian Noack 2017/09/21 22:57:17 I'm not sure if it's worth to move these two trivi
Manish Jethani 2017/09/24 22:37:26 Done.
46 {
47 ext.onMessage.removeListener(onMessage);
48 resolve();
49 };
50
51 let onMessage = (message, sender) =>
52 { 42 {
53 if (message.type == "composer.ready" && sender.page && 43 if (message.type == "composer.ready" && sender.page &&
54 sender.page.id == pageId) 44 sender.page.id == tab.id)
55 { 45 {
56 handlePageReady(); 46 ext.onMessage.removeListener(onMessage);
47 resolve();
57 } 48 }
58 }; 49 }
59 50
60 ext.onMessage.addListener(onMessage); 51 ext.onMessage.addListener(onMessage);
61 52
62 chrome.runtime.sendMessage({type: "composer.isPageReady", pageId}, ready => 53 chrome.runtime.sendMessage({
54 type: "composer.isPageReady",
55 pageId: tab.id
56 },
57 ready =>
63 { 58 {
64 if (ready) 59 if (ready)
65 handlePageReady(); 60 {
61 ext.onMessage.removeListener(onMessage);
62 resolve();
63 }
66 }); 64 });
67 }); 65 });
68 } 66 }
69 67
70 function onLoad() 68 function onLoad()
71 { 69 {
72 chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs => 70 chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs =>
73 { 71 {
74 tab = tabs[0] && {id: tabs[0].id, url: tabs[0].url}; 72 if (tabs.length > 0)
Manish Jethani 2017/09/21 08:02:37 I don't like to hold on to an object passed in by
Sebastian Noack 2017/09/21 22:57:18 Alternatively, you could use two global variables,
Manish Jethani 2017/09/24 22:37:27 We could do that, but we're using the tab object i
Sebastian Noack 2017/09/25 17:50:52 I see, I don't have a strong opinion then.
73 tab = {id: tabs[0].id, url: tabs[0].url};
75 74
76 let url = tab && tab.url && new URL(tab.url); 75 let urlProtocol = tab && tab.url && new URL(tab.url).protocol;
77 76
78 // Mark page as 'local' to hide non-relevant elements 77 // Mark page as 'local' to hide non-relevant elements
79 if (!url || (url.protocol != "http:" && url.protocol != "https:")) 78 if (urlProtocol != "http:" && urlProtocol != "https:")
80 { 79 {
81 document.body.classList.add("local"); 80 document.body.classList.add("local");
82 document.body.classList.remove("nohtml"); 81 document.body.classList.remove("nohtml");
83 } 82 }
84 else 83 else
85 { 84 {
86 whenPageReady().then(() => 85 whenPageReady().then(() =>
87 { 86 {
88 document.body.classList.remove("nohtml"); 87 document.body.classList.remove("nohtml");
89 }); 88 });
(...skipping 26 matching lines...) Expand all
116 "click", toggleEnabled, false 115 "click", toggleEnabled, false
117 ); 116 );
118 document.getElementById("clickhide").addEventListener( 117 document.getElementById("clickhide").addEventListener(
119 "click", activateClickHide, false 118 "click", activateClickHide, false
120 ); 119 );
121 document.getElementById("clickhide-cancel").addEventListener( 120 document.getElementById("clickhide-cancel").addEventListener(
122 "click", cancelClickHide, false 121 "click", cancelClickHide, false
123 ); 122 );
124 document.getElementById("options").addEventListener("click", () => 123 document.getElementById("options").addEventListener("click", () =>
125 { 124 {
126 ext.showOptions(); 125 ext.showOptions(window.close);
127 }, false); 126 }, false);
128 127
129 // Set up collapsing of menu items 128 // Set up collapsing of menu items
130 for (let collapser of document.getElementsByClassName("collapse")) 129 for (let collapser of document.getElementsByClassName("collapse"))
131 { 130 {
132 collapser.addEventListener("click", toggleCollapse, false); 131 collapser.addEventListener("click", toggleCollapse, false);
133 getPref(collapser.dataset.option, value => 132 getPref(collapser.dataset.option, value =>
134 { 133 {
135 if (value) 134 if (value)
136 { 135 {
(...skipping 10 matching lines...) Expand all
147 let disabled = document.body.classList.toggle("disabled"); 146 let disabled = document.body.classList.toggle("disabled");
148 chrome.runtime.sendMessage({ 147 chrome.runtime.sendMessage({
149 type: disabled ? "filters.whitelist" : "filters.unwhitelist", 148 type: disabled ? "filters.whitelist" : "filters.unwhitelist",
150 tab 149 tab
151 }); 150 });
152 } 151 }
153 152
154 function activateClickHide() 153 function activateClickHide()
155 { 154 {
156 document.body.classList.add("clickhide-active"); 155 document.body.classList.add("clickhide-active");
157 chrome.tabs.sendMessage(tab.id, { 156 chrome.tabs.sendMessage(tab.id, {
Manish Jethani 2017/09/21 08:02:38 I forgot to account for this earlier. It needs to
158 type: "composer.content.startPickingElement" 157 type: "composer.content.startPickingElement"
159 }); 158 });
160 159
161 // 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
162 activateClickHide.timeout = window.setTimeout(ext.closePopup, 5000); 161 activateClickHide.timeout = window.setTimeout(window.close, 5000);
163 } 162 }
164 163
165 function cancelClickHide() 164 function cancelClickHide()
166 { 165 {
167 if (activateClickHide.timeout) 166 if (activateClickHide.timeout)
168 { 167 {
169 window.clearTimeout(activateClickHide.timeout); 168 window.clearTimeout(activateClickHide.timeout);
170 activateClickHide.timeout = null; 169 activateClickHide.timeout = null;
171 } 170 }
172 document.body.classList.remove("clickhide-active"); 171 document.body.classList.remove("clickhide-active");
173 chrome.tabs.sendMessage(tab.id, {type: "composer.content.finished"}); 172 chrome.tabs.sendMessage(tab.id, {type: "composer.content.finished"});
174 } 173 }
175 174
176 function toggleCollapse(event) 175 function toggleCollapse(event)
177 { 176 {
178 let collapser = event.currentTarget; 177 let collapser = event.currentTarget;
179 let collapsible = document.getElementById(collapser.dataset.collapsible); 178 let collapsible = document.getElementById(collapser.dataset.collapsible);
180 collapsible.classList.toggle("collapsed"); 179 collapsible.classList.toggle("collapsed");
181 togglePref(collapser.dataset.option); 180 togglePref(collapser.dataset.option);
182 } 181 }
183 182
184 document.addEventListener("DOMContentLoaded", onLoad, false); 183 document.addEventListener("DOMContentLoaded", onLoad, false);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld