Use 'type' = 'chatroom' instead of 'chatroom' boolean.
This commit is contained in:
parent
3aefba3200
commit
2d846961c2
@ -36,10 +36,7 @@
|
||||
ChatBoxViews: {
|
||||
onChatBoxAdded: function (item) {
|
||||
var view = this.get(item.get('id'));
|
||||
// FIXME: leaky abstraction from chatroom here, need to
|
||||
// come up with a nicer solution for this.
|
||||
// Perhaps change 'chatroom' to more generic non-boolean
|
||||
if (!view && !item.get('chatroom')) {
|
||||
if (!view) {
|
||||
view = new converse.ChatBoxView({model: item});
|
||||
this.add(item.get('id'), view);
|
||||
return view;
|
||||
@ -600,7 +597,8 @@
|
||||
message = $textarea.val();
|
||||
$textarea.val('').focus();
|
||||
if (message !== '') {
|
||||
if (this.model.get('chatroom')) {
|
||||
// XXX: leaky abstraction from MUC
|
||||
if (this.model.get('type') === 'chatroom') {
|
||||
this.onChatRoomMessageSubmitted(message);
|
||||
} else {
|
||||
this.onMessageSubmitted(message);
|
||||
@ -608,7 +606,8 @@
|
||||
converse.emit('messageSend', message);
|
||||
}
|
||||
this.setChatState(converse.ACTIVE);
|
||||
} else if (!this.model.get('chatroom')) { // chat state data is currently only for single user chat
|
||||
// XXX: leaky abstraction from MUC
|
||||
} else if (this.model.get('type') !== 'chatroom') { // chat state data is currently only for single user chat
|
||||
// Set chat state to composing if keyCode is not a forward-slash
|
||||
// (which would imply an internal command and not a message).
|
||||
this.setChatState(converse.COMPOSING, ev.keyCode === KEY.FORWARD_SLASH);
|
||||
|
@ -88,9 +88,9 @@
|
||||
var view = this.get(item.get('id'));
|
||||
if (!view && item.get('box_id') === 'controlbox') {
|
||||
view = new converse.ControlBoxView({model: item});
|
||||
this.add(item.get('id'), view);
|
||||
return this.add(item.get('id'), view);
|
||||
} else {
|
||||
this._super.onChatBoxAdded.apply(this, arguments);
|
||||
return this._super.onChatBoxAdded.apply(this, arguments);
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -171,7 +171,7 @@
|
||||
'jid': room_jid,
|
||||
'name': Strophe.unescapeNode(Strophe.getNodeFromJid(room_jid)),
|
||||
'nick': Strophe.unescapeNode(Strophe.getNodeFromJid(converse.connection.jid)),
|
||||
'chatroom': true,
|
||||
'type': 'chatroom',
|
||||
'box_id': b64_sha1(room_jid),
|
||||
'password': $x.attr('password')
|
||||
});
|
||||
@ -188,11 +188,11 @@
|
||||
ChatBoxViews: {
|
||||
onChatBoxAdded: function (item) {
|
||||
var view = this.get(item.get('id'));
|
||||
if (!view && item.get('chatroom')) {
|
||||
if (!view && item.get('type') === 'chatroom') {
|
||||
view = new converse.ChatRoomView({'model': item});
|
||||
this.add(item.get('id'), view);
|
||||
return this.add(item.get('id'), view);
|
||||
} else {
|
||||
this._super.onChatBoxAdded.apply(this, arguments);
|
||||
return this._super.onChatBoxAdded.apply(this, arguments);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1322,7 +1322,7 @@
|
||||
'jid': jid,
|
||||
'name': name || Strophe.unescapeNode(Strophe.getNodeFromJid(jid)),
|
||||
'nick': nick,
|
||||
'chatroom': true,
|
||||
'type': 'chatroom',
|
||||
'box_id': b64_sha1(jid)
|
||||
});
|
||||
},
|
||||
@ -1358,7 +1358,7 @@
|
||||
'jid': jid,
|
||||
'name': Strophe.unescapeNode(Strophe.getNodeFromJid(jid)),
|
||||
'nick': nick,
|
||||
'chatroom': true,
|
||||
'type': 'chatroom',
|
||||
'box_id': b64_sha1(jid)
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user