瀏覽代碼

More work (with tests) on showing roster items under groups.

updates #83
JC Brand 11 年之前
父節點
當前提交
3984aadb9f
共有 5 個文件被更改,包括 101 次插入82 次删除
  1. 52 30
      converse.js
  2. 0 2
      docs/source/index.rst
  3. 3 3
      mockup/controlbox.html
  4. 43 46
      spec/controlbox.js
  5. 3 1
      src/templates/group_header.html

+ 52 - 30
converse.js

@@ -280,6 +280,9 @@
             'xa': __('This contact is away for an extended period'),
             'away': __('This contact is away')
         };
+        var DESC_GROUP_TOGGLE = __('Click to hide these contacts');
+        var HEADER_CURRENT_CONTACTS =  __('My contacts');
+        var HEADER_UNGROUPED = __('Ungrouped');
 
         // Module-level variables
         // ----------------------
@@ -2806,6 +2809,7 @@
                     'id': jid,
                     'user_id': Strophe.getNodeFromJid(jid),
                     'resources': [],
+                    'groups': [],
                     'status': ''
                 }, attributes);
                 attrs.sorted = false;
@@ -3252,22 +3256,22 @@
             },
 
             render: function () {
-                var desc_group_toggle = __('Click to hide these contacts'),
-                    toggle_state = 'opened',
+                var toggle_state = 'opened', // TODO: remember state...
                     roster_markup = converse.templates.group_header({
-                        label_group: this.roster_groups ? __('Ungrouped') : __('My contacts'),
-                        desc_group_toggle: desc_group_toggle,
+                        label_group: converse.roster_groups ? HEADER_UNGROUPED : HEADER_CURRENT_CONTACTS,
+                        desc_group_toggle: DESC_GROUP_TOGGLE,
                         toggle_state: toggle_state
                     });
+
                 if (converse.allow_contact_requests) {
                     roster_markup += converse.templates.requesting_contacts({
                         label_contact_requests: __('Contact requests'),
-                        desc_group_toggle: desc_group_toggle,
+                        desc_group_toggle: DESC_GROUP_TOGGLE,
                         toggle_state: toggle_state
                     }) +
                     converse.templates.pending_contacts({
                         label_pending_contacts: __('Pending contacts'),
-                        desc_group_toggle: desc_group_toggle,
+                        desc_group_toggle: DESC_GROUP_TOGGLE,
                         toggle_state: toggle_state
                     });
                 }
@@ -3275,10 +3279,18 @@
                 this.$fragment.append($(roster_markup));
             },
 
+            insertRosterFragment: function () {
+                if (this.$fragment) {
+                    this.$el.html(this.$fragment)
+                    delete this.$fragment;
+                }
+                return this;
+            },
+
             onAdd: function (item) {
-                this.addRosterItem(item).updateRoster();
+                this.addRosterItem(item);
                 if (item.get('is_last')) {
-                    this.sortRoster().showRoster();
+                    this.toggleHeaders().sortRoster().insertRosterFragment().updateCount();
                 }
                 if (!item.get('vcard_updated')) {
                     // This will update the vcard, which triggers a change
@@ -3287,19 +3299,11 @@
                 }
             },
 
-            showRoster: function () {
-                if (this.$fragment) {
-                    this.$el.html(this.$fragment)
-                    delete this.$fragment;
-                }
-                return this;
-            },
-
             onChange: function (item) {
                 if ((_.size(item.changed) === 1) && _.contains(_.keys(item.changed), 'sorted')) {
                     return;
                 }
-                this.updateChatBox(item).renderRosterItem(item).updateRoster();
+                this.updateChatBox(item).renderRosterItem(item).toggleHeaders().updateCount();
                 if (item.changed.chat_status) { // A changed chat status implies a new sort order
                     this.sortRoster();
                 }
@@ -3323,14 +3327,14 @@
 
             removeAllRosterItemViews: function () {
                 this.removeAll();
-                this.updateRoster();
+                this.updateCount().toggleHeaders();
                 return this;
             },
 
             removeRosterItemView: function (item) {
                 if (this.get(item.id)) {
                     this.get(item.id).remove();
-                    this.updateRoster();
+                    this.updateCount().toggleHeaders();
                 }
                 return this;
             },
@@ -3361,6 +3365,32 @@
                 }
             },
 
+            addCurrentContact: function (view) {
+                var $el = this.getRosterElement(),
+                    item = view.model;
+                if (converse.roster_groups) {
+                    if (item.get('groups').length === 0) {
+                        $el.find('.roster-group[data-group="'+HEADER_UNGROUPED+'"]').after(view.el);
+                    } else {
+                        _.each(item.get('groups'), $.proxy(function (group) {
+                            var $group = $el.find('.roster-group[data-group="'+group+'"]');
+                            if ($group.length > 0) {
+                                $group.after(view.el);
+                            } else {
+                                $group = $(converse.templates.group_header({
+                                    label_group: group,
+                                    desc_group_toggle: DESC_GROUP_TOGGLE,
+                                    toggle_state: 'opened' // TODO: remember state...
+                                })).after(view.el);
+                                this.getRosterElement().append($group);
+                            }
+                        },this));
+                    }
+                } else {
+                    $el.find('.roster-group[data-group="'+HEADER_CURRENT_CONTACTS+'"]').after(view.el);
+                }
+            },
+
             addRosterItem: function (item) {
                 var view = new converse.RosterItemView({model: item});
                 this.add(item.id, view);
@@ -3368,24 +3398,16 @@
                     return this;
                 }
                 view.render()
-                var $el = this.getRosterElement();
                 if (view.$el.hasClass('current-xmpp-contact')) {
-                    // TODO: need to add group support
-                    $el.find('.roster-group').after(view.el);
+                    this.addCurrentContact(view);
                 } else if (view.$el.hasClass('pending-xmpp-contact')) {
-                    $el.find('#pending-xmpp-contacts').after(view.el);
+                    this.getRosterElement().find('#pending-xmpp-contacts').after(view.el);
                 } else if (view.$el.hasClass('requesting-xmpp-contact')) {
-                    $el.find('#xmpp-contact-requests').after(view.render().el);
+                    this.getRosterElement().find('#xmpp-contact-requests').after(view.render().el);
                 }
                 return this;
             },
 
-            updateRoster: function (item) {
-                this.updateCount().toggleHeaders();
-                converse.emit('rosterViewUpdated');
-                return this;
-            },
-
             updateCount: function () {
                 var $count = $('#online-count');
                 $count.text('('+this.model.getNumOnlineContacts()+')');

+ 0 - 2
docs/source/index.rst

@@ -784,8 +784,6 @@ Here are the different events that are emitted:
 +----------------------------------+---------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+
 | **roster**                       | When the roster is updated.                                                                       | ``converse.on('roster', function (items) { ... });``                                    |
 +----------------------------------+---------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+
-| **rosterViewUpdated**            | Whenever the roster view (i.e. the rendered HTML) has changed.                                    | ``converse.on('rosterViewUpdated', function (items) { ... });``                         |
-+----------------------------------+---------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+
 | **callButtonClicked**            | When a call button (i.e. with class .toggle-call) on a chat box has been clicked.                 | ``converse.on('callButtonClicked', function (connection, model) { ... });``             |
 +----------------------------------+---------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+
 | **chatBoxOpened**                | When a chat box has been opened.                                                                  | ``converse.on('chatBoxOpened', function (chatbox) { ... });``                           |

+ 3 - 3
mockup/controlbox.html

@@ -116,7 +116,7 @@
                 </dl>
                 <dl id="converse-roster" style="display: block;">
                     <dt class="roster-group" style="display: block;">
-                        <a href="#" class="group-toggle icon-opened" title="Click to hide these contacts">Colleagues</a>
+                        <a href="#" data-group="Colleagues" class="group-toggle icon-opened" title="Click to hide these contacts">Colleagues</a>
                     </dt>
                     <dd class="online current-xmpp-contact">
                         <a class="open-chat" title="Click to chat with this contact" href="#">
@@ -141,7 +141,7 @@
                     </dd>
 
                     <dt class="roster-group" style="display: block;">
-                        <a href="#" class="group-toggle icon-opened" title="Click to hide these contacts">Family</a>
+                        <a href="#" data-group="Family" class="group-toggle icon-opened" title="Click to hide these contacts">Family</a>
                     </dt>
                     <dd class="away current-xmpp-contact">
                         <a class="open-chat" title="Click to chat with this contact" href="#">
@@ -159,7 +159,7 @@
                     </dd>
 
                     <dt class="roster-group" style="display: block;">
-                        <a href="#" class="group-toggle icon-opened" title="Click to hide these contacts">Friends</a>
+                        <a href="#" data-group="Friends" class="group-toggle icon-opened" title="Click to hide these contacts">Friends</a>
                     </dt>
                     <dd class="online current-xmpp-contact">
                         <a class="open-chat" title="Click to chat with this contact" href="#">

+ 43 - 46
spec/controlbox.js

@@ -138,8 +138,7 @@
             function _addContacts () {
                 _clearContacts();
                 // Must be initialized, so that render is called and documentFragment set up.
-                utils.createContacts('pending').openControlBox();
-                utils.openContactsPanel();
+                utils.createContacts('pending').openControlBox().openContactsPanel();
             };
 
             it("do not have a header if there aren't any", $.proxy(function () {
@@ -156,7 +155,7 @@
             it("can be added to the roster", $.proxy(function () {
                 _clearContacts();
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 runs($.proxy(function () {
                     this.roster.create({
                         jid: mock.pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost',
@@ -168,9 +167,8 @@
                 }, converse));
                 waits(300);
                 runs($.proxy(function () {
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
                     expect(this.rosterview.$el.is(':visible')).toEqual(true);
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                 }, converse));
             }, converse));
 
@@ -191,7 +189,6 @@
                 expect(this.rosterview.model.remove).toHaveBeenCalled();
                 // The element must now be detached from the DOM.
                 expect(view.$el.closest('html').length).toBeFalsy();
-                expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
             }, converse));
 
             it("will lose their own header once the last one has been removed", $.proxy(function () {
@@ -209,7 +206,7 @@
                 _clearContacts();
                 var i, t, is_last;
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.pend_names.length; i++) {
                     is_last = i===(mock.pend_names.length-1);
                     this.roster.create({
@@ -219,8 +216,7 @@
                         fullname: mock.pend_names[i],
                         is_last: is_last
                     });
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                 }
                 // Check that they are sorted alphabetically
                 t = this.rosterview.$el.find('dt#pending-xmpp-contacts').siblings('dd.pending-xmpp-contact').find('span').text();
@@ -230,31 +226,34 @@
         }, converse));
 
         describe("Existing Contacts", $.proxy(function () {
-            beforeEach($.proxy(function () {
-                runs(function () {
-                    converse.rosterview.model.reset();
-                    utils.createContacts().openControlBox();
-                });
-                waits(50);
-                runs(function () {
-                    utils.openContactsPanel();
-                });
-            }, converse));
+            function _clearContacts () {
+                utils.clearBrowserStorage();
+                converse.rosterview.model.reset();
+                converse.rosterview.initialize(); // Register new listeners and document fragment
+            };
+
+            var _addContacts = function () {
+                _clearContacts();
+                utils.createContacts().openControlBox().openContactsPanel();
+            };
 
             it("do not have a header if there aren't any", $.proxy(function () {
-                converse.rosterview.model.reset();
+                // To properly tests, we add contacts and then remove them all again.
+                _addContacts();
+                this.rosterview.model.reset();
                 expect(this.rosterview.$el.find('dt.roster-group').css('display')).toEqual('none');
             }, converse));
 
             it("can be collapsed under their own header", $.proxy(function () {
+                _addContacts();
                 checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt.roster-group')]);
             }, converse));
 
             it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
+                _clearContacts();
                 var i, t;
-                converse.rosterview.model.reset();
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.cur_names.length; i++) {
                     this.roster.create({
                         jid: mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost',
@@ -263,8 +262,7 @@
                         fullname: mock.cur_names[i],
                         is_last: i===(mock.cur_names.length-1)
                     });
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                 }
                 // Check that they are sorted alphabetically
                 t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.offline').find('a.open-chat').text();
@@ -272,10 +270,10 @@
             }, converse));
 
             it("can be assigned to groups inside the roster", $.proxy(function () {
+                _clearContacts();
                 var i=0, j=0, t;
-                converse.rosterview.model.reset();
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 converse.roster_groups = true;
                 converse.rosterview.render();
                 var groups = {
@@ -299,9 +297,10 @@
             }, converse));
 
             it("can change their status to online and be sorted alphabetically", $.proxy(function () {
+                _addContacts();
                 var item, view, jid, t;
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.cur_names.length; i++) {
                     jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
                     view = this.rosterview.get(jid);
@@ -309,8 +308,7 @@
                     item = view.model;
                     item.set('chat_status', 'online');
                     expect(view.render).toHaveBeenCalled();
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                     // Check that they are sorted alphabetically
                     t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
                     expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
@@ -318,9 +316,10 @@
             }, converse));
 
             it("can change their status to busy and be sorted alphabetically", $.proxy(function () {
+                _addContacts();
                 var item, view, jid, t;
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.cur_names.length; i++) {
                     jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
                     view = this.rosterview.get(jid);
@@ -328,8 +327,7 @@
                     item = view.model;
                     item.set('chat_status', 'dnd');
                     expect(view.render).toHaveBeenCalled();
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                     // Check that they are sorted alphabetically
                     t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
                     expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
@@ -337,9 +335,10 @@
             }, converse));
 
             it("can change their status to away and be sorted alphabetically", $.proxy(function () {
+                _addContacts();
                 var item, view, jid, t;
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.cur_names.length; i++) {
                     jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
                     view = this.rosterview.get(jid);
@@ -347,8 +346,7 @@
                     item = view.model;
                     item.set('chat_status', 'away');
                     expect(view.render).toHaveBeenCalled();
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                     // Check that they are sorted alphabetically
                     t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
                     expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
@@ -356,9 +354,10 @@
             }, converse));
 
             it("can change their status to xa and be sorted alphabetically", $.proxy(function () {
+                _addContacts();
                 var item, view, jid, t;
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.cur_names.length; i++) {
                     jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
                     view = this.rosterview.get(jid);
@@ -366,8 +365,7 @@
                     item = view.model;
                     item.set('chat_status', 'xa');
                     expect(view.render).toHaveBeenCalled();
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                     // Check that they are sorted alphabetically
                     t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.xa').find('a.open-chat').text();
                     expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
@@ -375,9 +373,10 @@
             }, converse));
 
             it("can change their status to unavailable and be sorted alphabetically", $.proxy(function () {
+                _addContacts();
                 var item, view, jid, t;
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 for (i=0; i<mock.cur_names.length; i++) {
                     jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
                     view = this.rosterview.get(jid);
@@ -385,8 +384,7 @@
                     item = view.model;
                     item.set('chat_status', 'unavailable');
                     expect(view.render).toHaveBeenCalled();
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                     // Check that they are sorted alphabetically
                     t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
                     expect(t).toEqual(mock.cur_names.slice(0, i+1).sort().join(''));
@@ -394,6 +392,7 @@
             }, converse));
 
             it("are ordered according to status: online, busy, away, xa, unavailable, offline", $.proxy(function () {
+                _addContacts();
                 var i;
                 for (i=0; i<3; i++) {
                     jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
@@ -468,7 +467,7 @@
                 var i, children;
                 var names = [];
                 spyOn(converse, 'emit');
-                spyOn(this.rosterview, 'updateRoster').andCallThrough();
+                spyOn(this.rosterview, 'updateCount').andCallThrough();
                 spyOn(this.controlboxtoggle, 'showControlBox').andCallThrough();
                 var addName = function (idx, item) {
                     if (!$(item).hasClass('request-actions')) {
@@ -484,11 +483,10 @@
                         fullname: mock.req_names[i],
                         is_last: i===(mock.req_names.length-1)
                     });
-                    expect(this.rosterview.updateRoster).toHaveBeenCalled();
+                    expect(this.rosterview.updateCount).toHaveBeenCalled();
                     // When a requesting contact is added, the controlbox must
                     // be opened.
                     expect(this.controlboxtoggle.showControlBox).toHaveBeenCalled();
-                    expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
                 }
                 // Check that they are sorted alphabetically
                 children = this.rosterview.$el.find('dt#xmpp-contact-requests').siblings('dd.requesting-xmpp-contact').children('span');
@@ -536,7 +534,6 @@
                 expect(window.confirm).toHaveBeenCalled();
                 expect(this.rosterview.removeRosterItemView).toHaveBeenCalled();
                 expect(this.connection.roster.unauthorize).toHaveBeenCalled();
-                expect(converse.emit).toHaveBeenCalledWith('rosterViewUpdated');
                 // There should now be one less contact
                 expect(this.roster.length).toEqual(mock.req_names.length-1);
             }, converse));
@@ -579,7 +576,7 @@
                     // comparison
                     expect(_.isEqual(new_attrs.sort(), old_attrs.sort())).toEqual(true);
                 }
-                this.rosterview.updateRoster();
+                // XXX: this.rosterview.updateCount();
             }, converse));
 
             afterEach($.proxy(function () {

+ 3 - 1
src/templates/group_header.html

@@ -1 +1,3 @@
-<dt class="roster-group"><a href="#" class="group-toggle icon-{{toggle_state}}" title="{{desc_group_toggle}}">{{label_group}}</a></dt>
+<dt class="roster-group" data-group="{{label_group}}">
+    <a href="#" class="group-toggle icon-{{toggle_state}}" title="{{desc_group_toggle}}">{{label_group}}</a>
+</dt>