2024-03-15 15:44:29 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{{wssurl}}
|
2021-07-20 13:04:47 +02:00
|
|
|
<div id="chat" class="text-center mt-5">
|
|
|
|
<div class="mb-2">online</div>
|
|
|
|
<div id="online" style="mt-2"></div>
|
|
|
|
</div>
|
2024-03-15 15:44:29 +01:00
|
|
|
{% endblock %}
|
2021-07-20 13:04:47 +02:00
|
|
|
|
2024-03-15 15:44:29 +01:00
|
|
|
{% block localjavascript %}
|
2021-07-20 13:04:47 +02:00
|
|
|
{% if wssuse %}
|
|
|
|
var conn;
|
|
|
|
|
|
|
|
function connect() {
|
|
|
|
conn = new WebSocket("{{wssurl}}");
|
2024-03-15 15:44:29 +01:00
|
|
|
|
2021-07-20 13:04:47 +02:00
|
|
|
conn.onopen = function(e) {
|
|
|
|
console.log("== CONNECT");
|
|
|
|
{% set userkey = "" %}
|
|
|
|
{% if app.user %}
|
|
|
|
{% set userkey = app.user.apikey %}
|
|
|
|
{%endif%}
|
|
|
|
|
|
|
|
subscribe("home",1,"{{userkey}}");
|
|
|
|
sendMessage({command: "alive"});
|
|
|
|
};
|
2024-03-15 15:44:29 +01:00
|
|
|
|
2021-07-20 13:04:47 +02:00
|
|
|
conn.onmessage = function(e) {
|
|
|
|
ret=JSON.parse(e.data);
|
|
|
|
|
|
|
|
switch(ret.command) {
|
|
|
|
case "alive" :
|
|
|
|
if(!$('#online'+ret.from.id).length) {
|
2024-03-15 15:44:29 +01:00
|
|
|
console.log(ret);
|
2021-07-20 13:04:47 +02:00
|
|
|
html='<img id="online'+ret.from.id+'" src="'+ret.from.avatar+'" class="avatar ml-2 mr-2" title="'+ret.from.displayname+'">';
|
|
|
|
$("#online").append(html);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ret.from.id!={{app.user.id}})
|
|
|
|
sendMessage({command: "meto"});
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "adead" :
|
|
|
|
$('#online'+ret.from.id).remove();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "meto" :
|
|
|
|
if(!$('#online'+ret.from.id).length) {
|
|
|
|
html='<img id="online'+ret.from.id+'" src="'+ret.from.avatar+'" class="avatar ml-2 mr-2" title="'+ret.from.displayname+'">';
|
|
|
|
$("#online").append(html);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
conn.onclose = function(e) {
|
|
|
|
console.log("== DISCONNECT");
|
|
|
|
$('#online img').remove();
|
|
|
|
console.log('Socket is closed. Reconnect will be attempted in 1 second.', e.reason);
|
|
|
|
setTimeout(function() { connect(); }, 1000);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
connect();
|
2024-03-15 15:44:29 +01:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|