2011-11-26 14:17:17 +00:00
|
|
|
/**
|
|
|
|
* TimWolla.WCF.Chat
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
|
|
|
* @copyright 2010-2011 Tim Düsterhus
|
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
|
|
* @package timwolla.wcf.chat
|
|
|
|
*/
|
2011-11-26 16:19:34 +00:00
|
|
|
if (typeof TimWolla == 'undefined') var TimWolla = {};
|
|
|
|
if (typeof TimWolla.WCF == 'undefined') TimWolla.WCF = {};
|
2011-11-26 14:17:17 +00:00
|
|
|
|
2011-11-26 16:19:34 +00:00
|
|
|
|
2011-11-26 14:17:17 +00:00
|
|
|
(function ($, document) {
|
2011-11-27 12:13:59 +00:00
|
|
|
TimWolla.WCF.Chat = {
|
2011-12-03 17:07:57 +00:00
|
|
|
titleTemplate: '',
|
2011-11-26 16:19:34 +00:00
|
|
|
init: function(roomID, messageID) {
|
2011-12-02 22:16:55 +00:00
|
|
|
this.bindEvents();
|
|
|
|
},
|
|
|
|
bindEvents: function() {
|
2011-11-27 12:13:59 +00:00
|
|
|
$('.smiley').click(function(event) {
|
|
|
|
alert($(event.target).attr('alt'));
|
|
|
|
});
|
2011-12-02 22:16:55 +00:00
|
|
|
|
2011-12-03 23:44:16 +00:00
|
|
|
// $(window).bind('beforeunload', function() {
|
|
|
|
// return false;
|
|
|
|
// });
|
2011-12-03 14:01:54 +00:00
|
|
|
|
|
|
|
$('.chatRoom').click($.proxy(function (event) {
|
|
|
|
if (typeof window.history.replaceState != 'undefined') {
|
|
|
|
event.preventDefault();
|
2011-12-03 14:06:36 +00:00
|
|
|
this.changeRoom($(event.target));
|
2011-12-03 14:01:54 +00:00
|
|
|
}
|
|
|
|
}, this));
|
|
|
|
},
|
2011-12-03 14:06:36 +00:00
|
|
|
changeRoom: function(target) {
|
|
|
|
window.history.replaceState({}, '', target.attr('href'));
|
2011-12-03 17:07:57 +00:00
|
|
|
|
|
|
|
// mark as active;
|
2011-12-03 14:06:36 +00:00
|
|
|
$('.activeMenuItem .chatRoom').parent().removeClass('activeMenuItem');
|
|
|
|
target.parent().addClass('activeMenuItem');
|
2011-12-03 17:07:57 +00:00
|
|
|
|
|
|
|
// actually change the room
|
2011-12-03 16:37:20 +00:00
|
|
|
$.ajax(target.attr('href'), {
|
|
|
|
dataType: 'json',
|
|
|
|
data: { ajax: 1 },
|
|
|
|
type: 'POST',
|
2011-12-03 17:07:57 +00:00
|
|
|
success: $.proxy(function (data, textStatus, jqXHR) {
|
2011-12-03 23:44:16 +00:00
|
|
|
this.loading = false;
|
|
|
|
$('#loading-' + target.attr('id')).remove();
|
|
|
|
target.css({
|
|
|
|
'float' : 'none',
|
|
|
|
'padding' : '5px 25px 7px 35px',
|
|
|
|
'width' : '',
|
|
|
|
'overflow' : 'visible'
|
|
|
|
});
|
|
|
|
|
2011-12-03 17:07:57 +00:00
|
|
|
// set new topic
|
2011-12-03 20:23:13 +00:00
|
|
|
if (data.topic == '') {
|
2011-12-03 23:44:16 +00:00
|
|
|
if(data.topic == '' && $('#topic').text().trim() == '') return;
|
2011-12-03 20:23:13 +00:00
|
|
|
$('#topic').wcfBlindOut('vertical', function() {
|
2011-12-03 23:44:16 +00:00
|
|
|
$('#topic').text('');
|
2011-12-03 20:23:13 +00:00
|
|
|
});
|
|
|
|
} else {
|
2011-12-03 23:44:16 +00:00
|
|
|
if($('#topic').text().trim() != '') {
|
|
|
|
$('#topic').text(data.topic);
|
|
|
|
} else {
|
2011-12-03 20:23:13 +00:00
|
|
|
$('#topic').text(data.topic);
|
|
|
|
$('#topic').wcfBlindIn();
|
|
|
|
}
|
|
|
|
}
|
2011-12-03 17:07:57 +00:00
|
|
|
|
|
|
|
// set page-title
|
|
|
|
$('title').text(this.titleTemplate.fetch(data));
|
2011-12-03 23:44:16 +00:00
|
|
|
}, this),
|
|
|
|
beforeSend: $.proxy(function () {
|
|
|
|
if(this.loading == true) return;
|
|
|
|
this.loading = true;
|
|
|
|
//target.append('<img id="loading-' + target.attr('id') + '" src="' + WCF.Icon.get('wcf.global.spinner') + '" />');
|
|
|
|
target.css({
|
|
|
|
'width' : target.width() - 19,
|
|
|
|
'float' : 'left',
|
|
|
|
'padding' : '5px 0 7px 35px',
|
|
|
|
'overflow': 'hidden'
|
|
|
|
});
|
|
|
|
target.parent().append('<img id="loading-' + target.attr('id') + '" class="ajaxLoad" src="' + RELATIVE_WCF_DIR + 'icon/spinner1.svg" alt="" />');
|
|
|
|
$('#loading-' + target.attr('id')).css({'marginTop' : function(index) {return (target.parent().height() / 2) - ($(this).height() / 2) - 2}, 'borderRadius' : 3});
|
2011-12-03 17:07:57 +00:00
|
|
|
}, this)
|
2011-12-03 16:37:20 +00:00
|
|
|
});
|
2011-11-26 16:19:34 +00:00
|
|
|
}
|
|
|
|
};
|
2011-11-26 14:17:17 +00:00
|
|
|
})(jQuery, document);
|