Refactor to no longer call muc.listRooms. updates #307

This commit is contained in:
JC Brand 2015-03-01 13:32:53 +01:00
parent 79a5121219
commit c7d5b8b13f
2 changed files with 20 additions and 8 deletions

View File

@ -1790,9 +1790,16 @@
}, },
updateRoomsList: function () { updateRoomsList: function () {
converse.connection.muc.listRooms( /* Send and IQ stanza to the server asking for all rooms
this.model.get('muc_domain'), */
$.proxy(function (iq) { // Success converse.connection.sendIQ(
$iq({
to: this.model.get('muc_domain'),
from: converse.connection.jid,
type: "get"
}).c("query", {xmlns: Strophe.NS.DISCO_ITEMS}),
// Succcess Handler
$.proxy(function (iq) {
var name, jid, i, fragment, var name, jid, i, fragment,
that = this, that = this,
$available_chatrooms = this.$el.find('#available-chatrooms'); $available_chatrooms = this.$el.find('#available-chatrooms');
@ -1821,9 +1828,8 @@
} }
return true; return true;
}, this), }, this),
$.proxy(function (iq) { // Failure // Error handler
this.informNoRoomsFound(); $.proxy(function (iq) { this.informNoRoomsFound(); }, this));
}, this));
}, },
showRooms: function (ev) { showRooms: function (ev) {

View File

@ -1112,6 +1112,12 @@
expect($('.chatroom:visible').length).toBe(1); // There should now be an open chatroom expect($('.chatroom:visible').length).toBe(1); // There should now be an open chatroom
}, converse)); }, converse));
}, converse)); }, converse));
it("lists rooms currently on the server", $.proxy(function () {
// TODO: test updateRoomsList
// See: http://xmpp.org/extensions/xep-0045.html#disco-rooms
}, converse));
}, converse)); }, converse));
}, converse, mock, test_utils)); }, converse, mock, test_utils));
})); }));