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

Delta Between Two Patch Sets: lib/notificationHelper.js

Issue 29334223: Issue 3532 - Generate animation images at runtime (Closed)
Left Patch Set: Created Jan. 21, 2016, 5:35 p.m.
Right Patch Set: Addressed final nits Created Jan. 26, 2016, 10:57 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « lib/icon.js ('k') | metadata.chrome » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 activeNotification.onClicked(); 145 activeNotification.onClicked();
146 break; 146 break;
147 } 147 }
148 } 148 }
149 149
150 function notificationClosed() 150 function notificationClosed()
151 { 151 {
152 activeNotification = null; 152 activeNotification = null;
153 } 153 }
154 154
155 function imgToBase64(url, callback)
156 {
157 let canvas = document.createElement("canvas"),
158 ctx = canvas.getContext("2d"),
159 img = new Image;
160 img.src = url;
161 img.onload = function()
162 {
163 canvas.height = img.height;
164 canvas.width = img.width;
165 ctx.drawImage(img, 0, 0);
166 callback(canvas.toDataURL("image/png"));
167 canvas = null;
168 };
169 }
170
171 function initChromeNotifications() 155 function initChromeNotifications()
172 { 156 {
173 // Chrome hides notifications in notification center when clicked so we need t o clear them 157 // Chrome hides notifications in notification center when clicked so we need t o clear them
174 function clearActiveNotification(notificationId) 158 function clearActiveNotification(notificationId)
175 { 159 {
176 if (activeNotification && activeNotification.type != "question" && !("links" in activeNotification)) 160 if (activeNotification && activeNotification.type != "question" && !("links" in activeNotification))
177 return; 161 return;
178 162
179 chrome.notifications.clear(notificationId, function(wasCleared) 163 chrome.notifications.clear(notificationId, function(wasCleared)
180 { 164 {
(...skipping 21 matching lines...) Expand all
202 { 186 {
203 let texts = NotificationStorage.getLocalizedTexts(notification); 187 let texts = NotificationStorage.getLocalizedTexts(notification);
204 let title = texts.title || ""; 188 let title = texts.title || "";
205 let message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : ""; 189 let message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : "";
206 let iconUrl = ext.getURL("icons/detailed/abp-128.png"); 190 let iconUrl = ext.getURL("icons/detailed/abp-128.png");
207 let linkCount = (activeNotification.links || []).length; 191 let linkCount = (activeNotification.links || []).length;
208 192
209 if (canUseChromeNotifications) 193 if (canUseChromeNotifications)
210 { 194 {
211 activeButtons = getNotificationButtons(activeNotification.type, texts.mess age); 195 activeButtons = getNotificationButtons(activeNotification.type, texts.mess age);
212 let opts = { 196 chrome.notifications.create("", {
213 type: "basic", 197 type: "basic",
214 title: title, 198 title: title,
199 iconUrl: iconUrl,
215 message: message, 200 message: message,
216 buttons: activeButtons.map(button => ({title: button.title})), 201 buttons: activeButtons.map(button => ({title: button.title})),
217 priority: 2 // We use the highest priority to prevent the notification f rom closing automatically 202 priority: 2 // We use the highest priority to prevent the notification f rom closing automatically
218 };
219
220 imgToBase64(iconUrl, function(iconData)
221 {
222 opts.iconUrl = iconData;
223 chrome.notifications.create("", opts, function() {});
224 }); 203 });
225 } 204 }
226 else if ("Notification" in window && activeNotification.type != "question") 205 else if ("Notification" in window && activeNotification.type != "question")
227 { 206 {
228 if (linkCount > 0) 207 if (linkCount > 0)
229 message += " " + ext.i18n.getMessage("notification_without_buttons"); 208 message += " " + ext.i18n.getMessage("notification_without_buttons");
230 209
231 imgToBase64(iconUrl, function(iconData) 210 let notification = new Notification(
232 { 211 title,
233 let notification = new Notification( 212 {
234 title, 213 lang: Utils.appLocale,
235 { 214 dir: ext.i18n.getMessage("@@bidi_dir"),
236 lang: Utils.appLocale, 215 body: message,
237 dir: ext.i18n.getMessage("@@bidi_dir"), 216 icon: iconUrl
238 body: message, 217 }
239 icon: iconData 218 );
240 } 219
241 ); 220 notification.addEventListener("click", openNotificationLinks);
242 221 notification.addEventListener("close", notificationClosed);
243 notification.addEventListener("click", openNotificationLinks);
244 notification.addEventListener("close", notificationClosed);
245 });
246 } 222 }
247 else 223 else
248 { 224 {
249 let message = title + "\n" + message; 225 let message = title + "\n" + message;
250 if (linkCount > 0) 226 if (linkCount > 0)
251 message += "\n\n" + ext.i18n.getMessage("notification_with_buttons"); 227 message += "\n\n" + ext.i18n.getMessage("notification_with_buttons");
252 228
253 let approved = confirm(message); 229 let approved = confirm(message);
254 if (activeNotification.type == "question") 230 if (activeNotification.type == "question")
255 notificationButtonClick(approved ? 0 : 1); 231 notificationButtonClick(approved ? 0 : 1);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 * @param {string} notificationType 275 * @param {string} notificationType
300 * @return {boolean} 276 * @return {boolean}
301 */ 277 */
302 exports.shouldDisplay = function(method, notificationType) 278 exports.shouldDisplay = function(method, notificationType)
303 { 279 {
304 let methods = displayMethods[notificationType] || defaultDisplayMethods; 280 let methods = displayMethods[notificationType] || defaultDisplayMethods;
305 return methods.indexOf(method) > -1; 281 return methods.indexOf(method) > -1;
306 }; 282 };
307 283
308 NotificationStorage.addShowListener(showNotification); 284 NotificationStorage.addShowListener(showNotification);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld