blob: fefafda8c5d1f83a44913e9f288122c4ee10eefa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
---
title: notifications.getAll()
slug: Mozilla/Add-ons/WebExtensions/API/notifications/getAll
tags:
- API
- Add-ons
- Extensions
- Method
- Non-standard
- Notifications
- Reference
- WebExtensions
- getAll
translation_of: Mozilla/Add-ons/WebExtensions/API/notifications/getAll
---
<div>{{AddonSidebar()}}</div>
<p>Obtient toutes les notifications actuellement actives créées par l'extension.</p>
<p>C'est une fonction asynchrone qui renvoie une <code><a href="/fr/docs/Web/JavaScript/Reference/Objets_globaux/Promise">Promise</a></code>.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="brush: js">var gettingAll = browser.notifications.getAll()
</pre>
<h3 id="Paramètres">Paramètres</h3>
<p>None.</p>
<h3 id="Valeur_retournée">Valeur retournée</h3>
<p>Une <code><a href="/fr/docs/Web/JavaScript/Reference/Objets_globaux/Promise">Promise</a></code> qui sera accomplie avec un objet. Chaque notification actuellement active est une propriété de cet objet : le nom de la propriété est l'ID de la notification et la valeur de la propriété est un objet {{WebExtAPIRef("notifications.NotificationOptions")}} décrivant cette notification.</p>
<p>Notez que vous pouvez définir explicitement un ID pour une notification en le passant dans {{WebExtAPIRef("notifications.create()")}}. Si vous ne le faites pas, le navigateur en générera un. Les ID spécifiés explicitement sont des chaînes, mais les ID générés sont des nombres. </p>
<h2 id="Compatibilité_du_navigateur">Compatibilité du navigateur</h2>
<p>{{Compat("webextensions.api.notifications.getAll")}}</p>
<h2 id="Exemples">Exemples</h2>
<p>Cet exemple affiche une notification lorsque l'utilisateur clique sur une action du navigateur, à moins que la notification ne soit déjà affichée, auquel cas il efface la notification. Il utilise getAll() pour déterminer si la notification est affichée :</p>
<pre class="brush: js">var myNotification = "my-notification";
function toggleAlarm(all) {
let ids = Object.keys(all);
if (ids.indexOf(myNotification) != -1) {
browser.notifications.clear(myNotification);
} else {
console.log("showing")
browser.notifications.create(myNotification, {
"type": "basic",
"title": "Am imposing title",
"message": "Some interesting content"
});
}
}
function handleClick() {
console.log("clicked")
browser.notifications.getAll().then(toggleAlarm);
}
browser.browserAction.onClicked.addListener(handleClick);</pre>
<p>Cet exemple enregistre le titre de toutes les notifications actives :</p>
<pre class="brush: js">function logNotifications(all) {
for (let id in all) {
console.log(`Title: ${all[id].title}`);
}
}
browser.notifications.getAll().then(logNotifications);</pre>
<p>{{WebExtExamples}}</p>
<div class="note"><p><strong>Note :</strong></p>
<p>Cette API est basée sur l'API Chromium <a href="https://developer.chrome.com/extensions/notifications"><code>chrome.notifications</code></a>.</p>
<p>Les données de compatibilité relatives à Microsoft Edge sont fournies par Microsoft Corporation et incluses ici sous la licence Creative Commons Attribution 3.0 pour les États-Unis.</p>
</div>
|