diff --git a/app/globals.css b/app/globals.css index 4c40d4a..ad9ab27 100644 --- a/app/globals.css +++ b/app/globals.css @@ -83,3 +83,10 @@ main { height: calc(100vh - 30px); max-height: 100%; } + + +/* DEBUG */ +.row { + display: flex; + flex-direction: row; +} diff --git a/components/gui/data-handlers/game-info-handler.tsx b/components/gui/data-handlers/game-info-handler.tsx new file mode 100644 index 0000000..78fdc0e --- /dev/null +++ b/components/gui/data-handlers/game-info-handler.tsx @@ -0,0 +1,17 @@ +import { fetchGameGroups } from "@/components/server/fetchers"; +import { Game, GameGroup } from "@/types/stellaris"; +import { Dispatch, SetStateAction } from "react"; + +export const GameInfoHandler = async ( + props: { + game: Game, + groups: GameGroup[] +}) => { + if (props) { + const currentGame = props.game; + const currentGroups = props.groups; + + } + + return <> +} \ No newline at end of file diff --git a/components/gui/game-info-tabs.tsx b/components/gui/game-info-tabs.tsx new file mode 100644 index 0000000..e7e21e6 --- /dev/null +++ b/components/gui/game-info-tabs.tsx @@ -0,0 +1,65 @@ +'use client'; +import { Game, GameGroup } from "@/types/stellaris"; +import { Dropdown } from "@nextui-org/react"; +import { Dispatch, Key, SetStateAction, Suspense, useState } from 'react'; +import { fetchGameGroups } from "@/components/server/fetchers"; +import { GameInfoHandler } from "./data-handlers/game-info-handler"; + +type SelectionType = "all" | Set; + +export const GameInfoTabs = ( + props: { + game: Game, + groups: GameGroup[] + }) => { + + const [currentTab, setCurrentTab] = useState(1); + + let currentTabView; + switch(currentTab) { + case(1): + case(2): { + currentTabView =

{currentTab}

+ break; + } + case(3): { + currentTabView = + break; + } + default: + currentTabView =

Oops, something went wrong

+ } + + return ( + <> + + + +
+ + + +
+ {currentTabView} + + ) +} + +const GameInfoLegacyView = ( + props: { + game: Game, + groups: GameGroup[] + } +) => { + return ( +
+

Legacy View for {props.groups.length > 1 ? "Groups" : "Group"} {props.groups.map(elem => elem.name).join(", ")}

+
+ ) +} \ No newline at end of file diff --git a/components/gui/game-view.tsx b/components/gui/game-view.tsx index fb4c1dd..62588db 100644 --- a/components/gui/game-view.tsx +++ b/components/gui/game-view.tsx @@ -4,18 +4,22 @@ import { GameSelect } from "./game-select"; import { useState } from 'react'; import { GameGroupSelect } from "./game-group-select"; import { SSRProvider } from "react-bootstrap"; +import { GameInfoTabs } from "./game-info-tabs"; export const GameView = (props: { games: Game[] }) => { const [currentGame, setCurrentGame] = useState(props.games[0]); - const [gameGroups, setGameGroups] = useState([{id: 0, name: "", game_id: 0}]); + const [gameGroups, setGameGroups] = useState([{ id: 0, name: "", game_id: 0 }]); const [currentGameGroups, setCurrentGameGroups] = useState(gameGroups); return ( <> - - +
+ + +
+
) diff --git a/public/routes.json b/public/routes.json index 0149c2e..a8cacc2 100644 --- a/public/routes.json +++ b/public/routes.json @@ -5,7 +5,7 @@ "href": "/" }, { - "name": "Legacy Info", + "name": "Game 15 Info", "href": "/graphs" }, { diff --git a/public/routes_api.json b/public/routes_api.json index 97a95cf..f2c9c29 100644 --- a/public/routes_api.json +++ b/public/routes_api.json @@ -1,11 +1,11 @@ { "links": [ { - "name": "Home Alt", + "name": "Home New", "href": "/" }, { - "name": "Legacy Info", + "name": "Game 15 Info", "href": "/graphs" }, {