FEATURE: Enable experimental Badging API (#7173)
This commit is contained in:
parent
d6d71de855
commit
fb8bcd7469
|
@ -0,0 +1,19 @@
|
|||
// Updates the PWA badging if avaliable
|
||||
export default {
|
||||
name: "badging",
|
||||
after: "message-bus",
|
||||
|
||||
initialize(container) {
|
||||
const appEvents = container.lookup("app-events:main");
|
||||
const user = container.lookup("current-user:main");
|
||||
|
||||
if (!user) return; // must be logged in
|
||||
if (!window.ExperimentalBadge) return; // must have the Badging API
|
||||
|
||||
appEvents.on("notifications:changed", () => {
|
||||
let notifications =
|
||||
user.get("unread_notifications") + user.get("unread_private_messages");
|
||||
window.ExperimentalBadge.set(notifications);
|
||||
});
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue