2012-06-23 14:26:04 +02:00
|
|
|
xmppchat.UI = (function (xmppUI, $, console) {
|
|
|
|
var ob = xmppUI;
|
|
|
|
ob.chats = [];
|
|
|
|
ob.chat_focus = [];
|
|
|
|
ob.chatbox_width = 205;
|
|
|
|
|
|
|
|
ob.sanitizePath = function (call) {
|
|
|
|
return xmppchat.base_url + call;
|
|
|
|
};
|
|
|
|
|
2012-07-06 19:02:24 +02:00
|
|
|
ob.addUserToRosterUI = function (user_id, bare_jid, fullname, userstatus) {
|
2012-07-03 22:31:52 +02:00
|
|
|
if ($('#online-users-' + user_id).length > 0) { return; }
|
2012-07-06 19:02:24 +02:00
|
|
|
var li = $('<li></li>').addClass(userstatus).attr('id', 'online-users-'+user_id).attr('data-recipient', bare_jid);
|
2012-07-03 22:31:52 +02:00
|
|
|
li.append($('<a title="Click to chat with this contact"></a>').addClass('user-details-toggle').text(fullname));
|
|
|
|
li.append($('<a title="Click to remove this contact" href="#"></a>').addClass('remove-xmpp-contact'));
|
|
|
|
$('#xmpp-contacts').append(li);
|
|
|
|
};
|
|
|
|
|
2012-06-23 14:26:04 +02:00
|
|
|
ob.updateOnPresence = function (jid, status, presence) {
|
2012-06-24 12:16:01 +02:00
|
|
|
var user_id = Strophe.getNodeFromJid(jid),
|
2012-06-25 09:28:24 +02:00
|
|
|
bare_jid = Strophe.getBareJidFromJid(jid),
|
2012-07-01 19:49:58 +02:00
|
|
|
resource,
|
|
|
|
online_count,
|
|
|
|
$chat = $("#"+helpers.hash(bare_jid)),
|
|
|
|
$chat_content,
|
|
|
|
existing_user_element = $('#online-users-' + user_id);
|
2012-06-24 12:07:07 +02:00
|
|
|
|
|
|
|
if (xmppchat.isOwnUser(jid)) { return; }
|
|
|
|
|
2012-07-01 19:49:58 +02:00
|
|
|
if ($chat.length > 0) {
|
|
|
|
$chat_content = $chat.find(".chat-content");
|
|
|
|
$chat_content.find('div.chat-event').remove();
|
|
|
|
if (status === 'offline') {
|
2012-06-24 12:07:07 +02:00
|
|
|
xmppchat.Presence.getUserInfo(user_id, function (data) {
|
2012-07-01 19:49:58 +02:00
|
|
|
$chat_content.append($('<div></div>').addClass('chat-event').text(data.fullname + ' has gone offline.'));
|
|
|
|
$chat_content.scrollTop($content[0].scrollHeight);
|
2012-06-24 12:07:07 +02:00
|
|
|
});
|
2012-07-03 22:31:52 +02:00
|
|
|
} else if (status === 'unsubscribe') {
|
|
|
|
xmppchat.Presence.getUserInfo(user_id, function (data) {
|
|
|
|
$chat_content.append($('<div></div>').addClass('chat-event').text(data.fullname + ' has removed you as a contact.'));
|
|
|
|
$chat_content.scrollTop($content[0].scrollHeight);
|
|
|
|
});
|
|
|
|
if (existing_user_element.length > 0) {
|
|
|
|
existing_user_element.remove();
|
|
|
|
}
|
|
|
|
$('#online-count').text(xmppchat.Presence.onlineCount());
|
|
|
|
return;
|
2012-06-24 12:07:07 +02:00
|
|
|
}
|
2012-06-23 14:26:04 +02:00
|
|
|
}
|
2012-07-01 19:49:58 +02:00
|
|
|
|
|
|
|
if (existing_user_element.length > 0) {
|
|
|
|
existing_user_element.attr('class', status);
|
|
|
|
} else if ((status !== 'offline') && (status !== 'unavailable')) {
|
|
|
|
xmppchat.Presence.getUserInfo(user_id, function (data) {
|
2012-07-06 19:02:24 +02:00
|
|
|
xmppchat.UI.addUserToRosterUI(user_id, bare_jid, data.fullname, status);
|
2012-07-01 19:49:58 +02:00
|
|
|
});
|
|
|
|
} else { // status is offline and the user isn't shown as online
|
|
|
|
return;
|
|
|
|
}
|
2012-06-24 11:33:34 +02:00
|
|
|
$('#online-count').text(xmppchat.Presence.onlineCount());
|
2012-06-23 14:26:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
ob.positionNewChat = function ($chat) {
|
|
|
|
var open_chats = 0,
|
|
|
|
offset;
|
|
|
|
for (var i=0; i<this.chats.length; i++) {
|
|
|
|
if ($("#"+helpers.hash(this.chats[i])).is(':visible')) {
|
|
|
|
open_chats++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (open_chats === 0) {
|
|
|
|
$chat.animate({'right':'15px'});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
offset = (open_chats)*(this.chatbox_width+7)+15;
|
|
|
|
$chat.animate({'right': (offset+'px')});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.handleChatEvents = function (chat_id) {
|
|
|
|
var chat_area = $("#"+chat_id+" .chat-textarea"),
|
|
|
|
chat_type = chat_id.split('_')[0],
|
|
|
|
that = this;
|
|
|
|
|
|
|
|
that.chat_focus[chat_id] = false;
|
|
|
|
chat_area.blur(function () {
|
|
|
|
that.chat_focus[chat_id] = false;
|
|
|
|
chat_area.removeClass('chat-textarea-'+chat_type+'-selected');
|
|
|
|
}).focus(function (){
|
|
|
|
that.chat_focus[chat_id] = true;
|
|
|
|
chat_area.addClass('chat-textarea-'+chat_type+'-selected');
|
|
|
|
});
|
|
|
|
var chatbox = $("#"+chat_id);
|
|
|
|
chatbox.click(function () {
|
|
|
|
if (chatbox.find('.chat-content').is(':visible')) {
|
|
|
|
chatbox.find('.chat-textarea').focus();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2012-07-01 12:04:31 +02:00
|
|
|
ob.insertCollectionMessages = function ($chat, bare_jid, recipient_name) {
|
|
|
|
xmppchat.Collections.getLastMessages(bare_jid, function (result) {
|
|
|
|
$('body').append($chat);
|
|
|
|
$(result).find('chat').children().each(function (idx, el) {
|
|
|
|
if (el.tagName !== 'set') {
|
|
|
|
// TODO: Calculate the time. We have the start time and the offset for each message...
|
|
|
|
var text = $(el).find('body').text(),
|
|
|
|
now = new Date(),
|
|
|
|
time = now.toLocaleTimeString().substring(0,5),
|
|
|
|
$content = $chat.find('.chat-content');
|
|
|
|
div = $('<div class="chat-message delayed"></div>');
|
|
|
|
|
|
|
|
if (el.tagName == 'to') {
|
|
|
|
message_html = div.append(
|
|
|
|
'<span class="chat-message-me">'+time+' me: </span>' +
|
|
|
|
'<span class="chat-message-content">'+text+'</span>'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
message_html = div.append(
|
|
|
|
'<span class="chat-message-them">'+time+' '+recipient_name+': </span>' +
|
|
|
|
'<span class="chat-message-content">'+text+'</span>'
|
|
|
|
);
|
2012-06-25 09:28:24 +02:00
|
|
|
}
|
2012-07-01 12:04:31 +02:00
|
|
|
$content.append(message_html);
|
|
|
|
$content.scrollTop($content[0].scrollHeight);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
callback($chat);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.insertClientStoredMessages = function ($chat, bare_jid, recipient_name) {
|
|
|
|
xmppchat.Messages.getMessages(bare_jid, function (msgs) {
|
|
|
|
$(msgs).each(function (idx, msg) {
|
|
|
|
var msg_array = msg.split(' ', 2),
|
|
|
|
date = msg_array[0],
|
|
|
|
time = new Date(Date.parse(date)).toLocaleTimeString().substring(0,5),
|
|
|
|
direction = msg_array[1],
|
|
|
|
text = String(msg).replace(/(.*?\s.*?\s)/, '');
|
|
|
|
$content = $chat.find('.chat-content');
|
|
|
|
div = $('<div class="chat-message delayed"></div>');
|
|
|
|
|
|
|
|
if (direction == 'to') {
|
|
|
|
message_html = div.append(
|
|
|
|
'<span class="chat-message-me">'+time+' me: </span>' +
|
|
|
|
'<span class="chat-message-content">'+text+'</span>'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
message_html = div.append(
|
|
|
|
'<span class="chat-message-them">'+time+' '+recipient_name+': </span>' +
|
|
|
|
'<span class="chat-message-content">'+text+'</span>'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$content.append(message_html);
|
|
|
|
$content.scrollTop($content[0].scrollHeight);
|
2012-06-25 09:28:24 +02:00
|
|
|
});
|
2012-06-23 14:26:04 +02:00
|
|
|
});
|
|
|
|
};
|
2012-07-01 12:04:31 +02:00
|
|
|
|
|
|
|
ob.createChatbox = function (bare_jid, callback) {
|
|
|
|
var user_id = Strophe.getNodeFromJid(bare_jid),
|
|
|
|
that = this;
|
|
|
|
xmppchat.Presence.getUserInfo(user_id, function (data) {
|
|
|
|
var chat_id = helpers.hash(bare_jid);
|
|
|
|
var $chat = $('<div class="chatbox"></div>').attr('id', chat_id).hide();
|
|
|
|
var $head = $('<div class="chat-head chat-head-chatbox"></div>')
|
|
|
|
.append($('<div class="chat-title"></div>').text(data.fullname))
|
|
|
|
.append($('<a href="javascript:void(0)" class="chatbox-button close-chatbox-button">X</a>')
|
|
|
|
.attr('data-recipient', bare_jid))
|
|
|
|
.append('<br clear="all"/>');
|
|
|
|
var $content = $('<div class="chat-content"></div>');
|
|
|
|
var $form = $('<form class="sendXMPPMessage" action="" method="post">')
|
|
|
|
.append(
|
|
|
|
$('<textarea type="text" ' +
|
|
|
|
'class="chat-textarea" ' +
|
|
|
|
'placeholder="Personal message"/>').attr('data-recipient', bare_jid));
|
|
|
|
$chat.append($head).append($content).append($form);
|
|
|
|
$('body').append($chat);
|
|
|
|
callback($chat);
|
|
|
|
});
|
|
|
|
};
|
2012-06-25 09:28:24 +02:00
|
|
|
/*
|
|
|
|
$chat.find('.chat-message .time').each(function () {
|
|
|
|
var jthis = $(this);
|
|
|
|
var time = jthis.text().split(':');
|
|
|
|
var hour = time[0];
|
|
|
|
var minutes = time[1];
|
|
|
|
var date = new Date();
|
|
|
|
date.setHours(hour - date.getTimezoneOffset() / 60);
|
|
|
|
date.setMinutes(minutes);
|
|
|
|
jthis.replaceWith(date.toLocaleTimeString().substring(0,5));
|
|
|
|
});
|
|
|
|
*/
|
2012-06-23 14:26:04 +02:00
|
|
|
|
|
|
|
ob.prepNewChat = function (chat, jid) {
|
|
|
|
// Some operations that need to be applied on a chatbox
|
|
|
|
// after it has been created.
|
|
|
|
var chat_content,
|
|
|
|
value;
|
|
|
|
if (jid === 'online-users-container') {
|
|
|
|
// Make sure the xmpp status is correctly set on the control box
|
|
|
|
value = xmppchat.Storage.get(xmppchat.username+'-xmpp-status') || 'online';
|
|
|
|
$(chat).find('#select-xmpp-status').val(value);
|
|
|
|
} else {
|
|
|
|
chat_content = $(chat).find('.chat-content');
|
|
|
|
$(chat).find(".chat-textarea").focus();
|
|
|
|
if (chat_content.length > 0) {
|
|
|
|
chat_content.scrollTop(chat_content[0].scrollHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-06 19:02:24 +02:00
|
|
|
if (_.indexOf(this.chats, jid) == -1) {
|
2012-06-23 14:26:04 +02:00
|
|
|
this.chats.push(jid);
|
|
|
|
}
|
|
|
|
this.addChatToCookie(jid);
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.getChatbox = function (jid, callback) {
|
|
|
|
// Get a chatbox. Either it exists, then just ensure
|
|
|
|
// that it's visible and return it. Otherwise, create it.
|
|
|
|
//
|
|
|
|
// This method can be deferred.
|
|
|
|
// http://www.erichynds.com/jquery/using-deferreds-in-jquery/
|
2012-06-25 07:55:43 +02:00
|
|
|
var bare_jid = Strophe.getBareJidFromJid(jid),
|
|
|
|
chat_content,
|
|
|
|
chat_id = helpers.hash(bare_jid),
|
2012-06-23 14:26:04 +02:00
|
|
|
$chat = $("#"+chat_id),
|
|
|
|
that = this,
|
|
|
|
dfd = $.Deferred();
|
|
|
|
|
|
|
|
if (callback === undefined) {
|
|
|
|
callback = function () {};
|
|
|
|
}
|
|
|
|
if ($chat.length > 0) {
|
|
|
|
if ($chat.is(':visible')) {
|
|
|
|
callback($chat);
|
|
|
|
dfd.resolve();
|
|
|
|
} else {
|
|
|
|
// The chatbox exists, merely hidden
|
|
|
|
$chat.show('fast', function () {
|
2012-06-25 07:55:43 +02:00
|
|
|
that.prepNewChat(this, bare_jid);
|
2012-06-23 14:26:04 +02:00
|
|
|
that.reorderChats();
|
|
|
|
callback(this);
|
|
|
|
dfd.resolve();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2012-06-25 07:55:43 +02:00
|
|
|
this.createChatbox(bare_jid, function ($chat) {
|
2012-06-23 14:26:04 +02:00
|
|
|
// that.retrieveCollections();
|
|
|
|
that.positionNewChat($chat);
|
|
|
|
$chat.show('fast', function () {
|
2012-06-25 07:55:43 +02:00
|
|
|
that.prepNewChat(this, bare_jid);
|
2012-06-23 14:26:04 +02:00
|
|
|
that.handleChatEvents(chat_id);
|
|
|
|
callback(this);
|
|
|
|
dfd.resolve();
|
2012-07-01 12:04:31 +02:00
|
|
|
// FIXME: We need to check here whether local or remote storage
|
|
|
|
// must be used. For now we just use local storage.
|
|
|
|
// ob.insertCollectionMessages
|
|
|
|
that.insertClientStoredMessages($chat, bare_jid, $chat.find('.chat-title').text());
|
2012-06-23 14:26:04 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return dfd.promise();
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.reorderChats = function () {
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.addChatToCookie = function (jid) {
|
|
|
|
var cookie = jQuery.cookie('chats-open-'+xmppchat.username),
|
|
|
|
new_cookie,
|
|
|
|
open_chats = [];
|
|
|
|
|
|
|
|
if (cookie) {
|
|
|
|
open_chats = cookie.split('|');
|
|
|
|
}
|
|
|
|
if (!(jid in helpers.oc(open_chats))) {
|
|
|
|
// Update the cookie if this new chat is not yet in it.
|
|
|
|
open_chats.push(jid);
|
|
|
|
new_cookie = open_chats.join('|');
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, new_cookie, {path: '/'});
|
|
|
|
console.log('updated cookie = ' + new_cookie + '\n');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.removeChatFromCookie = function (jid) {
|
|
|
|
var cookie = jQuery.cookie('chats-open-'+xmppchat.username),
|
|
|
|
open_chats = [],
|
|
|
|
new_chats = [];
|
|
|
|
|
|
|
|
if (cookie) {
|
|
|
|
open_chats = cookie.split('|');
|
|
|
|
}
|
|
|
|
for (var i=0; i < open_chats.length; i++) {
|
|
|
|
if (open_chats[i] != jid) {
|
|
|
|
new_chats.push(open_chats[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (new_chats.length) {
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, new_chats.join('|'), {path: '/'});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, null, {path: '/'});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.addMessageToChatbox = function (event) {
|
|
|
|
/* XXX: event.mtype should be 'xhtml' for XHTML-IM messages,
|
|
|
|
but I only seem to get 'text'.
|
|
|
|
|
|
|
|
XXX: Some messages might be delayed, we must get the time from the event.
|
|
|
|
*/
|
|
|
|
var user_id = Strophe.getNodeFromJid(event.from),
|
|
|
|
jid = Strophe.getBareJidFromJid(event.from),
|
|
|
|
that = this;
|
|
|
|
|
|
|
|
xmppchat.Presence.getUserInfo(user_id, function (data) {
|
|
|
|
that.getChatbox(jid, function (chat) {
|
|
|
|
var chat_content = $(chat).find(".chat-content"),
|
|
|
|
now = new Date(),
|
|
|
|
time = now.toLocaleTimeString().substring(0,5),
|
2012-07-01 13:12:02 +02:00
|
|
|
div = $('<div></div>'),
|
|
|
|
composing = $(event.message).find('composing'),
|
|
|
|
text;
|
2012-06-23 14:26:04 +02:00
|
|
|
|
2012-07-01 13:12:02 +02:00
|
|
|
if (event.body) {
|
|
|
|
text = event.body.replace(/<br \/>/g, "");
|
|
|
|
div.addClass('chat-message');
|
|
|
|
|
|
|
|
if (event.delayed) {
|
|
|
|
div.addClass('delayed');
|
|
|
|
}
|
|
|
|
if (user_id == that.username) {
|
|
|
|
message_html = div.append(
|
|
|
|
'<span class="chat-message-me">'+time+' me: </span>' +
|
|
|
|
'<span class="chat-message-content">'+text+'</span>'
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
message_html = div.append(
|
|
|
|
'<span class="chat-message-them">'+time+' '+data.fullname+': </span>' +
|
|
|
|
'<span class="chat-message-content">'+text+'</span>'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
chat_content.find('div.chat-event').remove();
|
|
|
|
chat_content.append(message_html);
|
|
|
|
xmppchat.UI.msg_counter += 1;
|
|
|
|
xmppchat.UI.updateMsgCounter();
|
|
|
|
|
|
|
|
} else if (composing.length > 0) {
|
|
|
|
message_html = div.addClass('chat-event').text(data.fullname + ' is typing...');
|
|
|
|
chat_content.find('div.chat-event').remove().end().append(message_html);
|
2012-06-23 14:26:04 +02:00
|
|
|
}
|
|
|
|
chat_content.scrollTop(chat_content[0].scrollHeight);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
ob.closeChat = function (jid) {
|
|
|
|
var chat_id = helpers.hash(jid),
|
|
|
|
that = this;
|
|
|
|
jQuery('#'+chat_id).hide('fast', function () {
|
|
|
|
var idx = that.chats.indexOf(jid);
|
|
|
|
if (idx !== undefined) {
|
|
|
|
that.chats.splice(idx, 1);
|
|
|
|
}
|
|
|
|
that.removeChatFromCookie(jid);
|
|
|
|
that.reorderChats();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ob.keyPressed = function (ev, textarea) {
|
2012-07-01 12:45:04 +02:00
|
|
|
var $textarea = jQuery(textarea),
|
|
|
|
jid = $textarea.attr('data-recipient'), // FIXME: bare jid
|
|
|
|
$chat = $textarea.parent().parent(),
|
|
|
|
message,
|
|
|
|
notify,
|
|
|
|
composing;
|
|
|
|
|
|
|
|
if(ev.keyCode == 13) {
|
|
|
|
message = $textarea.val();
|
2012-06-23 14:26:04 +02:00
|
|
|
message = message.replace(/^\s+|\s+jQuery/g,"");
|
|
|
|
$textarea.val('').focus();
|
|
|
|
if (message !== '') {
|
|
|
|
xmppchat.Messages.sendMessage(jid, message, function () {
|
2012-07-01 12:45:04 +02:00
|
|
|
var time,
|
|
|
|
minutes,
|
|
|
|
now,
|
|
|
|
$chat_content;
|
2012-06-23 14:26:04 +02:00
|
|
|
|
|
|
|
message = message.replace(/</g,"<").replace(/>/g,">").replace(/\"/g,""");
|
|
|
|
list = message.match(/\b(http:\/\/www\.\S+\.\w+|www\.\S+\.\w+|http:\/\/(?=[^w]){3}\S+[\.:]\S+)[^ ]+\b/g);
|
|
|
|
if (list) {
|
|
|
|
for (i = 0; i < list.length; i++) {
|
|
|
|
message = message.replace( list[i], "<a target='_blank' href='" + escape( list[i] ) + "'>"+ list[i] + "</a>" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
now = new Date();
|
|
|
|
minutes = now.getMinutes().toString();
|
|
|
|
if (minutes.length==1) {minutes = '0'+minutes;}
|
|
|
|
time = now.toLocaleTimeString().substring(0,5);
|
2012-07-01 12:45:04 +02:00
|
|
|
$chat_content = $chat.find('.chat-content');
|
|
|
|
$chat_content.append(
|
2012-06-23 14:26:04 +02:00
|
|
|
'<div class="chat-message">' +
|
|
|
|
'<span class="chat-message-me">'+time+' me: </span>' +
|
|
|
|
'<span class="chat-message-content">'+message+'</span>' +
|
|
|
|
'</div>');
|
2012-07-01 12:45:04 +02:00
|
|
|
$chat_content.scrollTop($chat_content[0].scrollHeight);
|
|
|
|
$chat.data('composing', false);
|
2012-06-23 14:26:04 +02:00
|
|
|
});
|
|
|
|
}
|
2012-07-01 12:45:04 +02:00
|
|
|
} else {
|
|
|
|
composing = $chat.data('composing');
|
|
|
|
if (!composing) {
|
|
|
|
notify = $msg({'to':jid, 'type': 'chat'})
|
|
|
|
.c('composing', {'xmlns':'http://jabber.org/protocol/chatstates'});
|
|
|
|
xmppchat.connection.send(notify);
|
|
|
|
$chat.data('composing', true);
|
|
|
|
}
|
2012-06-23 14:26:04 +02:00
|
|
|
}
|
|
|
|
};
|
2012-07-03 13:15:45 +02:00
|
|
|
|
2012-07-04 11:28:43 +02:00
|
|
|
ob.setOwnStatus = function (el) {
|
|
|
|
var jid = xmppchat.connection.jid,
|
|
|
|
value = $(el).find('span').text();
|
|
|
|
|
|
|
|
$(".dropdown dt a").html('I am ' + value);
|
|
|
|
$(".dropdown dt a").attr('class', value);
|
|
|
|
$(".dropdown dd ul").hide();
|
|
|
|
$("#source").val($(el).find("span.value").html());
|
|
|
|
|
|
|
|
xmppchat.Presence.sendPresence(value);
|
|
|
|
xmppchat.Storage.set(xmppchat.username+'-xmpp-status', value);
|
|
|
|
};
|
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
ob.createStatusSelectWidget = function () {
|
|
|
|
var select = $('select#select-xmpp-status'),
|
|
|
|
selected = select.find('option[selected]'),
|
|
|
|
chat_status = selected.val() || xmppchat.Presence.getOwnStatus() || 'online';
|
|
|
|
options = $('option', select);
|
|
|
|
|
|
|
|
// create <dl> and <dt> with selected value inside it
|
|
|
|
select.parent().append('<dl id="target" class="dropdown"></dl>');
|
|
|
|
|
2012-07-03 22:31:52 +02:00
|
|
|
$("#target").append('<dt id="fancy-xmpp-status-select"><a href="#" title="Click to change your chat status" class="' +
|
|
|
|
chat_status+'">I am ' + chat_status +
|
2012-07-03 13:15:45 +02:00
|
|
|
'<span class="value">' + chat_status + '</span></a></dt>');
|
|
|
|
|
|
|
|
$("#target").append('<dd><ul></ul></dd>');
|
|
|
|
// iterate through all the <option> elements and create UL
|
|
|
|
options.each(function(){
|
|
|
|
$("#target dd ul").append('<li><a href="#" class="'+$(this).val()+'">' +
|
|
|
|
$(this).text() + '<span class="value">' +
|
|
|
|
$(this).val() + '</span></a></li>').hide();
|
|
|
|
});
|
|
|
|
select.remove();
|
|
|
|
};
|
|
|
|
|
2012-06-23 14:26:04 +02:00
|
|
|
return ob;
|
|
|
|
})(xmppchat.UI || {}, jQuery, console || {log: function(){}} );
|
|
|
|
|
|
|
|
|
|
|
|
// Event handlers
|
|
|
|
// --------------
|
|
|
|
$(document).ready(function () {
|
2012-07-03 13:15:45 +02:00
|
|
|
xmppchat.UI.createStatusSelectWidget();
|
|
|
|
|
2012-06-23 14:26:04 +02:00
|
|
|
$(document).unbind('jarnxmpp.message');
|
|
|
|
$(document).bind('jarnxmpp.message', function (event) {
|
|
|
|
xmppchat.UI.addMessageToChatbox(event);
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).bind('xmppchat.send_presence', function (event, jid, type) {
|
|
|
|
xmppchat.connection.send($pres({'type':type}));
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).unbind('jarnxmpp.presence');
|
|
|
|
$(document).bind('jarnxmpp.presence', function (event, jid, status, presence) {
|
|
|
|
xmppchat.UI.updateOnPresence(jid, status, presence);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('textarea.chat-textarea').live('keypress', function (ev) {
|
|
|
|
xmppchat.UI.keyPressed(ev, this);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('ul.tabs').tabs('div.panes > div');
|
2012-07-01 21:12:51 +02:00
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
$('#fancy-xmpp-status-select').click(function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
$(this).siblings('dd').find('ul').toggle('fast');
|
|
|
|
});
|
2012-07-01 21:12:51 +02:00
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
$('div.add-xmpp-contact').click(function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
$(this).parent().find('form.search-xmpp-contact').toggle().find('input.username').focus();
|
|
|
|
});
|
2012-07-01 21:12:51 +02:00
|
|
|
|
2012-07-03 22:31:52 +02:00
|
|
|
$('a.remove-xmpp-contact').live('click', function (ev) {
|
|
|
|
var that = this;
|
|
|
|
ev.preventDefault();
|
|
|
|
$("<span></span>").dialog({
|
|
|
|
title: 'Are you sure you want to remove this contact?',
|
|
|
|
dialogClass: 'remove-xmpp-contact-dialog',
|
|
|
|
resizable: false,
|
2012-07-06 19:02:24 +02:00
|
|
|
width: 200,
|
|
|
|
position: {
|
|
|
|
my: 'center',
|
|
|
|
at: 'center',
|
|
|
|
of: '#online-users-container'
|
|
|
|
},
|
2012-07-03 22:31:52 +02:00
|
|
|
modal: true,
|
|
|
|
buttons: {
|
2012-07-06 19:02:24 +02:00
|
|
|
"Remove": function() {
|
2012-07-03 22:31:52 +02:00
|
|
|
$( this ).dialog( "close" );
|
|
|
|
var jid = $(that).parent().attr('data-recipient');
|
|
|
|
xmppchat.Roster.unsubscribe(jid);
|
|
|
|
},
|
|
|
|
"Cancel": function() {
|
|
|
|
$( this ).dialog( "close" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
$('form.search-xmpp-contact').submit(function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
$.getJSON(portal_url + "/search-users?q=" + $(this).find('input.username').val(), function (data) {
|
|
|
|
var $results_el = $('#found-users');
|
|
|
|
$(data).each(function (idx, obj) {
|
|
|
|
if ($results_el.children().length > 0) {
|
|
|
|
$results_el.empty();
|
|
|
|
}
|
|
|
|
$results_el.append(
|
|
|
|
$('<li></li>')
|
|
|
|
.attr('id', 'found-users-'+obj.id)
|
|
|
|
.append(
|
2012-07-03 22:31:52 +02:00
|
|
|
$('<a class="subscribe-to-user" href="#" title="Click to add as a chat contact"></a>')
|
2012-07-03 13:15:45 +02:00
|
|
|
.attr('data-recipient', obj.id+'@'+xmppchat.connection.domain)
|
|
|
|
.text(obj.fullname)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
2012-07-01 21:12:51 +02:00
|
|
|
});
|
2012-07-03 13:15:45 +02:00
|
|
|
});
|
2012-07-01 21:12:51 +02:00
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
$("a.subscribe-to-user").live('click', function (ev) {
|
2012-07-01 21:12:51 +02:00
|
|
|
ev.preventDefault();
|
2012-07-03 13:15:45 +02:00
|
|
|
xmppchat.Roster.subscribe($(this).attr('data-recipient'));
|
2012-07-04 11:28:43 +02:00
|
|
|
$(this).remove();
|
|
|
|
$('form.search-xmpp-contact').hide();
|
2012-07-01 21:12:51 +02:00
|
|
|
});
|
|
|
|
|
2012-07-04 11:28:43 +02:00
|
|
|
$(".dropdown dd ul li a").click(function(ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
xmppchat.UI.setOwnStatus(this);
|
2012-07-01 21:12:51 +02:00
|
|
|
});
|
|
|
|
|
2012-06-23 14:26:04 +02:00
|
|
|
$('select#select-xmpp-status').bind('change', function (ev) {
|
|
|
|
var jid = xmppchat.connection.jid,
|
|
|
|
value = ev.target.value;
|
|
|
|
xmppchat.Presence.sendPresence(value);
|
|
|
|
xmppchat.Storage.set(xmppchat.username+'-xmpp-status', value);
|
|
|
|
});
|
|
|
|
});
|