Add client leave api

This commit is contained in:
Christoph Hagen 2021-11-30 20:55:25 +01:00
parent 775ac91cc8
commit 294b124807
5 changed files with 56 additions and 0 deletions

View File

@ -54,6 +54,12 @@ async function performGetPublicTablesRequest(token) {
}) })
} }
async function performLeaveTableRequest(token) {
return fetch("/table/leave", { method: 'POST', body: token })
.then(convertServerResponse)
.then(function(value) {})
}
function convertServerResponse(response) { function convertServerResponse(response) {
switch (response.status) { switch (response.status) {
case 200: // Success case 200: // Success

View File

@ -20,6 +20,14 @@ function showTableListElements() {
document.getElementById("table-list").style.display = "inherit" document.getElementById("table-list").style.display = "inherit"
} }
function showGameElements() {
document.getElementById("game-bar").style.display = "grid"
}
function hideGameElements() {
document.getElementById("game-bar").style.display = "none"
}
function setPlayerName(name) { function setPlayerName(name) {
document.getElementById("player-name").innerHTML = name document.getElementById("player-name").innerHTML = name
} }

View File

@ -39,6 +39,7 @@ function showGame(tableId) {
if (token) { if (token) {
openSocket(token) openSocket(token)
hideTableListElements() hideTableListElements()
showGameElements()
// TODO: Show interface // TODO: Show interface
console.log("Show table " + tableId) console.log("Show table " + tableId)
} else { } else {
@ -186,6 +187,22 @@ function joinTable(tableId) {
} }
} }
function leaveTable() {
const token = getSessionToken()
if (token) {
performLeaveTableRequest(token)
.then(function() {
showTableList()
hideGameElements()
})
.catch(function(error) {
showBlankLoginScreen(error.message)
})
} else {
showBlankLoginScreen("")
}
}
function openSocket(token) { function openSocket(token) {
socket = new WebSocket(((window.location.protocol === "https:") ? "wss://" : "ws://") + window.location.host + "/session/start") socket = new WebSocket(((window.location.protocol === "https:") ? "wss://" : "ws://") + window.location.host + "/session/start")

View File

@ -22,6 +22,9 @@
<button id="create-table-button" class="standard-button" onclick="createTable()">Create table</button> <button id="create-table-button" class="standard-button" onclick="createTable()">Create table</button>
<button id="refresh-tables" class="standard-button" onclick="refreshTables()">Refresh list</button> <button id="refresh-tables" class="standard-button" onclick="refreshTables()">Refresh list</button>
</div> </div>
<div id="game-bar">
<button id="leave-table" class="standard-button" onclick="leaveTable()">Leave table</button>
</div>
</div> </div>
<div id="table-list"> <div id="table-list">

View File

@ -157,6 +157,28 @@ body, html {
height: 34px; height: 34px;
} }
#game-bar {
position: absolute;
width: 120px;
height: 40px;
top: 5px;
left: 10px;
display: none;
grid-template-columns: 1200px;
column-gap: 10px;
align-items: center;
justify-content: center;
justify-items: center;
}
#leave-table {
width: 120px;
grid-column: 1;
padding: 0px;
height: 34px;
}
#table-list { #table-list {
margin: 20px; margin: 20px;
padding-right: 20px; padding-right: 20px;