Left: | ||
Right: |
OLD | NEW |
---|---|
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 const numberOfFrames = 10; | 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, | |
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]; | |
25 const numberOfFrames = frameOpacities.length; | |
26 const safariPlatform = require("info").platform == "safari"; | |
27 | |
28 let stopAnimation = null; | |
29 let animationPlaying = false; | |
22 let whitelistedState = new ext.PageMap(); | 30 let whitelistedState = new ext.PageMap(); |
23 let notificationType = null; | |
24 let animationInterval = null; | |
25 let animationStep = 0; | |
26 | 31 |
27 function getIconPath(whitelisted) | 32 let loadImage = |
33 /** | |
34 * Loads an image, returning a promise | |
Sebastian Noack
2016/01/26 16:12:37
Nit: The return value is already doumented below.
kzar
2016/01/26 17:10:54
Acknowledged.
| |
35 * | |
36 * @param {string} url URL string of the image to load | |
37 * @return {Promise} | |
38 */ | |
39 exports.loadImage = function(url) | |
28 { | 40 { |
29 let filename = "icons/abp-$size"; | 41 return new Promise((resolve, reject) => { |
42 let image = new Image(); | |
43 image.src = url; | |
44 image.addEventListener("load", () => | |
45 { | |
46 resolve(image); | |
47 }); | |
48 image.addEventListener("error", () => { | |
49 reject("Failed to load image " + url); | |
50 }); | |
51 }); | |
52 }; | |
30 | 53 |
31 // If the current page is whitelisted, pick an icon that indicates that | 54 function setIcon(page, notificationType, opacity, frames) |
32 // Adblock Plus is disabled, however not when the notification icon has | 55 { |
33 // full opacity, or on Safari where icons are genrally grayscale-only. | 56 opacity = opacity || 0; |
34 if (whitelisted && animationStep < numberOfFrames && require("info").platform != "safari") | 57 let greyed = whitelistedState.get(page) && !safariPlatform && true || false; |
35 filename += "-whitelisted"; | |
36 | 58 |
37 // If the icon is currently animating to indicate a pending notification, | 59 if (!notificationType || !frames) |
38 // pick the icon for the corresponing notification type and animation frame. | |
39 if (notificationType && animationStep > 0) | |
40 { | 60 { |
41 filename += "-notification-" + notificationType; | 61 if (notificationType && opacity > 0.5) |
62 page.browserAction.setIcon("icons/abp-$size-notification-" | |
63 + notificationType + ".png"); | |
64 else | |
65 page.browserAction.setIcon("icons/abp-$size" + | |
66 (greyed ? "-whitelisted" : "") + ".png"); | |
67 } | |
68 else | |
69 { | |
70 chrome.browserAction.setIcon({ | |
71 tabId: page._id, | |
72 imageData: frames["" + opacity + greyed] | |
73 }); | |
74 } | |
75 } | |
42 | 76 |
43 if (animationStep < numberOfFrames) | 77 function renderFrames(notificationType) |
44 filename += "-" + animationStep; | 78 { |
79 if (safariPlatform) | |
80 return Promise.resolve(null); | |
81 | |
82 return Promise.all([ | |
83 loadImage("icons/abp-19.png"), | |
84 loadImage("icons/abp-19-whitelisted.png"), | |
85 loadImage("icons/abp-19-notification-" + notificationType + ".png"), | |
86 loadImage("icons/abp-38.png"), | |
87 loadImage("icons/abp-38-whitelisted.png"), | |
88 loadImage("icons/abp-38-notification-" + notificationType + ".png"), | |
89 ]).then(images => | |
90 { | |
91 let images = { | |
92 19: { base: [images[0], images[1]], overlay: images[2] }, | |
93 38: { base: [images[3], images[4]], overlay: images[5] } | |
94 }; | |
95 | |
96 let frames = {}; | |
97 let canvas = document.createElement("canvas"); | |
98 let context = canvas.getContext("2d"); | |
99 | |
100 for (let size of [19, 38]) | |
101 { | |
102 canvas.width = size; | |
103 canvas.height = size; | |
104 for (let whitelisted of [false, true]) | |
105 { | |
106 for (let opacity of [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1]) | |
107 { | |
108 context.globalAlpha = 1; | |
109 context.drawImage(images[size]["base"][whitelisted | 0], 0, 0); | |
110 context.globalAlpha = opacity; | |
111 context.drawImage(images[size]["overlay"], 0, 0); | |
112 let frameKey = "" + opacity + whitelisted; | |
113 if (!(frameKey in frames)) | |
Sebastian Noack
2016/01/26 16:12:37
If you iterate over the sizes in the inner loop yo
kzar
2016/01/26 17:10:54
Done.
| |
114 frames[frameKey] = {}; | |
115 frames[frameKey][size] = context.getImageData(0, 0, size, size); | |
116 } | |
117 } | |
118 } | |
119 | |
120 return frames; | |
121 }); | |
122 } | |
123 | |
124 function runAnimation(notificationType) | |
125 { | |
126 function playAnimation(frames) | |
127 { | |
128 animationPlaying = true; | |
129 let animationStep = 0; | |
130 ext.pages.query({active: true}, pages => | |
131 { | |
132 function appendActivePage(page) | |
133 { | |
134 pages.push(page); | |
135 } | |
136 ext.pages.onActivated.addListener(appendActivePage); | |
137 | |
138 frameInterval = setInterval(() => | |
139 { | |
140 let opacity = frameOpacities[animationStep++]; | |
141 pages.forEach(page => { | |
142 if (whitelistedState.has(page)) | |
143 setIcon(page, notificationType, opacity, frames); | |
144 }); | |
145 | |
146 if (animationStep > numberOfFrames) | |
147 { | |
148 animationStep = 0; | |
149 clearInterval(frameInterval); | |
150 animationPlaying = false; | |
151 ext.pages.onActivated.removeListener(appendActivePage); | |
152 } | |
153 }, 100); | |
154 }); | |
45 } | 155 } |
46 | 156 |
47 return filename + ".png"; | 157 renderFrames(notificationType).then(frames => |
48 } | |
49 | |
50 function setIcon(page) | |
51 { | |
52 page.browserAction.setIcon(getIconPath(whitelistedState.get(page))); | |
53 } | |
54 | |
55 function runAnimation() | |
56 { | |
57 return setInterval(function() | |
58 { | 158 { |
59 ext.pages.query({active: true}, function(pages) | 159 playAnimation(frames); |
160 let animationInterval = setInterval(() => { playAnimation(frames); }, | |
161 10000); | |
162 return () => | |
60 { | 163 { |
61 let fadeInInterval = setInterval(function() | 164 clearInterval(frameInterval); |
62 { | 165 clearInterval(animationInterval); |
63 animationStep++; | 166 animationPlaying = false; |
64 pages.forEach(setIcon); | 167 }; |
65 | 168 }); |
66 if (animationStep < numberOfFrames) | |
67 return; | |
68 | |
69 setTimeout(function() | |
70 { | |
71 let fadeOutInterval = setInterval(function() | |
72 { | |
73 animationStep--; | |
74 pages.forEach(setIcon); | |
75 | |
76 if (animationStep > 0) | |
77 return; | |
78 | |
79 clearInterval(fadeOutInterval); | |
80 }, 100); | |
81 },1000); | |
82 | |
83 clearInterval(fadeInInterval); | |
84 }, 100); | |
85 }); | |
86 }, 10000); | |
87 } | 169 } |
88 | 170 |
89 /** | 171 /** |
90 * Set the browser action icon for the given page, indicating whether | 172 * Set the browser action icon for the given page, indicating whether |
91 * adblocking is active there, and considering the icon animation. | 173 * adblocking is active there, and considering the icon animation. |
92 * | 174 * |
93 * @param {Page} page The page to set the browser action icon for | 175 * @param {Page} page The page to set the browser action icon for |
94 * @param {Boolean} whitelisted Whether the page has been whitelisted | 176 * @param {Boolean} whitelisted Whether the page has been whitelisted |
95 */ | 177 */ |
96 exports.updateIcon = function(page, whitelisted) | 178 exports.updateIcon = function(page, whitelisted) |
97 { | 179 { |
98 page.browserAction.setIcon(getIconPath(whitelisted)); | |
99 whitelistedState.set(page, whitelisted); | 180 whitelistedState.set(page, whitelisted); |
181 if (!animationPlaying) | |
182 setIcon(page); | |
100 }; | 183 }; |
101 | 184 |
102 /** | 185 /** |
103 * 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. |
104 * | 187 * |
105 * @param {string} type The notification type (i.e: "information" or "critical" ) | 188 * @param {string} type The notification type (i.e: "information" or "critical" ) |
106 */ | 189 */ |
107 exports.startIconAnimation = function(type) | 190 exports.startIconAnimation = function(type) |
108 { | 191 { |
109 notificationType = type; | 192 stopAnimation && stopAnimation(); |
110 | 193 stopAnimation = runAnimation(type); |
111 if (animationInterval == null) | |
112 animationInterval = runAnimation(); | |
113 }; | 194 }; |
114 | 195 |
115 /** | 196 /** |
116 * Stops to animate the browser action icon. | 197 * Stops to animate the browser action icon. |
117 */ | 198 */ |
118 exports.stopIconAnimation = function() | 199 exports.stopIconAnimation = function() |
119 { | 200 { |
120 if (animationInterval != null) | 201 stopAnimation && stopAnimation(); |
121 { | |
122 clearInterval(animationInterval); | |
123 animationInterval = null; | |
124 } | |
125 | |
126 notificationType = null; | |
127 }; | 202 }; |
OLD | NEW |