Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #221 from aviraldg/feature-sync-status
Browse files Browse the repository at this point in the history
Display sync status in favicon and title.
  • Loading branch information
ara4n committed Mar 16, 2016
2 parents 8167468 + b47ea1c commit 6016ba7
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/components/structures/MatrixChat.js
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ module.exports = React.createClass({
var cli = MatrixClientPeg.get();
var self = this;
cli.on('sync', function(state, prevState) {
self.updateFavicon();
self.updateFavicon(state, prevState);
if (state === "SYNCING" && prevState === "SYNCING") {
return;
}
Expand Down Expand Up @@ -924,7 +924,7 @@ module.exports = React.createClass({
});
},

updateFavicon: function() {
updateFavicon: function(state, prevState) {
var notifCount = 0;

var rooms = MatrixClientPeg.get().getRooms();
Expand All @@ -939,11 +939,21 @@ module.exports = React.createClass({
// This needs to be in in a try block as it will throw
// if there are more than 100 badge count changes in
// its internal queue
this.favicon.badge(notifCount);
var bgColor = "#0d0",
notif = notifCount;

if(state === "ERROR") {
notif = notif || "×";
bgColor = "#d00";
}

this.favicon.badge(notif, {
bgColor: bgColor
});
} catch (e) {
console.warn("Failed to set badge count: "+e.message);
}
document.title = "Vector"+(notifCount > 0 ? " ["+notifCount+"]" : "");
document.title = `Vector ${state === "ERROR" ? " [offline]" : ""}${notifCount > 0 ? ` [${notifCount}]` : ""}`;
},

onUserSettingsClose: function() {
Expand Down

0 comments on commit 6016ba7

Please sign in to comment.