feat(ui): enhance game UI with responsive design and new components

43 [Subtask] UI looks better and improved
This commit is contained in:
2025-11-09 20:22:15 +01:00
parent a71752df2f
commit 64556ef0a1
8 changed files with 367 additions and 116 deletions

View File

@@ -38,12 +38,14 @@ class IngameController @Inject()(
case SelectTrump =>
Ok(views.html.ingame.selecttrump(
g.getPlayerByUser(request.user),
g.logic
g.logic,
gameId
))
case TieBreak =>
Ok(views.html.ingame.tie(
g.getPlayerByUser(request.user),
g.logic
g.logic,
gameId
))
case _ =>
InternalServerError(s"Invalid game state for in-game view. GameId: $gameId" + s" State: ${g.logic.getCurrentState}")