Big refactor. The RosterView is no longer an overview.
This is because we can no longer assume a one to one mapping between roster contacts and their views. Roster contacts can belong to more than one group, each group needs to show the contact, which means we need a view for each group the contact belongs to. updates #83
This commit is contained in:
parent
6a82c087c3
commit
2b927f21be
56
converse.js
56
converse.js
@ -2724,9 +2724,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
toggle: function (ev) {
|
toggle: function (ev) {
|
||||||
if (ev && ev.preventDefault) {
|
if (ev && ev.preventDefault) { ev.preventDefault(); }
|
||||||
ev.preventDefault();
|
|
||||||
}
|
|
||||||
this.toggleview.model.save({'collapsed': !this.toggleview.model.get('collapsed')});
|
this.toggleview.model.save({'collapsed': !this.toggleview.model.get('collapsed')});
|
||||||
this.$('.minimized-chats-flyout').toggle();
|
this.$('.minimized-chats-flyout').toggle();
|
||||||
},
|
},
|
||||||
@ -2830,6 +2828,9 @@
|
|||||||
|
|
||||||
initialize: function () {
|
initialize: function () {
|
||||||
this.model.on("change", this.onChange, this);
|
this.model.on("change", this.onChange, this);
|
||||||
|
this.model.on("remove", this.remove, this);
|
||||||
|
this.model.on("destroy", this.remove, this);
|
||||||
|
this.model.on("open", this.openChat, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
onChange: function () {
|
onChange: function () {
|
||||||
@ -2845,7 +2846,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
openChat: function (ev) {
|
openChat: function (ev) {
|
||||||
ev.preventDefault();
|
if (ev && ev.preventDefault) { ev.preventDefault(); }
|
||||||
return converse.chatboxviews.showChat({
|
return converse.chatboxviews.showChat({
|
||||||
'id': this.model.get('jid'),
|
'id': this.model.get('jid'),
|
||||||
'jid': this.model.get('jid'),
|
'jid': this.model.get('jid'),
|
||||||
@ -2858,7 +2859,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
removeContact: function (ev) {
|
removeContact: function (ev) {
|
||||||
ev.preventDefault();
|
if (ev && ev.preventDefault) { ev.preventDefault(); }
|
||||||
var result = confirm(__("Are you sure you want to remove this contact?"));
|
var result = confirm(__("Are you sure you want to remove this contact?"));
|
||||||
if (result === true) {
|
if (result === true) {
|
||||||
var bare_jid = this.model.get('jid');
|
var bare_jid = this.model.get('jid');
|
||||||
@ -3250,7 +3251,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.RosterView = Backbone.Overview.extend({
|
this.RosterView = Backbone.View.extend({
|
||||||
tagName: 'dl',
|
tagName: 'dl',
|
||||||
id: 'converse-roster',
|
id: 'converse-roster',
|
||||||
events: {
|
events: {
|
||||||
@ -3294,6 +3295,7 @@
|
|||||||
}
|
}
|
||||||
this.$fragment = $('<span>');
|
this.$fragment = $('<span>');
|
||||||
this.$fragment.append($(roster_markup));
|
this.$fragment.append($(roster_markup));
|
||||||
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
update: function (item) {
|
update: function (item) {
|
||||||
@ -3301,8 +3303,8 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
reset: function () {
|
reset: function () {
|
||||||
this.removeAll();
|
this.$el.find('span').empty();
|
||||||
this.update();
|
this.render().update();
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -3396,34 +3398,34 @@
|
|||||||
return $group;
|
return $group;
|
||||||
},
|
},
|
||||||
|
|
||||||
addCurrentContact: function (view) {
|
addCurrentContact: function (item) {
|
||||||
var item = view.model;
|
|
||||||
if (converse.roster_groups) {
|
if (converse.roster_groups) {
|
||||||
if (item.get('groups').length === 0) {
|
if (item.get('groups').length === 0) {
|
||||||
this.getRoster().find('.roster-group[data-group="'+HEADER_UNGROUPED+'"]').after(view.el);
|
this.getRoster().find('.roster-group[data-group="'+HEADER_UNGROUPED+'"]')
|
||||||
|
.after((new converse.RosterItemView({model: item})).render().el);
|
||||||
} else {
|
} else {
|
||||||
_.each(item.get('groups'), $.proxy(function (group) {
|
_.each(item.get('groups'), $.proxy(function (group) {
|
||||||
this.getGroup(group).after(view.el);
|
// We need a separate view per group
|
||||||
|
this.getGroup(group).after((new converse.RosterItemView({model: item})).render().el);
|
||||||
},this));
|
},this));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.getRoster().find('.roster-group[data-group="'+HEADER_CURRENT_CONTACTS+'"]').after(view.el);
|
this.getRoster().find('.roster-group[data-group="'+HEADER_CURRENT_CONTACTS+'"]')
|
||||||
|
.after((new converse.RosterItemView({model: item})).render().el);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
addRosterItem: function (item) {
|
addRosterItem: function (item) {
|
||||||
var view = new converse.RosterItemView({model: item});
|
var view;
|
||||||
this.add(item.id, view);
|
if (item.get('subscription') === 'both' || item.get('subscription') === 'to') {
|
||||||
if ((converse.show_only_online_users) && (item.get('chat_status') !== 'online')) {
|
this.addCurrentContact(item);
|
||||||
return this;
|
} else {
|
||||||
}
|
view = (new converse.RosterItemView({model: item})).render();
|
||||||
view.render()
|
if ((item.get('ask') === 'subscribe') || (item.get('subscription') === 'from')) {
|
||||||
if (view.$el.hasClass('current-xmpp-contact')) {
|
this.getRoster().find('#pending-xmpp-contacts').after(view.el);
|
||||||
this.addCurrentContact(view);
|
} else if (item.get('requesting') === true) {
|
||||||
} else if (view.$el.hasClass('pending-xmpp-contact')) {
|
this.getRoster().find('#xmpp-contact-requests').after(view.el);
|
||||||
this.getRoster().find('#pending-xmpp-contacts').after(view.el);
|
}
|
||||||
} else if (view.$el.hasClass('requesting-xmpp-contact')) {
|
|
||||||
this.getRoster().find('#xmpp-contact-requests').after(view.render().el);
|
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
@ -3496,9 +3498,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
sortRoster: function (chat_status) {
|
sortRoster: function (chat_status) {
|
||||||
/* XXX
|
/* XXX See if the jquery detach method can be somehow used to avoid DOM reflows.
|
||||||
* 1). See if the jquery detach method can be somehow used to avoid DOM reflows.
|
|
||||||
* 2). Likewise see if documentFragment can be used.
|
|
||||||
*/
|
*/
|
||||||
var $el = this.getRoster();
|
var $el = this.getRoster();
|
||||||
$el.find('.roster-group').each($.proxy(function (idx, group) {
|
$el.find('.roster-group').each($.proxy(function (idx, group) {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
it("is created when you click on a roster item", $.proxy(function () {
|
it("is created when you click on a roster item", $.proxy(function () {
|
||||||
var i, $el, click, jid, view, chatboxview;
|
var i, $el, click, jid, chatboxview;
|
||||||
// openControlBox was called earlier, so the controlbox is
|
// openControlBox was called earlier, so the controlbox is
|
||||||
// visible, but no other chat boxes have been created.
|
// visible, but no other chat boxes have been created.
|
||||||
expect(this.chatboxes.length).toEqual(1);
|
expect(this.chatboxes.length).toEqual(1);
|
||||||
@ -33,12 +33,8 @@
|
|||||||
for (i=0; i<online_contacts.length; i++) {
|
for (i=0; i<online_contacts.length; i++) {
|
||||||
$el = $(online_contacts[i]);
|
$el = $(online_contacts[i]);
|
||||||
jid = $el.text().replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = $el.text().replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
|
||||||
spyOn(view, 'openChat').andCallThrough();
|
|
||||||
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
||||||
$el.click();
|
$el.click();
|
||||||
chatboxview = this.chatboxviews.get(jid);
|
chatboxview = this.chatboxviews.get(jid);
|
||||||
expect(view.openChat).toHaveBeenCalled();
|
|
||||||
expect(this.chatboxes.length).toEqual(i+2);
|
expect(this.chatboxes.length).toEqual(i+2);
|
||||||
expect(this.chatboxviews.trimChats).toHaveBeenCalled();
|
expect(this.chatboxviews.trimChats).toHaveBeenCalled();
|
||||||
// Check that new chat boxes are created to the left of the
|
// Check that new chat boxes are created to the left of the
|
||||||
@ -49,7 +45,7 @@
|
|||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("can be trimmed to conserve space", $.proxy(function () {
|
it("can be trimmed to conserve space", $.proxy(function () {
|
||||||
var i, $el, click, jid, key, view, chatbox, chatboxview;
|
var i, $el, click, jid, key, chatbox, chatboxview;
|
||||||
// openControlBox was called earlier, so the controlbox is
|
// openControlBox was called earlier, so the controlbox is
|
||||||
// visible, but no other chat boxes have been created.
|
// visible, but no other chat boxes have been created.
|
||||||
var trimmed_chatboxes = converse.minimized_chats;
|
var trimmed_chatboxes = converse.minimized_chats;
|
||||||
@ -64,7 +60,6 @@
|
|||||||
for (i=0; i<online_contacts.length; i++) {
|
for (i=0; i<online_contacts.length; i++) {
|
||||||
$el = $(online_contacts[i]);
|
$el = $(online_contacts[i]);
|
||||||
jid = $el.text().replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = $el.text().replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
|
||||||
$el.click();
|
$el.click();
|
||||||
expect(this.chatboxviews.trimChats).toHaveBeenCalled();
|
expect(this.chatboxviews.trimChats).toHaveBeenCalled();
|
||||||
|
|
||||||
@ -96,7 +91,7 @@
|
|||||||
|
|
||||||
it("is focused if its already open and you click on its corresponding roster item", $.proxy(function () {
|
it("is focused if its already open and you click on its corresponding roster item", $.proxy(function () {
|
||||||
var contact_jid = mock.cur_names[2].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var contact_jid = mock.cur_names[2].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
var i, $el, click, jid, view, chatboxview, chatbox;
|
var i, $el, click, jid, chatboxview, chatbox;
|
||||||
// openControlBox was called earlier, so the controlbox is
|
// openControlBox was called earlier, so the controlbox is
|
||||||
// visible, but no other chat boxes have been created.
|
// visible, but no other chat boxes have been created.
|
||||||
expect(this.chatboxes.length).toEqual(1);
|
expect(this.chatboxes.length).toEqual(1);
|
||||||
@ -105,11 +100,7 @@
|
|||||||
spyOn(chatboxview, 'focus');
|
spyOn(chatboxview, 'focus');
|
||||||
$el = this.rosterview.$el.find('a.open-chat:contains("'+chatbox.get('fullname')+'")');
|
$el = this.rosterview.$el.find('a.open-chat:contains("'+chatbox.get('fullname')+'")');
|
||||||
jid = $el.text().replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = $el.text().replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
|
||||||
spyOn(view, 'openChat').andCallThrough();
|
|
||||||
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
|
||||||
$el.click();
|
$el.click();
|
||||||
expect(view.openChat).toHaveBeenCalled();
|
|
||||||
expect(this.chatboxes.length).toEqual(2);
|
expect(this.chatboxes.length).toEqual(2);
|
||||||
expect(chatboxview.focus).toHaveBeenCalled();
|
expect(chatboxview.focus).toHaveBeenCalled();
|
||||||
}, converse));
|
}, converse));
|
||||||
|
@ -220,12 +220,6 @@
|
|||||||
utils.createContacts('pending').openControlBox().openContactsPanel();
|
utils.createContacts('pending').openControlBox().openContactsPanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
it("do not have a header if there aren't any", $.proxy(function () {
|
|
||||||
_addContacts();
|
|
||||||
this.rosterview.model.reset();
|
|
||||||
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').css('display')).toEqual('none');
|
|
||||||
}, converse));
|
|
||||||
|
|
||||||
it("can be collapsed under their own header", $.proxy(function () {
|
it("can be collapsed under their own header", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt#pending-xmpp-contacts')]);
|
checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt#pending-xmpp-contacts')]);
|
||||||
@ -253,35 +247,51 @@
|
|||||||
|
|
||||||
it("can be removed by the user", $.proxy(function () {
|
it("can be removed by the user", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var jid = mock.pend_names[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var name = mock.pend_names[0];
|
||||||
var view = this.rosterview.get(jid);
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
spyOn(window, 'confirm').andReturn(true);
|
spyOn(window, 'confirm').andReturn(true);
|
||||||
spyOn(converse, 'emit');
|
spyOn(converse, 'emit');
|
||||||
spyOn(this.connection.roster, 'remove').andCallThrough();
|
spyOn(this.connection.roster, 'remove').andCallThrough();
|
||||||
spyOn(this.connection.roster, 'unauthorize');
|
spyOn(this.connection.roster, 'unauthorize');
|
||||||
spyOn(this.rosterview.model, 'remove').andCallThrough();
|
spyOn(this.rosterview.model, 'remove').andCallThrough();
|
||||||
spyOn(view, 'removeContact').andCallThrough();
|
|
||||||
spyOn(view, 'remove').andCallThrough();
|
|
||||||
view.delegateEvents();
|
|
||||||
|
|
||||||
view.$el.find('.remove-xmpp-contact').click();
|
converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
|
||||||
|
.siblings('.remove-xmpp-contact').click();
|
||||||
|
|
||||||
expect(window.confirm).toHaveBeenCalled();
|
expect(window.confirm).toHaveBeenCalled();
|
||||||
expect(this.connection.roster.remove).toHaveBeenCalled();
|
expect(this.connection.roster.remove).toHaveBeenCalled();
|
||||||
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
||||||
expect(this.rosterview.model.remove).toHaveBeenCalled();
|
expect(this.rosterview.model.remove).toHaveBeenCalled();
|
||||||
expect(view.removeContact).toHaveBeenCalled();
|
expect(converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')").length).toEqual(0);
|
||||||
expect(view.remove).toHaveBeenCalled();
|
|
||||||
// The element must now be detached from the DOM.
|
|
||||||
expect(view.$el.closest('html').length).toBeFalsy();
|
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
|
it("do not have a header if there aren't any", $.proxy(function () {
|
||||||
|
var name = mock.pend_names[0];
|
||||||
|
_clearContacts();
|
||||||
|
spyOn(window, 'confirm').andReturn(true);
|
||||||
|
this.roster.create({
|
||||||
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
|
subscription: 'none',
|
||||||
|
ask: 'subscribe',
|
||||||
|
fullname: name,
|
||||||
|
is_last: true
|
||||||
|
});
|
||||||
|
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').css('display')).toEqual('block');
|
||||||
|
converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
|
||||||
|
.siblings('.remove-xmpp-contact').click();
|
||||||
|
expect(window.confirm).toHaveBeenCalled();
|
||||||
|
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').css('display')).toEqual('none');
|
||||||
|
}, converse));
|
||||||
|
|
||||||
|
|
||||||
it("will lose their own header once the last one has been removed", $.proxy(function () {
|
it("will lose their own header once the last one has been removed", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var view;
|
var name;
|
||||||
spyOn(window, 'confirm').andReturn(true);
|
spyOn(window, 'confirm').andReturn(true);
|
||||||
for (i=0; i<mock.pend_names.length; i++) {
|
for (i=0; i<mock.pend_names.length; i++) {
|
||||||
view = this.rosterview.get(mock.pend_names[i].replace(/ /g,'.').toLowerCase() + '@localhost');
|
name = mock.pend_names[i];
|
||||||
view.$el.find('.remove-xmpp-contact').click();
|
converse.rosterview.$el.find(".pending-contact-name:contains('"+name+"')")
|
||||||
|
.siblings('.remove-xmpp-contact').click();
|
||||||
}
|
}
|
||||||
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').is(':visible')).toBeFalsy();
|
expect(this.rosterview.$el.find('dt#pending-xmpp-contacts').is(':visible')).toBeFalsy();
|
||||||
}, converse));
|
}, converse));
|
||||||
@ -321,13 +331,6 @@
|
|||||||
utils.createContacts().openControlBox().openContactsPanel();
|
utils.createContacts().openControlBox().openContactsPanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
it("do not have a header if there aren't any", $.proxy(function () {
|
|
||||||
// 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 () {
|
it("can be collapsed under their own header", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt.roster-group')]);
|
checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt.roster-group')]);
|
||||||
@ -353,18 +356,53 @@
|
|||||||
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
expect(t).toEqual(mock.cur_names.slice(0,i+1).sort().join(''));
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
|
it("can be removed by the user", $.proxy(function () {
|
||||||
|
_addContacts();
|
||||||
|
var name = mock.cur_names[0];
|
||||||
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
|
spyOn(window, 'confirm').andReturn(true);
|
||||||
|
spyOn(converse, 'emit');
|
||||||
|
spyOn(this.connection.roster, 'remove').andCallThrough();
|
||||||
|
spyOn(this.connection.roster, 'unauthorize');
|
||||||
|
spyOn(this.rosterview.model, 'remove').andCallThrough();
|
||||||
|
|
||||||
|
converse.rosterview.$el.find(".open-chat:contains('"+name+"')")
|
||||||
|
.siblings('.remove-xmpp-contact').click();
|
||||||
|
|
||||||
|
expect(window.confirm).toHaveBeenCalled();
|
||||||
|
expect(this.connection.roster.remove).toHaveBeenCalled();
|
||||||
|
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
||||||
|
expect(this.rosterview.model.remove).toHaveBeenCalled();
|
||||||
|
expect(converse.rosterview.$el.find(".open-chat:contains('"+name+"')").length).toEqual(0);
|
||||||
|
}, converse));
|
||||||
|
|
||||||
|
|
||||||
|
it("do not have a header if there aren't any", $.proxy(function () {
|
||||||
|
var name = mock.cur_names[0];
|
||||||
|
_clearContacts();
|
||||||
|
spyOn(window, 'confirm').andReturn(true);
|
||||||
|
this.roster.create({
|
||||||
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
|
subscription: 'both',
|
||||||
|
ask: null,
|
||||||
|
fullname: name,
|
||||||
|
is_last: true
|
||||||
|
});
|
||||||
|
expect(this.rosterview.$el.find('dt.roster-group').css('display')).toEqual('block');
|
||||||
|
converse.rosterview.$el.find(".open-chat:contains('"+name+"')")
|
||||||
|
.siblings('.remove-xmpp-contact').click();
|
||||||
|
expect(window.confirm).toHaveBeenCalled();
|
||||||
|
expect(this.rosterview.$el.find('dt.roster-group').css('display')).toEqual('none');
|
||||||
|
}, converse));
|
||||||
|
|
||||||
it("can change their status to online and be sorted alphabetically", $.proxy(function () {
|
it("can change their status to online and be sorted alphabetically", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var item, view, jid, t;
|
var jid, t;
|
||||||
spyOn(converse, 'emit');
|
spyOn(converse, 'emit');
|
||||||
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
||||||
for (i=0; i<mock.cur_names.length; i++) {
|
for (i=0; i<mock.cur_names.length; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'online');
|
||||||
spyOn(view, 'render').andCallThrough();
|
|
||||||
item = view.model;
|
|
||||||
item.set('chat_status', 'online');
|
|
||||||
expect(view.render).toHaveBeenCalled();
|
|
||||||
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.online').find('a.open-chat').text();
|
||||||
@ -374,16 +412,12 @@
|
|||||||
|
|
||||||
it("can change their status to busy and be sorted alphabetically", $.proxy(function () {
|
it("can change their status to busy and be sorted alphabetically", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var item, view, jid, t;
|
var jid, t;
|
||||||
spyOn(converse, 'emit');
|
spyOn(converse, 'emit');
|
||||||
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
||||||
for (i=0; i<mock.cur_names.length; i++) {
|
for (i=0; i<mock.cur_names.length; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'dnd');
|
||||||
spyOn(view, 'render').andCallThrough();
|
|
||||||
item = view.model;
|
|
||||||
item.set('chat_status', 'dnd');
|
|
||||||
expect(view.render).toHaveBeenCalled();
|
|
||||||
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.dnd').find('a.open-chat').text();
|
||||||
@ -393,16 +427,12 @@
|
|||||||
|
|
||||||
it("can change their status to away and be sorted alphabetically", $.proxy(function () {
|
it("can change their status to away and be sorted alphabetically", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var item, view, jid, t;
|
var jid, t;
|
||||||
spyOn(converse, 'emit');
|
spyOn(converse, 'emit');
|
||||||
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
||||||
for (i=0; i<mock.cur_names.length; i++) {
|
for (i=0; i<mock.cur_names.length; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'away');
|
||||||
spyOn(view, 'render').andCallThrough();
|
|
||||||
item = view.model;
|
|
||||||
item.set('chat_status', 'away');
|
|
||||||
expect(view.render).toHaveBeenCalled();
|
|
||||||
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.away').find('a.open-chat').text();
|
||||||
@ -412,16 +442,12 @@
|
|||||||
|
|
||||||
it("can change their status to xa and be sorted alphabetically", $.proxy(function () {
|
it("can change their status to xa and be sorted alphabetically", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var item, view, jid, t;
|
var jid, t;
|
||||||
spyOn(converse, 'emit');
|
spyOn(converse, 'emit');
|
||||||
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
||||||
for (i=0; i<mock.cur_names.length; i++) {
|
for (i=0; i<mock.cur_names.length; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'xa');
|
||||||
spyOn(view, 'render').andCallThrough();
|
|
||||||
item = view.model;
|
|
||||||
item.set('chat_status', 'xa');
|
|
||||||
expect(view.render).toHaveBeenCalled();
|
|
||||||
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.xa').find('a.open-chat').text();
|
||||||
@ -431,16 +457,12 @@
|
|||||||
|
|
||||||
it("can change their status to unavailable and be sorted alphabetically", $.proxy(function () {
|
it("can change their status to unavailable and be sorted alphabetically", $.proxy(function () {
|
||||||
_addContacts();
|
_addContacts();
|
||||||
var item, view, jid, t;
|
var jid, t;
|
||||||
spyOn(converse, 'emit');
|
spyOn(converse, 'emit');
|
||||||
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
spyOn(this.rosterview, 'updateCount').andCallThrough();
|
||||||
for (i=0; i<mock.cur_names.length; i++) {
|
for (i=0; i<mock.cur_names.length; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'unavailable');
|
||||||
spyOn(view, 'render').andCallThrough();
|
|
||||||
item = view.model;
|
|
||||||
item.set('chat_status', 'unavailable');
|
|
||||||
expect(view.render).toHaveBeenCalled();
|
|
||||||
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
expect(this.rosterview.updateCount).toHaveBeenCalled();
|
||||||
// Check that they are sorted alphabetically
|
// 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();
|
t = this.rosterview.$el.find('dt.roster-group').siblings('dd.current-xmpp-contact.unavailable').find('a.open-chat').text();
|
||||||
@ -453,28 +475,23 @@
|
|||||||
var i;
|
var i;
|
||||||
for (i=0; i<3; i++) {
|
for (i=0; i<3; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'online');
|
||||||
view.model.set('chat_status', 'online');
|
|
||||||
}
|
}
|
||||||
for (i=3; i<6; i++) {
|
for (i=3; i<6; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'dnd');
|
||||||
view.model.set('chat_status', 'dnd');
|
|
||||||
}
|
}
|
||||||
for (i=6; i<9; i++) {
|
for (i=6; i<9; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'away');
|
||||||
view.model.set('chat_status', 'away');
|
|
||||||
}
|
}
|
||||||
for (i=9; i<12; i++) {
|
for (i=9; i<12; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'xa');
|
||||||
view.model.set('chat_status', 'xa');
|
|
||||||
}
|
}
|
||||||
for (i=12; i<15; i++) {
|
for (i=12; i<15; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'unavailable');
|
||||||
view.model.set('chat_status', 'unavailable');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var contacts = this.rosterview.$el.find('dd.current-xmpp-contact');
|
var contacts = this.rosterview.$el.find('dd.current-xmpp-contact');
|
||||||
@ -512,13 +529,6 @@
|
|||||||
});
|
});
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
it("do not have a header if there aren't any", $.proxy(function () {
|
|
||||||
// by default the dts are hidden from css class and only later they will be hidden
|
|
||||||
// by jQuery therefore for the first check we will see if visible instead of none
|
|
||||||
converse.rosterview.model.reset();
|
|
||||||
expect(this.rosterview.$el.find('dt#xmpp-contact-requests').is(':visible')).toEqual(false);
|
|
||||||
}, converse));
|
|
||||||
|
|
||||||
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
it("can be added to the roster and they will be sorted alphabetically", $.proxy(function () {
|
||||||
converse.rosterview.model.reset(); // We want to manually create users so that we can spy
|
converse.rosterview.model.reset(); // We want to manually create users so that we can spy
|
||||||
var i, children;
|
var i, children;
|
||||||
@ -552,6 +562,26 @@
|
|||||||
expect(names.join('')).toEqual(mock.req_names.slice(0,i+1).sort().join(''));
|
expect(names.join('')).toEqual(mock.req_names.slice(0,i+1).sort().join(''));
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
|
it("do not have a header if there aren't any", $.proxy(function () {
|
||||||
|
converse.rosterview.model.reset(); // We want to manually create users so that we can spy
|
||||||
|
var name = mock.req_names[0];
|
||||||
|
spyOn(window, 'confirm').andReturn(true);
|
||||||
|
this.roster.create({
|
||||||
|
jid: name.replace(/ /g,'.').toLowerCase() + '@localhost',
|
||||||
|
subscription: 'none',
|
||||||
|
ask: null,
|
||||||
|
requesting: true,
|
||||||
|
fullname: name,
|
||||||
|
is_last: true
|
||||||
|
});
|
||||||
|
expect(this.rosterview.$('dt#xmpp-contact-requests').css('display')).toEqual('block');
|
||||||
|
converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
|
||||||
|
.siblings('.request-actions')
|
||||||
|
.find('.decline-xmpp-request').click();
|
||||||
|
expect(window.confirm).toHaveBeenCalled();
|
||||||
|
expect(this.rosterview.$el.find('dt#xmpp-contact-requests').is(':visible')).toEqual(false);
|
||||||
|
}, converse));
|
||||||
|
|
||||||
it("can be collapsed under their own header", $.proxy(function () {
|
it("can be collapsed under their own header", $.proxy(function () {
|
||||||
checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt#xmpp-contact-requests')]);
|
checkHeaderToggling.apply(this, [this.rosterview.$el.find('dt#xmpp-contact-requests')]);
|
||||||
}, converse));
|
}, converse));
|
||||||
@ -560,14 +590,14 @@
|
|||||||
// TODO: Testing can be more thorough here, the user is
|
// TODO: Testing can be more thorough here, the user is
|
||||||
// actually not accepted/authorized because of
|
// actually not accepted/authorized because of
|
||||||
// mock_connection.
|
// mock_connection.
|
||||||
var jid = mock.req_names.sort()[0].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var name = mock.req_names.sort()[0];
|
||||||
var view = this.rosterview.get(jid);
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
spyOn(this.connection.roster, 'authorize');
|
spyOn(this.connection.roster, 'authorize');
|
||||||
spyOn(view, 'acceptRequest').andCallThrough();
|
|
||||||
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
|
||||||
var accept_button = view.$el.find('.accept-xmpp-request');
|
.siblings('.request-actions')
|
||||||
accept_button.click();
|
.find('.accept-xmpp-request').click();
|
||||||
expect(view.acceptRequest).toHaveBeenCalled();
|
|
||||||
expect(this.connection.roster.authorize).toHaveBeenCalled();
|
expect(this.connection.roster.authorize).toHaveBeenCalled();
|
||||||
}, converse));
|
}, converse));
|
||||||
|
|
||||||
@ -580,14 +610,12 @@
|
|||||||
this.rosterview.initialize(); // Must be initialized only after the spy has been called
|
this.rosterview.initialize(); // Must be initialized only after the spy has been called
|
||||||
utils.createContacts('requesting').openControlBox();
|
utils.createContacts('requesting').openControlBox();
|
||||||
|
|
||||||
var jid = mock.req_names.sort()[1].replace(/ /g,'.').toLowerCase() + '@localhost';
|
var name = mock.req_names.sort()[1];
|
||||||
var view = this.rosterview.get(jid);
|
var jid = name.replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
spyOn(view, 'declineRequest').andCallThrough();
|
converse.rosterview.$el.find(".req-contact-name:contains('"+name+"')")
|
||||||
view.delegateEvents(); // We need to rebind all events otherwise our spy won't be called
|
.siblings('.request-actions')
|
||||||
|
.find('.decline-xmpp-request').click();
|
||||||
|
|
||||||
var accept_button = view.$el.find('.decline-xmpp-request');
|
|
||||||
accept_button.click();
|
|
||||||
expect(view.declineRequest).toHaveBeenCalled();
|
|
||||||
expect(window.confirm).toHaveBeenCalled();
|
expect(window.confirm).toHaveBeenCalled();
|
||||||
expect(this.rosterview.update).toHaveBeenCalled();
|
expect(this.rosterview.update).toHaveBeenCalled();
|
||||||
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
expect(this.connection.roster.unauthorize).toHaveBeenCalled();
|
||||||
@ -643,8 +671,7 @@
|
|||||||
// we make some online now
|
// we make some online now
|
||||||
for (i=0; i<5; i++) {
|
for (i=0; i<5; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
view = this.rosterview.get(jid);
|
this.roster.get(jid).set('chat_status', 'online');
|
||||||
view.model.set('chat_status', 'online');
|
|
||||||
}
|
}
|
||||||
}, converse));
|
}, converse));
|
||||||
}, converse));
|
}, converse));
|
||||||
|
@ -80,13 +80,21 @@
|
|||||||
var i = 0, jid, views = [];
|
var i = 0, jid, views = [];
|
||||||
for (i; i<amount; i++) {
|
for (i; i<amount; i++) {
|
||||||
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
jid = mock.cur_names[i].replace(/ /g,'.').toLowerCase() + '@localhost';
|
||||||
views[i] = converse.rosterview.get(jid).openChat(mock.event);
|
views[i] = converse.roster.get(jid).trigger("open");
|
||||||
}
|
}
|
||||||
return views;
|
return views;
|
||||||
};
|
};
|
||||||
|
|
||||||
utils.openChatBoxFor = function (jid) {
|
utils.openChatBoxFor = function (jid) {
|
||||||
return converse.rosterview.get(jid).openChat(mock.event);
|
return converse.roster.get(jid).trigger("open");
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.removeRosterContacts = function () {
|
||||||
|
var model;
|
||||||
|
while (converse.rosterview.model.length) {
|
||||||
|
model = converse.rosterview.model.pop();
|
||||||
|
converse.rosterview.model.remove(model);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
utils.clearBrowserStorage = function () {
|
utils.clearBrowserStorage = function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user