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: Notification without button default text Created Feb. 21, 2014, 4:40 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
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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
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);
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 prepareNotificationIconAndPopup();
308 }
309
310 function notificationButtonClick(id, index)
311 {
312 if (activeNotification.links && activeNotification.links[index])
313 {
314 ext.windows.getLastFocused(function(win)
315 {
316 win.openTab(Utils.getDocLink(activeNotification.links[index]));
317 });
318 }
319 prepareNotificationIconAndPopup();
320 }
321
295 function showNotification(notification) 322 function showNotification(notification)
296 { 323 {
297 activeNotification = notification; 324 activeNotification = notification;
298 325 if (activeNotification.severity === "critical")
299 if (activeNotification.severity === "critical"
300 && typeof webkitNotifications !== "undefined")
301 { 326 {
302 var notification = webkitNotifications.createHTMLNotification("notification. html"); 327 var hasWebkitNotifications = typeof webkitNotifications !== "undefined";
303 notification.show(); 328 if (hasWebkitNotifications && "createHTMLNotification" in webkitNotification s)
304 notification.addEventListener("close", prepareNotificationIconAndPopup); 329 {
330 var notification = webkitNotifications.createHTMLNotification("notificatio n.html");
331 notification.show();
332 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse);
333 return;
334 }
335
336 var texts = Notification.getLocalizedTexts(notification);
337 var title = texts.title || "";
338 var message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : "";
339 var iconUrl = ext.getURL("icons/abp-128.png");
340 var hasLinks = activeNotification.links && activeNotification.links.length > 0;
341 if ("browserNotifications" in ext)
342 {
343 var opts = {
344 type: "basic",
345 title: title,
346 message: message,
347 iconUrl: iconUrl,
348 buttons: []
349 };
350 var regex = /<a>(.*?)<\/a>/g;
351 var plainMessage = texts.message || "";
352 var match;
353 while (match = regex.exec(plainMessage))
354 opts.buttons.push({title: match[1]});
355
356 var notification = ext.browserNotifications;
357 notification.create("", opts, function() {});
358 notification.onClosed.addListener(prepareNotificationIconAndPopup);
359 notification.onButtonClicked.addListener(notificationButtonClick);
360 }
361 else if (hasWebkitNotifications && "createNotification" in webkitNotificatio ns)
362 {
363 if (hasLinks)
364 message += " " + ext.i18n.getMessage("notification_without_buttons");
Felix Dahlke 2014/02/21 19:17:37 Should be in a new paragraph IMO, likewise below f
saroyanm 2014/02/22 10:22:15 webkitNotifications.createNotification removes any
365
366 var notification = webkitNotifications.createNotification(iconUrl, title, message);
367 notification.show();
368 notification.addEventListener("close", prepareNotificationIconAndPopup, fa lse);
369 notification.addEventListener("click", openNotificationLinks, false);
370 }
371 else
372 {
373 var message = title + "\n" + message;
374 if (hasLinks)
375 message += "\n\n" + ext.i18n.getMessage("notification_with_buttons");
376
377 var notification = confirm(message);
378 if (notification == true)
379 openNotificationLinks();
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

Powered by Google App Engine
This is Rietveld