Added a way to add chats, added titles
This commit is contained in:
parent
a10e14f9d1
commit
79f73d3dbc
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en" dir="ltr">
|
<html lang="en" dir="ltr">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Connect</title>
|
<title>Chat Client</title>
|
||||||
<script src="scripts/include.js"></script>
|
<script src="scripts/include.js"></script>
|
||||||
<script src="scripts/profiles.js"></script>
|
<script src="scripts/profiles.js"></script>
|
||||||
<script src="scripts/communications.js"></script>
|
<script src="scripts/communications.js"></script>
|
||||||
|
|
|
@ -272,6 +272,7 @@ function connect(profile, connection_id)
|
||||||
|
|
||||||
// Create a client
|
// Create a client
|
||||||
var client = new net.Socket();
|
var client = new net.Socket();
|
||||||
|
g.client = client;
|
||||||
|
|
||||||
function rsa_task_send(data)
|
function rsa_task_send(data)
|
||||||
{
|
{
|
||||||
|
|
|
@ -87,6 +87,21 @@ function profile_connect(id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function port_display(i)
|
||||||
|
{
|
||||||
|
// Should the port be displayed
|
||||||
|
var port_display = "";
|
||||||
|
|
||||||
|
// Is the port not the default port
|
||||||
|
if(profiles[i].port != PORT_DEFAULT)
|
||||||
|
{
|
||||||
|
// Set the port display varible
|
||||||
|
port_display = ":"+profiles[i].port.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
return port_display;
|
||||||
|
}
|
||||||
|
|
||||||
function profile_switch_to(id)
|
function profile_switch_to(id)
|
||||||
{
|
{
|
||||||
// Set the active profile
|
// Set the active profile
|
||||||
|
@ -117,14 +132,46 @@ function profile_switch_to(id)
|
||||||
// Set the html data
|
// Set the html data
|
||||||
document.getElementById("chat-main").innerHTML = "\
|
document.getElementById("chat-main").innerHTML = "\
|
||||||
<div id='chats-menu' class='menu-vertical'>\
|
<div id='chats-menu' class='menu-vertical'>\
|
||||||
<ul>"+chats_menu+"</ul>\
|
<ul>\
|
||||||
|
<li><a class='add-chat' href='#' onclick='add_chat_menu()'><b>Add</b></a></li>\
|
||||||
|
"+chats_menu+"\
|
||||||
|
</ul>\
|
||||||
</div>\
|
</div>\
|
||||||
<div id='chat-area'>\
|
<div id='chat-area'>\
|
||||||
</div>\
|
</div>\
|
||||||
<div id='users-menu' class='menu-vertical'>\
|
<div id='users-menu' class='menu-vertical'>\
|
||||||
<ul>"+users_menu+"</ul>\
|
<ul>"+users_menu+"</ul>\
|
||||||
</div>\
|
</div>\
|
||||||
";
|
";
|
||||||
|
|
||||||
|
// Set the title
|
||||||
|
document.title = profiles[id].username+"@"+profiles[id].hostname+port_display(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function add_chat_menu()
|
||||||
|
{
|
||||||
|
// Set the html data
|
||||||
|
document.getElementById("chat-area").innerHTML = "\
|
||||||
|
<p>\
|
||||||
|
<table>\
|
||||||
|
<tr><td>Name</td><td><input type='text' id='add-chat-name'></td></tr>\
|
||||||
|
</table>\
|
||||||
|
<button onclick='add_chat()'>Add</button>\
|
||||||
|
</p>\
|
||||||
|
";
|
||||||
|
}
|
||||||
|
|
||||||
|
function add_chat()
|
||||||
|
{
|
||||||
|
// Send the data to the server
|
||||||
|
socket_write(
|
||||||
|
connections[active_profile].client,
|
||||||
|
connections[active_profile].encryption,
|
||||||
|
{
|
||||||
|
mode: "new_chat",
|
||||||
|
name: document.getElementById('add-chat-name').value
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function profiles_reload()
|
function profiles_reload()
|
||||||
|
@ -144,19 +191,11 @@ function profiles_reload()
|
||||||
// Create a list item
|
// Create a list item
|
||||||
var profile = document.createElement("li");
|
var profile = document.createElement("li");
|
||||||
|
|
||||||
// Should the port be displayed
|
|
||||||
var port_display = "";
|
|
||||||
|
|
||||||
// Is the port not the default port
|
|
||||||
if(profiles[i].port != PORT_DEFAULT)
|
|
||||||
{
|
|
||||||
// Set the port display varible
|
|
||||||
port_display = ":"+profiles[i].port.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the html for the list item
|
// Set the html for the list item
|
||||||
profile.innerHTML = "<a href='javascript:void(0)' onclick='profile_switch_to("+
|
profile.innerHTML = "<a href='javascript:void(0)' onclick='profile_switch_to("+
|
||||||
i+")'>"+profiles[i].username+"@"+profiles[i].hostname+port_display+"</a>";
|
i+")'>"+profiles[i].username+"@"+profiles[i].hostname+port_display(i)+"</a>";
|
||||||
|
|
||||||
// Add the profile to the menu
|
// Add the profile to the menu
|
||||||
chat_menu.appendChild(profile);
|
chat_menu.appendChild(profile);
|
||||||
|
@ -167,6 +206,7 @@ function profiles_reload()
|
||||||
function switch_new_profile()
|
function switch_new_profile()
|
||||||
{
|
{
|
||||||
// Set the html
|
// Set the html
|
||||||
|
document.title = "New Profile";
|
||||||
document.getElementById("chat-main").innerHTML = "\
|
document.getElementById("chat-main").innerHTML = "\
|
||||||
<p>New Profile:</p>\
|
<p>New Profile:</p>\
|
||||||
<p>\
|
<p>\
|
||||||
|
|
Loading…
Reference in New Issue