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

Side by Side Diff: lib/notificationHelper.js

Issue 29583620: Issue 5354 - Adds handling for notifications on Opera (Closed)
Patch Set: address p2 comment Created Nov. 1, 2017, 6:21 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 | « no previous file | no next file » | 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 <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 let texts = NotificationStorage.getLocalizedTexts(notification); 189 let texts = NotificationStorage.getLocalizedTexts(notification);
190 let title = texts.title || ""; 190 let title = texts.title || "";
191 let message = (texts.message || "").replace(/<\/?(a|strong)>/g, ""); 191 let message = (texts.message || "").replace(/<\/?(a|strong)>/g, "");
192 let iconUrl = browser.extension.getURL("icons/detailed/abp-128.png"); 192 let iconUrl = browser.extension.getURL("icons/detailed/abp-128.png");
193 let linkCount = (activeNotification.links || []).length; 193 let linkCount = (activeNotification.links || []).length;
194 194
195 if ("notifications" in browser) 195 if ("notifications" in browser)
196 { 196 {
197 activeButtons = getNotificationButtons(activeNotification.type, 197 activeButtons = getNotificationButtons(activeNotification.type,
198 texts.message); 198 texts.message);
199 browser.notifications.create("", { 199 let notificationOptions = {
200 type: "basic", 200 type: "basic",
201 title, 201 title,
202 iconUrl, 202 iconUrl,
203 message, 203 message,
204 buttons: activeButtons.map(button => ({title: button.title})), 204 buttons: activeButtons.map(button => ({title: button.title})),
205 // We use the highest priority to prevent the notification 205 // We use the highest priority to prevent the notification
206 // from closing automatically. 206 // from closing automatically.
207 priority: 2 207 priority: 2
208 };
209 browser.notifications.create("", notificationOptions, () =>
210 {
211 // Opera does not support the addtition of buttons to notifications.
Sebastian Noack 2017/11/01 18:45:03 Typo: addtition
212 // Question type notfications always include buttons.
213 if (browser.runtime.lastError && activeNotification.type != "question")
214 {
215 delete notificationOptions.buttons;
216 browser.notifications.create("", notificationOptions);
217 }
208 }); 218 });
209 } 219 }
210 else if ("Notification" in window && activeNotification.type != "question") 220 else if ("Notification" in window && activeNotification.type != "question")
211 { 221 {
212 if (linkCount > 0) 222 if (linkCount > 0)
213 { 223 {
214 message += " " + browser.i18n.getMessage( 224 message += " " + browser.i18n.getMessage(
215 "notification_without_buttons" 225 "notification_without_buttons"
216 ); 226 );
217 } 227 }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 let methods = displayMethods[notificationType] || defaultDisplayMethods; 293 let methods = displayMethods[notificationType] || defaultDisplayMethods;
284 return methods.includes(method); 294 return methods.includes(method);
285 }; 295 };
286 296
287 ext.pages.onLoading.addListener(page => 297 ext.pages.onLoading.addListener(page =>
288 { 298 {
289 NotificationStorage.showNext(stringifyURL(page.url)); 299 NotificationStorage.showNext(stringifyURL(page.url));
290 }); 300 });
291 301
292 NotificationStorage.addShowListener(showNotification); 302 NotificationStorage.addShowListener(showNotification);
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld