2020-01-27 20:37:52 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block js_media %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
var chatSocket = new WebSocket(
|
|
|
|
'ws://' + window.location.host +
|
|
|
|
'/ws/chat/');
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2020-03-21 04:48:04 +00:00
|
|
|
let currentPage = 1;
|
|
|
|
|
2020-03-20 21:34:33 +00:00
|
|
|
$('#loader').hide();
|
|
|
|
|
2020-01-27 20:37:52 +00:00
|
|
|
chatSocket.onmessage = function(e) {
|
2020-03-19 05:13:55 +00:00
|
|
|
let data = JSON.parse(e.data)
|
|
|
|
data = data['message']
|
2020-03-19 22:51:56 +00:00
|
|
|
loadMessage(data['body'],
|
|
|
|
data['author'],
|
|
|
|
data['time'],
|
2020-03-21 04:48:04 +00:00
|
|
|
data['image'],
|
|
|
|
true)
|
|
|
|
$('#chat-box').scrollTop($('#chat-box')[0].scrollHeight);
|
2020-01-27 20:37:52 +00:00
|
|
|
};
|
2020-03-21 04:48:04 +00:00
|
|
|
|
|
|
|
function encodeHTML(content) {
|
|
|
|
return content.replace(/[\u00A0-\u9999<>\&]/gim, function(i) {
|
|
|
|
return '&#'+i.charCodeAt(0)+';';
|
|
|
|
});
|
|
|
|
}
|
2020-03-19 05:13:55 +00:00
|
|
|
|
2020-03-21 04:48:04 +00:00
|
|
|
function loadMessage(content, user, time, image, isNew) {
|
|
|
|
if (isNew) content = encodeHTML(content)
|
|
|
|
li = `<li class="message">
|
2020-03-19 05:13:55 +00:00
|
|
|
<img src="${image}" class="profile-pic">
|
|
|
|
<div class="body-message">
|
|
|
|
<div class="user-time">
|
2020-03-21 04:48:04 +00:00
|
|
|
<a href="{{ url('user_page') }}/${user}" class="user">
|
2020-03-19 05:13:55 +00:00
|
|
|
${user}
|
|
|
|
</a>
|
|
|
|
<span class="time">${time}</span>
|
|
|
|
</div>
|
2020-03-21 04:48:04 +00:00
|
|
|
<span class="content-message">${content} </span>
|
2020-03-19 05:13:55 +00:00
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</li>`
|
|
|
|
ul = $('#chat-log')
|
2020-03-21 04:48:04 +00:00
|
|
|
if (isNew) {
|
|
|
|
ul.append(li)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ul.prepend(li)
|
|
|
|
}
|
2020-03-19 05:13:55 +00:00
|
|
|
}
|
|
|
|
|
2020-03-19 22:51:56 +00:00
|
|
|
(function init_chatlog() {
|
|
|
|
ul = $('#chat-log')
|
2020-03-21 04:48:04 +00:00
|
|
|
{% for msg in message %}
|
|
|
|
loadMessage(`{{msg.body}}`, `{{msg.author}}`, `{{msg.time}}`, `{{gravatar(msg.author, 32)}}`)
|
2020-03-19 22:51:56 +00:00
|
|
|
{% endfor %}
|
2020-03-21 04:48:04 +00:00
|
|
|
$('#chat-box').scrollTop($('#chat-box')[0].scrollHeight);
|
2020-03-19 22:51:56 +00:00
|
|
|
})()
|
|
|
|
|
2020-03-21 04:48:04 +00:00
|
|
|
function scrollTopOfBottom(container) {
|
|
|
|
return container[0].scrollHeight - container.innerHeight()
|
|
|
|
}
|
|
|
|
|
|
|
|
function scrollContainer(container, loader) {
|
|
|
|
container.scroll(function() {
|
|
|
|
if (container.scrollTop() == 0) {
|
|
|
|
if (currentPage < {{paginator.num_pages}}) {
|
|
|
|
currentPage++;
|
|
|
|
loader.show();
|
|
|
|
$.ajax({
|
|
|
|
url: `{{request.path}}?page=${currentPage}`,
|
|
|
|
success: function(data) {
|
|
|
|
let lastMsg = $('.message:first')
|
|
|
|
let lastMsgPos = scrollTopOfBottom(container)
|
|
|
|
|
|
|
|
data = JSON.parse(data)
|
|
|
|
setTimeout( () => {
|
|
|
|
for (msg of data) {
|
|
|
|
loadMessage(msg.body, msg.author, msg.time, msg.image)
|
|
|
|
}
|
|
|
|
|
|
|
|
loader.hide()
|
|
|
|
|
|
|
|
// scroll to last msg
|
|
|
|
container.scrollTop(
|
|
|
|
scrollTopOfBottom(container) - lastMsgPos
|
|
|
|
)
|
|
|
|
}, 500)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-03-19 22:51:56 +00:00
|
|
|
}
|
2020-03-21 04:48:04 +00:00
|
|
|
})}
|
|
|
|
|
|
|
|
scrollContainer($('#chat-box'), $('#loader'))
|
2020-03-19 05:13:55 +00:00
|
|
|
|
2020-03-21 04:48:04 +00:00
|
|
|
|
2020-03-19 05:13:55 +00:00
|
|
|
$("#chat-submit").click(function() {
|
|
|
|
if ($("#chat-input").val().trim()) {
|
2020-03-19 22:51:56 +00:00
|
|
|
let body = $('#chat-input').val().trim();
|
2020-03-19 05:13:55 +00:00
|
|
|
let img = '{{ gravatar(request.user, 32) }}'
|
|
|
|
|
|
|
|
message = {
|
2020-03-19 22:51:56 +00:00
|
|
|
'body': body,
|
2020-03-19 05:13:55 +00:00
|
|
|
'image': img,
|
2020-03-19 22:51:56 +00:00
|
|
|
'author': '{{request.profile}}',
|
|
|
|
'author_id': {{request.profile.id}},
|
2020-03-19 05:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
chatSocket.send(JSON.stringify({
|
2020-03-19 22:51:56 +00:00
|
|
|
'message': message
|
|
|
|
}));
|
2020-03-19 05:13:55 +00:00
|
|
|
|
|
|
|
$('#chat-input').val('').focus();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-27 20:37:52 +00:00
|
|
|
chatSocket.onclose = function(e) {
|
|
|
|
console.error('Chat socket closed unexpectedly');
|
|
|
|
};
|
2020-03-19 05:13:55 +00:00
|
|
|
|
|
|
|
$("#chat-log").change(function() {
|
|
|
|
$('#chat-log').scrollTop($('#chat-log')[0].scrollHeight);
|
2020-01-27 20:37:52 +00:00
|
|
|
});
|
2020-03-19 05:13:55 +00:00
|
|
|
|
|
|
|
$('#chat-input').focus();
|
|
|
|
|
|
|
|
$('#chat-input').keydown(function(e) {
|
|
|
|
if (e.keyCode === 13) {
|
|
|
|
if (e.ctrlKey || e.shiftKey) {
|
|
|
|
var val = this.value;
|
|
|
|
if (typeof this.selectionStart == "number" && typeof this.selectionEnd == "number") {
|
|
|
|
var start = this.selectionStart;
|
|
|
|
this.value = val.slice(0, start) + "\n" + val.slice(this.selectionEnd);
|
|
|
|
this.selectionStart = this.selectionEnd = start + 1;
|
|
|
|
} else if (document.selection && document.selection.createRange) {
|
|
|
|
this.focus();
|
|
|
|
var range = document.selection.createRange();
|
|
|
|
range.text = "\r\n";
|
|
|
|
range.collapse(false);
|
|
|
|
range.select();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
e.preventDefault();
|
|
|
|
$('#chat-submit').click();
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
2020-01-27 20:37:52 +00:00
|
|
|
});
|
2020-03-19 05:13:55 +00:00
|
|
|
|
2020-01-27 20:37:52 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock js_media %}
|
|
|
|
|
|
|
|
{% block body %}
|
2020-03-19 05:13:55 +00:00
|
|
|
<div id="chat-area">
|
2020-03-20 21:34:33 +00:00
|
|
|
<div id="chat-box">
|
|
|
|
<img src="http://opengraphicdesign.com/wp-content/uploads/2009/01/loader64.gif" id="loader">
|
2020-03-21 04:48:04 +00:00
|
|
|
<ul id="chat-log">
|
2020-03-20 21:34:33 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2020-03-19 05:13:55 +00:00
|
|
|
{{_('Your message')}}
|
|
|
|
|
|
|
|
<textarea rows="6" id="chat-input"></textarea>
|
2020-03-16 07:56:55 +00:00
|
|
|
</div>
|
2020-03-19 05:13:55 +00:00
|
|
|
<button id="chat-submit"> Send </button>
|
2020-01-27 20:37:52 +00:00
|
|
|
{% endblock body %}
|