From 2a8545f11267de06447b3c56d8beca8d27596dab Mon Sep 17 00:00:00 2001 From: realtradam Date: Sat, 29 Jun 2024 18:30:20 -0400 Subject: work on rendering games --- react-frontend/src/pages/Game.tsx | 25 +++++++++++++++++++++++++ react-frontend/src/pages/Games.tsx | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 react-frontend/src/pages/Game.tsx (limited to 'react-frontend/src/pages') diff --git a/react-frontend/src/pages/Game.tsx b/react-frontend/src/pages/Game.tsx new file mode 100644 index 0000000..464176a --- /dev/null +++ b/react-frontend/src/pages/Game.tsx @@ -0,0 +1,25 @@ +import { useState, useEffect } from "react"; +import { useParams } from "react-router-dom"; +import { GameType } from "../components/GameCard"; + +export default function Games () { + const { path_game, path_user } = useParams(); + const [gameData, setGameData] = useState(); + + useEffect(() => { + const url = `${import.meta.env.VITE_API_TITLE}/api/v1/games/${path_user}/${path_game}`; + fetch(url).then((response) => { + if (response.ok) { + return response.json(); + } + throw new Error("Network response was not ok."); + }).then((response) => setGameData(response)); //.catch(() => navigate("/")); + }, [path_game, path_user]); + + return( + <> +

blah

+ + ); + +} diff --git a/react-frontend/src/pages/Games.tsx b/react-frontend/src/pages/Games.tsx index 2a9b23a..b43da06 100644 --- a/react-frontend/src/pages/Games.tsx +++ b/react-frontend/src/pages/Games.tsx @@ -15,7 +15,7 @@ export default function Games () { }, []); const allGames = games.map((game) => ( - + )); return ( -- cgit v1.2.3