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

Side by Side Diff: background.js

Issue 6098518317989888: Fix: Notification popup is broken (Closed)
Patch Set: Some fixes in code Created Feb. 22, 2014, 4:52 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « _locales/en_US/messages.json ('k') | chrome/ext/background.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>, 2 * This file is part of Adblock Plus <http://adblockplus.org/>,
3 * Copyright (C) 2006-2013 Eyeo GmbH 3 * Copyright (C) 2006-2013 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 } 282 }
283 283
284 function prepareNotificationIconAndPopup() 284 function prepareNotificationIconAndPopup()
285 { 285 {
286 activeNotification.onClicked = function() 286 activeNotification.onClicked = function()
287 { 287 {
288 iconAnimation.stop(); 288 iconAnimation.stop();
289 activeNotification = null; 289 activeNotification = null;
290 }; 290 };
291 291
292 iconAnimation.update(activeNotification.severity); 292 iconAnimation.update(activeNotification.severity);
saroyanm 2014/02/26 15:52:18 Felix, what you think do we need this function her
Felix Dahlke 2014/02/26 17:22:58 It animates the icon. When a notification arrives,
saroyanm 2014/02/26 18:15:34 Got it.
293 } 293 }
294 294
295 function openNotificationLinks()
296 {
297 if (activeNotification.links)
298 {
299 activeNotification.links.forEach(function(link)
300 {
301 ext.windows.getLastFocused(function(win)
302 {
303 win.openTab(Utils.getDocLink(link));
304 });
305 });
306 }
307 }
308
309 function notificationButtonClick(id, index)
310 {
311 if (activeNotification.links && activeNotification.links[index])
312 {
313 ext.windows.getLastFocused(function(win)
314 {
315 win.openTab(Utils.getDocLink(activeNotification.links[index]));
316 });
317 }
318 }
319
295 function showNotification(notification) 320 function showNotification(notification)
296 { 321 {
297 activeNotification = notification; 322 activeNotification = notification;
298 323 if (activeNotification.severity === "critical")
299 if (activeNotification.severity === "critical"
300 && typeof webkitNotifications !== "undefined")
301 { 324 {
302 var notification = webkitNotifications.createHTMLNotification("notification. html"); 325 var hasWebkitNotifications = typeof webkitNotifications !== "undefined";
303 notification.show(); 326 if (hasWebkitNotifications && "createHTMLNotification" in webkitNotification s)
304 notification.addEventListener("close", prepareNotificationIconAndPopup); 327 {
328 var notification = webkitNotifications.createHTMLNotification("notificatio n.html");
329 notification.show();
330 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse);
331 return;
332 }
333
334 var texts = Notification.getLocalizedTexts(notification);
335 var title = texts.title || "";
336 var message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : "";
337 var iconUrl = ext.getURL("icons/abp-128.png");
338 var hasLinks = activeNotification.links && activeNotification.links.length > 0;
339 if ("browserNotifications" in ext)
340 {
341 var opts = {
342 type: "basic",
343 title: title,
344 message: message,
345 iconUrl: iconUrl,
346 buttons: []
347 };
348 var regex = /<a>(.*?)<\/a>/g;
349 var plainMessage = texts.message || "";
350 var match;
351 while (match = regex.exec(plainMessage))
352 opts.buttons.push({title: match[1]});
353
354 var notification = ext.browserNotifications;
355 notification.create("", opts, function() {});
356 notification.onClosed.addListener(prepareNotificationIconAndPopup);
357 notification.onButtonClicked.addListener(notificationButtonClick);
358 }
359 else if (hasWebkitNotifications && "createNotification" in webkitNotificatio ns)
360 {
361 if (hasLinks)
362 message += " " + ext.i18n.getMessage("notification_without_buttons");
363
364 var notification = webkitNotifications.createNotification(iconUrl, title, message);
365 notification.show();
366 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse);
367 notification.addEventListener("click", openNotificationLinks, false);
368 }
369 else
370 {
371 var message = title + "\n" + message;
372 if (hasLinks)
373 message += "\n\n" + ext.i18n.getMessage("notification_with_buttons");
374
375 var notification = confirm(message);
Felix Dahlke 2014/02/26 17:22:58 This is a boolean, was does "notification" mean he
376 if (notification == true)
Felix Dahlke 2014/02/26 17:22:58 == true is redundant
377 openNotificationLinks();
378 else
379 prepareNotificationIconAndPopup();
Felix Dahlke 2014/02/26 17:22:58 We should call prepareNotificationIconAndPopup eit
saroyanm 2014/02/26 18:00:29 The current implementation is done depending on th
Felix Dahlke 2014/02/26 18:02:53 The else here means that it'd only be called if th
380 }
305 } 381 }
306 else 382 else
307 prepareNotificationIconAndPopup(); 383 prepareNotificationIconAndPopup();
308 } 384 }
309 385
310 ext.onMessage.addListener(function (msg, sender, sendResponse) 386 ext.onMessage.addListener(function (msg, sender, sendResponse)
311 { 387 {
312 switch (msg.type) 388 switch (msg.type)
313 { 389 {
314 case "get-selectors": 390 case "get-selectors":
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 tab.sendMessage({type: "clickhide-deactivate"}); 495 tab.sendMessage({type: "clickhide-deactivate"});
420 refreshIconAndContextMenu(tab); 496 refreshIconAndContextMenu(tab);
421 }); 497 });
422 498
423 setTimeout(function() 499 setTimeout(function()
424 { 500 {
425 var notificationToShow = Notification.getNextToShow(); 501 var notificationToShow = Notification.getNextToShow();
426 if (notificationToShow) 502 if (notificationToShow)
427 showNotification(notificationToShow); 503 showNotification(notificationToShow);
428 }, 3 * 60 * 1000); 504 }, 3 * 60 * 1000);
OLDNEW
« no previous file with comments | « _locales/en_US/messages.json ('k') | chrome/ext/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld