FEATURE: Enable experimental Badging API (#7173)

This commit is contained in:
Rafael dos Santos Silva 2019-03-14 18:16:16 -03:00 committed by GitHub
parent d6d71de855
commit fb8bcd7469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

View File

@ -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);
});
}
};