mirror of
https://github.com/jech/galene.git
synced 2024-11-12 19:55:59 +01:00
Prevent multiple connections.
This commit is contained in:
parent
81db6e73eb
commit
4c9762931d
1 changed files with 16 additions and 5 deletions
|
@ -1922,12 +1922,21 @@ function displayMessage(message) {
|
||||||
return displayError(message, "info");
|
return displayError(message, "info");
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementById('userform').onsubmit = function(e) {
|
let connecting = false;
|
||||||
|
|
||||||
|
document.getElementById('userform').onsubmit = async function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
let username = getInputElement('username').value.trim();
|
if(connecting)
|
||||||
let password = getInputElement('password').value;
|
return;
|
||||||
storeUserPass(username, password);
|
connecting = true;
|
||||||
serverConnect();
|
try {
|
||||||
|
let username = getInputElement('username').value.trim();
|
||||||
|
let password = getInputElement('password').value;
|
||||||
|
storeUserPass(username, password);
|
||||||
|
serverConnect();
|
||||||
|
} finally {
|
||||||
|
connecting = false;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById('disconnectbutton').onclick = function(e) {
|
document.getElementById('disconnectbutton').onclick = function(e) {
|
||||||
|
@ -2027,6 +2036,8 @@ window.onclick = function(event) {
|
||||||
};
|
};
|
||||||
|
|
||||||
async function serverConnect() {
|
async function serverConnect() {
|
||||||
|
if(serverConnection && serverConnection.socket)
|
||||||
|
serverConnection.close();
|
||||||
serverConnection = new ServerConnection();
|
serverConnection = new ServerConnection();
|
||||||
serverConnection.onconnected = gotConnected;
|
serverConnection.onconnected = gotConnected;
|
||||||
serverConnection.onclose = gotClose;
|
serverConnection.onclose = gotClose;
|
||||||
|
|
Loading…
Reference in a new issue