After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 654139 - Display number of unread messages
Display number of unread messages
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: message-tray
unspecified
Other Linux
: Normal enhancement
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
Depends on:
Blocks:
 
 
Reported: 2011-07-07 09:22 UTC by Guillaume Desmottes
Modified: 2011-07-07 14:30 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Display the number of unread messages in the notification icon (1.76 KB, patch)
2011-07-07 09:38 UTC, Guillaume Desmottes
committed Details | Review
messageTray.js: don't raise an exception if count equals 0 (825 bytes, patch)
2011-07-07 13:36 UTC, Guillaume Desmottes
reviewed Details | Review
messageTray.js: don't raise an exception if count equals 0 (817 bytes, patch)
2011-07-07 13:44 UTC, Guillaume Desmottes
none Details | Review
messageTray.js: raise an exception only if parseInt(count) returns NaN (883 bytes, patch)
2011-07-07 13:48 UTC, Guillaume Desmottes
committed Details | Review

Description Guillaume Desmottes 2011-07-07 09:22:37 UTC
We could use the new source count thing to display the number of unread messages an so easily see if we have new messages.
Comment 1 Guillaume Desmottes 2011-07-07 09:38:34 UTC
Created attachment 191439 [details] [review]
Display the number of unread messages in the notification icon
Comment 2 Guillaume Desmottes 2011-07-07 09:40:43 UTC
I got this when using my patch:

    JS ERROR: !!!   Exception was: Error: Invalid notification count: 0
    JS ERROR: !!!     lineNumber = '945'
    JS ERROR: !!!     fileName = '"/home/cassidy/usr/share/gnome-shell/js/ui/messageTray.js"'
    JS ERROR: !!!     stack = '"Error("Invalid notification count: 0")@:0



I think the problem is in _setCount(), it shouldn't raise an error if we pass 0.
What's the point of this call actually? _setCount is supposed to take an int already.
Comment 3 Dan Winship 2011-07-07 12:58:46 UTC
It's checking that @count actually is a number, because if we don't, then some extension is going to do _setCount("Blah blah blah here is some tooltip text that I'm putting in the icon since I can't use a tooltip", true). The fact that it doesn't let "0" through is a bug.
Comment 4 Guillaume Desmottes 2011-07-07 13:36:10 UTC
Created attachment 191449 [details] [review]
messageTray.js: don't raise an exception if count equals 0
Comment 5 Jasper St. Pierre (not reading bugmail) 2011-07-07 13:41:46 UTC
Review of attachment 191449 [details] [review]:

::: js/ui/messageTray.js
@@ +943,2 @@
     _setCount: function(count, visible) {
+        if (count != 0 && !parseInt(count))

try if(isNaN(parseInt(count)))
Comment 6 Guillaume Desmottes 2011-07-07 13:44:33 UTC
Created attachment 191452 [details] [review]
messageTray.js: don't raise an exception if count equals 0
Comment 7 Guillaume Desmottes 2011-07-07 13:48:46 UTC
Created attachment 191453 [details] [review]
messageTray.js: raise an exception only if parseInt(count) returns NaN

0 is a valid value for count so we should accept it.
Comment 8 Jasper St. Pierre (not reading bugmail) 2011-07-07 13:58:24 UTC
Review of attachment 191453 [details] [review]:

sure.
Comment 9 Guillaume Desmottes 2011-07-07 14:30:10 UTC
Attachment 191439 [details] pushed as fda8ffd - Display the number of unread messages in the notification icon
Attachment 191453 [details] pushed as 6cb707c - messageTray.js: raise an exception only if parseInt(count) returns NaN