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

Delta Between Two Patch Sets: popup.js

Issue 29338491: Issue 3823 - Split up message responder code (Closed)
Left Patch Set: Don't check for instance of Promise, avoid creating unnecessary arays Created March 21, 2016, 1:25 p.m.
Right Patch Set: Moved get-domain-enabled-state to whitelisting module Created March 22, 2016, 8:22 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 | « metadata.common ('k') | safari/include.youtube.js » ('j') | no next file with change/comment »
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-2016 Eyeo GmbH 3 * Copyright (C) 2006-2016 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 var backgroundPage = ext.backgroundPage.getWindow(); 18 var backgroundPage = ext.backgroundPage.getWindow();
19 var require = backgroundPage.require; 19 var require = backgroundPage.require;
20 20
21 var Filter = require("filterClasses").Filter; 21 var Filter = require("filterClasses").Filter;
22 var FilterStorage = require("filterStorage").FilterStorage; 22 var FilterStorage = require("filterStorage").FilterStorage;
23 var Prefs = require("prefs").Prefs; 23 var Prefs = require("prefs").Prefs;
24 var checkWhitelisted = require("whitelisting").checkWhitelisted; 24 var checkWhitelisted = require("whitelisting").checkWhitelisted;
25 var getDecodedHostname = require("url").getDecodedHostname; 25 var getDecodedHostname = require("url").getDecodedHostname;
26 var port = require("messaging").port;
27 26
28 var page = null; 27 var page = null;
29 28
30 function onLoad() 29 function onLoad()
31 { 30 {
32 ext.pages.query({active: true, lastFocusedWindow: true}, function(pages) 31 ext.pages.query({active: true, lastFocusedWindow: true}, function(pages)
33 { 32 {
34 page = pages[0]; 33 page = pages[0];
35 34
36 // Mark page as 'local' or 'nohtml' to hide non-relevant elements 35 // Mark page as 'local' or 'nohtml' to hide non-relevant elements
37 if (!page || (page.url.protocol != "http:" && 36 if (!page || (page.url.protocol != "http:" &&
38 page.url.protocol != "https:")) 37 page.url.protocol != "https:"))
39 document.body.classList.add("local"); 38 document.body.classList.add("local");
40 else if (!backgroundPage.htmlPages.has(page)) 39 else if (!backgroundPage.htmlPages.has(page))
40 {
41 document.body.classList.add("nohtml"); 41 document.body.classList.add("nohtml");
42 require("messaging").getPort(window).on(
43 "composer.ready", function(message, sender)
44 {
45 if (sender.page.id == page.id)
46 document.body.classList.remove("nohtml");
47 }
48 );
49 }
42 50
43 // Ask content script whether clickhide is active. If so, show cancel button . 51 // Ask content script whether clickhide is active. If so, show cancel button .
44 // If that isn't the case, ask background.html whether it has cached filters . If so, 52 // If that isn't the case, ask background.html whether it has cached filters . If so,
45 // ask the user whether she wants those filters. 53 // ask the user whether she wants those filters.
46 // Otherwise, we are in default state. 54 // Otherwise, we are in default state.
47 if (page) 55 if (page)
48 { 56 {
49 if (checkWhitelisted(page)) 57 if (checkWhitelisted(page))
50 document.body.classList.add("disabled"); 58 document.body.classList.add("disabled");
51 59
52 page.sendMessage({type: "composer.content.getState"}, function(response) 60 page.sendMessage({type: "composer.content.getState"}, function(response)
53 { 61 {
54 if (response && response.active) 62 if (response && response.active)
55 document.body.classList.add("clickhide-active"); 63 document.body.classList.add("clickhide-active");
56 }); 64 });
57 } 65 }
58 }); 66 });
59 67
60 // Attach event listeners
61 port.on("composer.ready", onComposerReady);
62 document.getElementById("enabled").addEventListener("click", toggleEnabled, fa lse); 68 document.getElementById("enabled").addEventListener("click", toggleEnabled, fa lse);
63 document.getElementById("clickhide").addEventListener("click", activateClickHi de, false); 69 document.getElementById("clickhide").addEventListener("click", activateClickHi de, false);
64 document.getElementById("clickhide-cancel").addEventListener("click", cancelCl ickHide, false); 70 document.getElementById("clickhide-cancel").addEventListener("click", cancelCl ickHide, false);
65 document.getElementById("options").addEventListener("click", function() 71 document.getElementById("options").addEventListener("click", function()
66 { 72 {
67 ext.showOptions(); 73 ext.showOptions();
68 }, false); 74 }, false);
69 75
70 // Set up collapsing of menu items 76 // Set up collapsing of menu items
71 var collapsers = document.getElementsByClassName("collapse"); 77 var collapsers = document.getElementsByClassName("collapse");
72 for (var i = 0; i < collapsers.length; i++) 78 for (var i = 0; i < collapsers.length; i++)
73 { 79 {
74 var collapser = collapsers[i]; 80 var collapser = collapsers[i];
75 collapser.addEventListener("click", toggleCollapse, false); 81 collapser.addEventListener("click", toggleCollapse, false);
76 if (!Prefs[collapser.dataset.option]) 82 if (!Prefs[collapser.dataset.option])
77 document.getElementById(collapser.dataset.collapsable).classList.add("coll apsed"); 83 document.getElementById(collapser.dataset.collapsable).classList.add("coll apsed");
78 } 84 }
79 }
80
81 function onUnload()
82 {
83 port.off("composer.ready", onComposerReady);
84 }
85
86 function onComposerReady(message, sender)
87 {
88 if (sender.page.id == page.id)
89 document.body.classList.remove("nohtml");
90 } 85 }
91 86
92 function toggleEnabled() 87 function toggleEnabled()
93 { 88 {
94 var disabled = document.body.classList.toggle("disabled"); 89 var disabled = document.body.classList.toggle("disabled");
95 if (disabled) 90 if (disabled)
96 { 91 {
97 var host = getDecodedHostname(page.url).replace(/^www\./, ""); 92 var host = getDecodedHostname(page.url).replace(/^www\./, "");
98 var filter = Filter.fromText("@@||" + host + "^$document"); 93 var filter = Filter.fromText("@@||" + host + "^$document");
99 if (filter.subscriptions.length && filter.disabled) 94 if (filter.subscriptions.length && filter.disabled)
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 } 134 }
140 135
141 function toggleCollapse(event) 136 function toggleCollapse(event)
142 { 137 {
143 var collapser = event.currentTarget; 138 var collapser = event.currentTarget;
144 Prefs[collapser.dataset.option] = !Prefs[collapser.dataset.option]; 139 Prefs[collapser.dataset.option] = !Prefs[collapser.dataset.option];
145 collapser.parentNode.classList.toggle("collapsed"); 140 collapser.parentNode.classList.toggle("collapsed");
146 } 141 }
147 142
148 document.addEventListener("DOMContentLoaded", onLoad, false); 143 document.addEventListener("DOMContentLoaded", onLoad, false);
149 window.addEventListener("unload", onUnload, false);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld