2011-12-04 16:33:56 +01:00
|
|
|
/**
|
|
|
|
* This code is mostly from the old Etherpad. Please help us to comment this code.
|
|
|
|
* This helps other people to understand this code better and helps them to improve it.
|
|
|
|
* TL;DR COMMENTS ON THIS FILE ARE HIGHLY APPRECIATED
|
|
|
|
*/
|
|
|
|
|
2011-08-11 16:26:41 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2009 Google Inc., 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-01-16 05:16:11 +01:00
|
|
|
var padutils = require('/pad_utils').padutils;
|
2012-01-28 23:24:14 +01:00
|
|
|
var padcookie = require('/pad_cookie').padcookie;
|
2012-01-16 05:16:11 +01:00
|
|
|
|
2011-07-14 17:15:38 +02:00
|
|
|
var chat = (function()
|
|
|
|
{
|
2012-01-25 20:03:25 +01:00
|
|
|
var isStuck = false;
|
2011-11-27 21:39:47 +01:00
|
|
|
var chatMentions = 0;
|
|
|
|
var title = document.title;
|
2011-07-14 17:15:38 +02:00
|
|
|
var self = {
|
|
|
|
show: function ()
|
|
|
|
{
|
2012-02-03 21:20:02 +01:00
|
|
|
$("#chaticon").hide();
|
|
|
|
$("#chatbox").show();
|
2012-02-03 22:52:57 +01:00
|
|
|
self.scrollDown();
|
2011-11-27 21:39:47 +01:00
|
|
|
chatMentions = 0;
|
|
|
|
document.title = title;
|
2011-07-14 17:15:38 +02:00
|
|
|
},
|
2012-01-28 23:24:14 +01:00
|
|
|
stickToScreen: function(fromInitialCall) // Make chat stick to right hand side of screen
|
2012-01-25 20:03:25 +01:00
|
|
|
{
|
|
|
|
chat.show();
|
2012-01-28 23:24:14 +01:00
|
|
|
if(!isStuck || fromInitialCall) { // Stick it to
|
|
|
|
padcookie.setPref("chatAlwaysVisible", true);
|
2012-01-27 01:43:00 +01:00
|
|
|
$('#chatbox').css({"right":"0px", "top":"36px", "border-radius":"0px", "height":"auto", "border-right":"none", "border-left":"1px solid #ccc", "border-top":"none", "background-color":"#f1f1f1", "width":"185px"});
|
2012-01-26 17:22:44 +01:00
|
|
|
$('#chattext').css({"top":"0px"});
|
2012-01-27 01:43:00 +01:00
|
|
|
$('#editorcontainer').css({"right":"192px", "width":"auto"});
|
2012-01-25 20:03:25 +01:00
|
|
|
isStuck = true;
|
2012-01-26 17:22:44 +01:00
|
|
|
} else { // Unstick it
|
2012-01-28 23:24:14 +01:00
|
|
|
padcookie.setPref("chatAlwaysVisible", false);
|
2012-01-26 17:22:44 +01:00
|
|
|
$('#chatbox').css({"right":"20px", "top":"auto", "border-top-left-radius":"5px", "border-top-right-radius":"5px", "border-right":"1px solid #999", "height":"200px", "border-top":"1px solid #999", "background-color":"#f7f7f7"});
|
|
|
|
$('#chattext').css({"top":"25px"});
|
2012-01-25 20:03:25 +01:00
|
|
|
$('#editorcontainer').css({"right":"0px", "width":"100%"});
|
|
|
|
isStuck = false;
|
|
|
|
}
|
2012-01-26 17:22:44 +01:00
|
|
|
},
|
2011-07-14 17:15:38 +02:00
|
|
|
hide: function ()
|
|
|
|
{
|
|
|
|
$("#chatcounter").text("0");
|
2012-02-03 21:20:02 +01:00
|
|
|
$("#chaticon").show();
|
|
|
|
$("#chatbox").hide();
|
2011-07-14 17:15:38 +02:00
|
|
|
},
|
|
|
|
scrollDown: function()
|
|
|
|
{
|
|
|
|
if($('#chatbox').css("display") != "none")
|
|
|
|
$('#chattext').animate({scrollTop: $('#chattext')[0].scrollHeight}, "slow");
|
|
|
|
},
|
|
|
|
send: function()
|
|
|
|
{
|
|
|
|
var text = $("#chatinput").val();
|
2012-01-16 06:05:19 +01:00
|
|
|
this._pad.collabClient.sendMessage({"type": "CHAT_MESSAGE", "text": text});
|
2011-07-14 17:15:38 +02:00
|
|
|
$("#chatinput").val("");
|
|
|
|
},
|
|
|
|
addMessage: function(msg, increment)
|
|
|
|
{
|
|
|
|
//correct the time
|
2012-01-16 06:05:19 +01:00
|
|
|
msg.time += this._pad.clientTimeOffset;
|
2011-07-14 17:15:38 +02:00
|
|
|
|
|
|
|
//create the time string
|
|
|
|
var minutes = "" + new Date(msg.time).getMinutes();
|
|
|
|
var hours = "" + new Date(msg.time).getHours();
|
|
|
|
if(minutes.length == 1)
|
|
|
|
minutes = "0" + minutes ;
|
|
|
|
if(hours.length == 1)
|
|
|
|
hours = "0" + hours ;
|
|
|
|
var timeStr = hours + ":" + minutes;
|
|
|
|
|
|
|
|
//create the authorclass
|
|
|
|
var authorClass = "author-" + msg.userId.replace(/[^a-y0-9]/g, function(c)
|
|
|
|
{
|
|
|
|
if (c == ".") return "-";
|
|
|
|
return 'z' + c.charCodeAt(0) + 'z';
|
|
|
|
});
|
|
|
|
|
|
|
|
var text = padutils.escapeHtmlWithClickableLinks(padutils.escapeHtml(msg.text), "_blank");
|
2011-11-27 17:35:20 +01:00
|
|
|
|
|
|
|
/* Performs an action if your name is mentioned */
|
|
|
|
var myName = $('#myusernameedit').val();
|
|
|
|
myName = myName.toLowerCase();
|
|
|
|
var chatText = text.toLowerCase();
|
|
|
|
var wasMentioned = false;
|
|
|
|
if (chatText.indexOf(myName) !== -1 && myName != "undefined"){
|
|
|
|
wasMentioned = true;
|
|
|
|
}
|
|
|
|
/* End of new action */
|
|
|
|
|
2011-07-14 17:15:38 +02:00
|
|
|
var authorName = msg.userName == null ? "unnamed" : padutils.escapeHtml(msg.userName);
|
|
|
|
|
|
|
|
var html = "<p class='" + authorClass + "'><b>" + authorName + ":</b><span class='time'>" + timeStr + "</span> " + text + "</p>";
|
|
|
|
$("#chattext").append(html);
|
|
|
|
|
|
|
|
//should we increment the counter??
|
|
|
|
if(increment)
|
|
|
|
{
|
|
|
|
var count = Number($("#chatcounter").text());
|
|
|
|
count++;
|
|
|
|
$("#chatcounter").text(count);
|
2011-11-27 17:35:20 +01:00
|
|
|
// chat throb stuff -- Just make it throw for twice as long
|
|
|
|
if(wasMentioned)
|
|
|
|
{ // If the user was mentioned show for twice as long and flash the browser window
|
2011-11-27 21:39:47 +01:00
|
|
|
if (chatMentions == 0){
|
|
|
|
title = document.title;
|
|
|
|
}
|
2012-02-03 21:20:02 +01:00
|
|
|
$('#chatthrob').html("<b>"+authorName+"</b>" + ": " + text).show().delay(4000).hide(400);
|
2011-11-27 21:39:47 +01:00
|
|
|
chatMentions++;
|
|
|
|
document.title = "("+chatMentions+") " + title;
|
2011-11-27 17:35:20 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-02-03 21:20:02 +01:00
|
|
|
$('#chatthrob').html("<b>"+authorName+"</b>" + ": " + text).show().delay(2000).hide(400);
|
2011-11-27 17:35:20 +01:00
|
|
|
}
|
2011-07-14 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
self.scrollDown();
|
2011-07-20 22:50:58 +02:00
|
|
|
|
2011-07-14 17:15:38 +02:00
|
|
|
},
|
2012-01-16 06:05:19 +01:00
|
|
|
init: function(pad)
|
2011-07-14 17:15:38 +02:00
|
|
|
{
|
2012-01-16 06:05:19 +01:00
|
|
|
this._pad = pad;
|
2011-07-14 17:15:38 +02:00
|
|
|
$("#chatinput").keypress(function(evt)
|
|
|
|
{
|
|
|
|
//if the user typed enter, fire the send
|
|
|
|
if(evt.which == 13)
|
|
|
|
{
|
|
|
|
evt.preventDefault();
|
|
|
|
self.send();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
for(var i in clientVars.chatHistory)
|
|
|
|
{
|
|
|
|
this.addMessage(clientVars.chatHistory[i], false);
|
|
|
|
}
|
|
|
|
$("#chatcounter").text(clientVars.chatHistory.length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
2011-12-04 16:33:56 +01:00
|
|
|
}());
|
2012-01-16 02:23:48 +01:00
|
|
|
|
|
|
|
exports.chat = chat;
|
2012-01-26 17:22:44 +01:00
|
|
|
|