mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Display sync status in favicon and title
Signed-off-by: Aviral Dasgupta <me@aviraldg.com>
This commit is contained in:
parent
f66dd69710
commit
47c3419c0e
1 changed files with 7 additions and 2 deletions
|
@ -599,7 +599,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;
|
||||
}
|
||||
|
@ -887,7 +887,7 @@ module.exports = React.createClass({
|
|||
});
|
||||
},
|
||||
|
||||
updateFavicon: function() {
|
||||
updateFavicon: function(state, prevState) {
|
||||
var notifCount = 0;
|
||||
|
||||
var rooms = MatrixClientPeg.get().getRooms();
|
||||
|
@ -907,6 +907,11 @@ module.exports = React.createClass({
|
|||
console.warn("Failed to set badge count: "+e.message);
|
||||
}
|
||||
document.title = "Vector"+(notifCount > 0 ? " ["+notifCount+"]" : "");
|
||||
|
||||
if(state === "ERROR") {
|
||||
this.favicon.badge("×");
|
||||
document.title = "Vector [ERROR]";
|
||||
}
|
||||
},
|
||||
|
||||
onUserSettingsClose: function() {
|
||||
|
|
Loading…
Reference in a new issue