diff --git a/pac-man-board-game/ClientApp/src/AppRoutes.tsx b/pac-man-board-game/ClientApp/src/AppRoutes.tsx index a1d7816..ba2695d 100644 --- a/pac-man-board-game/ClientApp/src/AppRoutes.tsx +++ b/pac-man-board-game/ClientApp/src/AppRoutes.tsx @@ -15,7 +15,7 @@ const AppRoutes = [ element: }, { - path: "/game", + path: "/game/:id", element: , }, { diff --git a/pac-man-board-game/ClientApp/src/pages/lobby.tsx b/pac-man-board-game/ClientApp/src/pages/lobby.tsx index 08701de..bc5fcaa 100644 --- a/pac-man-board-game/ClientApp/src/pages/lobby.tsx +++ b/pac-man-board-game/ClientApp/src/pages/lobby.tsx @@ -26,7 +26,7 @@ const LobbyPage: FC = () => { // TODO check if player is defined in storage, if if (response.ok) { const data = await response.json(); console.debug("Game created: ", data); - // TODO redirect to game page + navigate("/game/" + data.id) } else { const data = await response.text(); console.error("Error: ", data); @@ -51,6 +51,7 @@ const GameTable: FC = ({className}) => { const data = useAtomValue(fetchAtom); const thisPlayer = useAtomValue(thisPlayerAtom); + const navigate = useNavigate(); async function joinGame(gameId: string): Promise { if (thisPlayer === undefined) throw new Error("Player is undefined"); @@ -60,10 +61,10 @@ const GameTable: FC = ({className}) => { const result = await postData("/game/join/" + gameId, {body: thisPlayer}); if (result.ok) { - console.debug("Joined game " + gameId, await result.json()); - // TODO redirect to game page + console.debug("Joined game " + gameId, await result.text()); + navigate("/game/" + gameId); } else { - console.error("Failed to join game " + gameId, await result.json()); + console.error("Failed to join game " + gameId, await result.text()); // TODO show error message } } diff --git a/pac-man-board-game/Controllers/GameController.cs b/pac-man-board-game/Controllers/GameController.cs index 7a89127..80a96cb 100644 --- a/pac-man-board-game/Controllers/GameController.cs +++ b/pac-man-board-game/Controllers/GameController.cs @@ -10,7 +10,7 @@ namespace pacMan.Controllers; [ApiController] [Route("api/[controller]")] -public class GameController : GenericController // TODO reconnect using player id +public class GameController : GenericController { private readonly IActionService _actionService; private readonly GameService _gameService;