Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 /** @module icon */ | 18 /** @module icon */ |
19 | 19 |
20 "use strict"; | 20 "use strict"; |
21 | 21 |
22 const frameOpacities = [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, | 22 const frameOpacities = [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, |
23 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, | 23 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, |
24 0.9, 0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2, 0.1, 0.0]; | 24 0.9, 0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2, 0.1, 0.0]; |
25 const numberOfFrames = frameOpacities.length; | 25 const numberOfFrames = frameOpacities.length; |
26 const safariPlatform = require("info").platform == "safari"; | 26 const safariPlatform = require("info").platform == "safari"; |
27 | 27 |
28 let stopAnimation = null; | 28 let frameInterval = null; |
29 let animationPlaying = false; | 29 let animationInterval = null; |
30 let whitelistedState = new ext.PageMap(); | 30 let whitelistedState = new ext.PageMap(); |
31 | 31 |
32 let loadImageAsCanvas = | 32 function loadImage(url) |
33 /** | |
34 * Loads an image and draws it onto a canvas. | |
35 * | |
36 * @param {string} url URL string of the image to load | |
37 * @return {Promise} | |
38 */ | |
39 exports.loadImageAsCanvas = function(url) | |
40 { | 33 { |
41 return new Promise((resolve, reject) => { | 34 return new Promise((resolve, reject) => |
35 { | |
42 let image = new Image(); | 36 let image = new Image(); |
43 image.src = url; | 37 image.src = url; |
44 image.addEventListener("load", () => | 38 image.addEventListener("load", () => |
45 { | 39 { |
46 let canvas = document.createElement("canvas"); | 40 resolve(image); |
47 let context = canvas.getContext("2d"); | |
48 canvas.height = image.height; | |
Sebastian Noack
2016/01/25 15:44:45
With the new approach, we don't necessarily need a
kzar
2016/01/26 15:01:42
Good point about the canvas, Done. Not sure about
| |
49 canvas.width = image.width; | |
50 context.drawImage(image, 0, 0); | |
51 resolve(canvas); | |
52 }); | 41 }); |
53 image.addEventListener("error", () => { | 42 image.addEventListener("error", () => |
43 { | |
54 reject("Failed to load image " + url); | 44 reject("Failed to load image " + url); |
55 }); | 45 }); |
56 }); | 46 }); |
57 }; | 47 }; |
58 | 48 |
59 function setIcon(page, animationType, opacity, frames) | 49 function setIcon(page, notificationType, opacity, frames) |
60 { | 50 { |
61 opacity = opacity || 0; | 51 opacity = opacity || 0; |
62 let greyed = whitelistedState.get(page) && !safariPlatform && true || false; | 52 let whitelisted = !!whitelistedState.get(page) && !safariPlatform; |
Sebastian Noack
2016/01/25 15:44:43
Nit: Please don't add redundant boilerplate to cas
kzar
2016/01/26 15:01:41
Actually the value here is either null or the whit
Sebastian Noack
2016/01/26 16:12:36
I see. But how about:
let whitelisted = !!white
kzar
2016/01/26 17:35:10
Done.
| |
63 | 53 |
64 if (!animationType || !frames) | 54 if (!notificationType || !frames) |
65 { | 55 { |
66 if (animationType && opacity > 0.5) | 56 if (opacity > 0.5) |
67 page.browserAction.setIcon("icons/abp-$size-notification-" | 57 page.browserAction.setIcon("icons/abp-$size-notification-" |
68 + animationType + ".png"); | 58 + notificationType + ".png"); |
69 else | 59 else |
70 page.browserAction.setIcon("icons/abp-$size" + | 60 page.browserAction.setIcon("icons/abp-$size" + |
71 (greyed ? "-whitelisted" : "") + ".png"); | 61 (whitelisted ? "-whitelisted" : "") + ".png"); |
72 } | 62 } |
73 else | 63 else |
74 { | 64 { |
75 frames.then(frames => | 65 chrome.browserAction.setIcon({ |
76 { | 66 tabId: page._id, |
77 chrome.browserAction.setIcon({ | 67 imageData: frames["" + opacity + whitelisted] |
78 tabId: page._id, | |
79 imageData: {19: frames["" + opacity + greyed + 19], | |
80 38: frames["" + opacity + greyed + 38]} | |
81 }); | |
82 }); | 68 }); |
83 } | 69 } |
84 } | 70 } |
85 | 71 |
86 function renderFrames(animationType) | 72 function renderFrames(notificationType) |
87 { | 73 { |
74 if (safariPlatform) | |
75 return Promise.resolve(null); | |
76 | |
88 return Promise.all([ | 77 return Promise.all([ |
89 loadImageAsCanvas("icons/abp-19.png"), | 78 loadImage("icons/abp-19.png"), |
90 loadImageAsCanvas("icons/abp-19-whitelisted.png"), | 79 loadImage("icons/abp-19-whitelisted.png"), |
91 loadImageAsCanvas("icons/abp-19-notification-" + animationType + ".png"), | 80 loadImage("icons/abp-19-notification-" + notificationType + ".png"), |
92 loadImageAsCanvas("icons/abp-38.png"), | 81 loadImage("icons/abp-38.png"), |
93 loadImageAsCanvas("icons/abp-38-whitelisted.png"), | 82 loadImage("icons/abp-38-whitelisted.png"), |
94 loadImageAsCanvas("icons/abp-38-notification-" + animationType + ".png"), | 83 loadImage("icons/abp-38-notification-" + notificationType + ".png"), |
95 ]).then(images => | 84 ]).then(images => |
96 { | 85 { |
97 let images = { | 86 let images = { |
98 19: { base: [images[0], images[1]], overlay: images[2] }, | 87 19: { base: [images[0], images[1]], overlay: images[2] }, |
Sebastian Noack
2016/01/25 15:44:44
While using a structured object here, how about us
kzar
2016/01/26 15:01:40
Could do but then the logic later wouldn't be as e
Sebastian Noack
2016/01/26 16:12:35
Fair enough.
| |
99 38: { base: [images[3], images[4]], overlay: images[5] } | 88 38: { base: [images[3], images[4]], overlay: images[5] } |
100 }; | 89 }; |
101 | 90 |
102 let frames = {}; | 91 let frames = {}; |
103 let canvas = document.createElement("canvas"); | 92 let canvas = document.createElement("canvas"); |
104 let context = canvas.getContext("2d"); | 93 let context = canvas.getContext("2d"); |
105 | 94 |
106 for (let size of [19, 38]) | 95 for (let whitelisted of [false, true]) |
107 { | 96 { |
108 canvas.width = size; | 97 for (let i = 0, opacity = 0; i <= 10; opacity = ++i / 10) |
109 canvas.height = size; | |
110 for (let whitelisted of [false, true]) | |
111 { | 98 { |
112 for (let opacity of [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1]) | 99 let imageData = {}; |
Sebastian Noack
2016/01/25 15:44:44
I'd rather generate the opacity values rather than
kzar
2016/01/26 15:01:40
As would I but unfortunately that doesn't work. (T
Sebastian Noack
2016/01/26 16:12:36
Alright, damn floating point precision. But you co
kzar
2016/01/26 17:35:09
Yea, I thought about those options but in the end
Sebastian Noack
2016/01/26 18:10:34
Well, instead a custom unique() function, we shoul
kzar
2016/01/26 18:46:34
Fair enough, how about this?
| |
100 for (let size of [19, 38]) | |
113 { | 101 { |
102 canvas.width = size; | |
103 canvas.height = size; | |
114 context.globalAlpha = 1; | 104 context.globalAlpha = 1; |
115 context.drawImage(images[size]["base"][whitelisted | 0], 0, 0); | 105 context.drawImage(images[size]["base"][whitelisted | 0], 0, 0); |
116 context.globalAlpha = opacity; | 106 context.globalAlpha = opacity; |
117 context.drawImage(images[size]["overlay"], 0, 0); | 107 context.drawImage(images[size]["overlay"], 0, 0); |
118 frames["" + opacity + | 108 imageData[size] = context.getImageData(0, 0, size, size); |
Sebastian Noack
2016/01/25 15:44:44
Following data structure would be preferable:
f
kzar
2016/01/26 15:01:41
Good point, Done.
| |
119 whitelisted + size] = context.getImageData(0, 0, size, size); | |
120 } | 109 } |
110 frames["" + opacity + whitelisted] = imageData; | |
121 } | 111 } |
122 } | 112 } |
123 | 113 |
124 return frames; | 114 return frames; |
125 }); | 115 }); |
126 } | 116 } |
127 | 117 |
128 function runAnimation(animationType) | 118 function runAnimation(notificationType) |
Sebastian Noack
2016/01/25 15:44:45
Any reason you changed the semantic from notificat
kzar
2016/01/26 15:01:41
Done.
| |
129 { | 119 { |
130 let frames = !safariPlatform && renderFrames(animationType); | 120 function playAnimation(frames) |
Sebastian Noack
2016/01/25 15:44:44
I'd rather wait for the promise to be fulfilled be
kzar
2016/01/26 15:01:41
Good point, Done.
| |
131 let frameInterval; | |
132 | |
133 function playAnimation() | |
134 { | 121 { |
135 animationPlaying = true; | |
136 let animationStep = 0; | 122 let animationStep = 0; |
137 ext.pages.query({active: true}, pages => | 123 ext.pages.query({active: true}, pages => |
138 { | 124 { |
139 function appendActivePage(page) | 125 function appendActivePage(page) |
140 { | 126 { |
141 pages.push(page); | 127 pages.push(page); |
142 } | 128 } |
143 ext.pages.onActivated.addListener(appendActivePage); | 129 ext.pages.onActivated.addListener(appendActivePage); |
Sebastian Noack
2016/01/25 15:44:43
It seems that you only implemented ext.pages.onAct
kzar
2016/01/26 15:01:42
I have implemented it for Safari too, check safari
| |
144 | 130 |
145 frameInterval = setInterval(() => | 131 frameInterval = setInterval(() => |
146 { | 132 { |
147 let opacity = frameOpacities[animationStep++]; | 133 let opacity = frameOpacities[animationStep++]; |
148 pages.forEach(page => { | 134 for (let page of pages) |
135 { | |
149 if (whitelistedState.has(page)) | 136 if (whitelistedState.has(page)) |
150 setIcon(page, animationType, opacity, frames); | 137 setIcon(page, notificationType, opacity, frames); |
151 }); | 138 }; |
152 | 139 |
153 if (animationStep > numberOfFrames) | 140 if (animationStep > numberOfFrames) |
154 { | 141 { |
155 animationStep = 0; | 142 animationStep = 0; |
156 clearInterval(frameInterval); | 143 clearInterval(frameInterval); |
157 animationPlaying = false; | 144 frameInterval = null; |
158 ext.pages.onActivated.removeListener(appendActivePage); | 145 ext.pages.onActivated.removeListener(appendActivePage); |
159 } | 146 } |
160 }, 100); | 147 }, 100); |
161 }); | 148 }); |
162 } | 149 } |
163 | 150 |
164 playAnimation(); | 151 renderFrames(notificationType).then(frames => |
165 let animationInterval = setInterval(playAnimation, 10000); | |
166 return () => | |
167 { | 152 { |
168 clearInterval(frameInterval); | 153 playAnimation(frames); |
Sebastian Noack
2016/01/25 15:44:43
I think the previous logic, using global variables
kzar
2016/01/26 15:01:42
I disagree there.
Sebastian Noack
2016/01/26 16:12:35
It's not that we return a function with different
kzar
2016/01/26 17:35:09
I just think that having as much of the animation
Sebastian Noack
2016/01/26 18:10:34
You don't have any less global state. But the glob
kzar
2016/01/26 18:46:34
Fair enough, Done.
| |
169 clearInterval(animationInterval); | 154 animationInterval = setInterval(() => { playAnimation(frames); }, 10000); |
170 animationPlaying = false; | 155 }); |
171 }; | |
172 } | 156 } |
173 | 157 |
174 /** | 158 /** |
175 * Set the browser action icon for the given page, indicating whether | 159 * Set the browser action icon for the given page, indicating whether |
176 * adblocking is active there, and considering the icon animation. | 160 * adblocking is active there, and considering the icon animation. |
177 * | 161 * |
178 * @param {Page} page The page to set the browser action icon for | 162 * @param {Page} page The page to set the browser action icon for |
179 * @param {Boolean} whitelisted Whether the page has been whitelisted | 163 * @param {Boolean} whitelisted Whether the page has been whitelisted |
180 */ | 164 */ |
181 exports.updateIcon = function(page, whitelisted) | 165 exports.updateIcon = function(page, whitelisted) |
182 { | 166 { |
183 whitelistedState.set(page, whitelisted); | 167 whitelistedState.set(page, whitelisted); |
184 if (!animationPlaying) | 168 if (frameInterval == null) |
185 setIcon(page); | 169 setIcon(page); |
170 }; | |
171 | |
172 let stopIconAnimation = | |
173 /** | |
174 * Stops to animate the browser action icon. | |
175 */ | |
176 exports.stopIconAnimation = function() | |
177 { | |
178 if (frameInterval != null) | |
179 clearInterval(frameInterval); | |
180 if (animationInterval != null) | |
181 clearInterval(animationInterval); | |
182 frameInterval = animationInterval = null; | |
186 }; | 183 }; |
187 | 184 |
188 /** | 185 /** |
189 * Starts to animate the browser action icon to indicate a pending notifcation. | 186 * Starts to animate the browser action icon to indicate a pending notifcation. |
190 * | 187 * |
191 * @param {string} type The notification type (i.e: "information" or "critical" ) | 188 * @param {string} type The notification type (i.e: "information" or "critical" ) |
192 */ | 189 */ |
193 exports.startIconAnimation = function(type) | 190 exports.startIconAnimation = function(type) |
194 { | 191 { |
195 stopAnimation && stopAnimation(); | 192 stopIconAnimation(); |
196 stopAnimation = runAnimation(type); | 193 runAnimation(type); |
197 }; | 194 }; |
198 | |
199 /** | |
200 * Stops to animate the browser action icon. | |
201 */ | |
202 exports.stopIconAnimation = function() | |
203 { | |
204 stopAnimation && stopAnimation(); | |
205 }; | |
LEFT | RIGHT |