feat(api): BAC-11 Websocket - Return to Lobby (#94)

Reviewed-on: #94
Co-authored-by: Janis <janis.e.20@gmx.de>
Co-committed-by: Janis <janis.e.20@gmx.de>
This commit is contained in:
2025-12-01 20:04:17 +01:00
committed by Janis
parent 9d3f3940a9
commit fd2467a9ea
3 changed files with 6 additions and 1 deletions

View File

@@ -73,6 +73,8 @@ class UserSession(val user: User, val host: Boolean, val gameLobby: GameLobby) e
case None => case None =>
println("Player ID not found or is not a valid UUID.") println("Player ID not found or is not a valid UUID.")
} }
case "ReturnToLobby" =>
gameLobby.returnToLobby(this)
} }
} }
lock.unlock() lock.unlock()

View File

@@ -10,7 +10,7 @@
<div class="row justify-content-center align-items-center flex-grow-1"> <div class="row justify-content-center align-items-center flex-grow-1">
@if((gamelobby.getUserSession(user.get.id).host)) { @if((gamelobby.getUserSession(user.get.id).host)) {
<div class="col-12 text-center mb-5"> <div class="col-12 text-center mb-5">
<div class="btn btn-success" onclick="backToLobby('@gamelobby.id')">Return to lobby</div> <div class="btn btn-success" onclick="handleReturnToLobby()">Return to lobby</div>
</div> </div>
} else { } else {
<div class="col-12 text-center mt-3"> <div class="col-12 text-center mt-3">

View File

@@ -77,3 +77,6 @@ function handleKickPlayer(playerId) {
playerId: playerId playerId: playerId
}) })
} }
function handleReturnToLobby() {
sendEvent("ReturnToLobby")
}