From e40f07211f5f15dcb138e2520a76d13afd3c0cfd Mon Sep 17 00:00:00 2001 From: FifthWit Date: Thu, 30 Jan 2025 10:44:30 -0600 Subject: formatted with prettier --- frontend/src/pages/Maplist.tsx | 165 +++++++++++++++++++++++++++-------------- 1 file changed, 109 insertions(+), 56 deletions(-) (limited to 'frontend/src/pages/Maplist.tsx') diff --git a/frontend/src/pages/Maplist.tsx b/frontend/src/pages/Maplist.tsx index 04938cf..5138964 100644 --- a/frontend/src/pages/Maplist.tsx +++ b/frontend/src/pages/Maplist.tsx @@ -1,11 +1,11 @@ -import React, { useEffect } from "react"; -import { Link, useLocation, useNavigate, useParams } from "react-router-dom"; -import { Helmet } from "react-helmet"; +import React, { useEffect } from 'react'; +import { Link, useLocation, useNavigate, useParams } from 'react-router-dom'; +import { Helmet } from 'react-helmet'; -import "@css/Maplist.css"; -import { API } from "@api/Api"; -import { Game } from "@customTypes/Game"; -import { GameChapter, GamesChapters } from "@customTypes/Chapters"; +import '@css/Maplist.css'; +import { API } from '@api/Api'; +import { Game } from '@customTypes/Game'; +import { GameChapter, GamesChapters } from '@customTypes/Chapters'; const Maplist: React.FC = () => { const [game, setGame] = React.useState(null); @@ -19,41 +19,41 @@ const Maplist: React.FC = () => { const [curChapter, setCurChapter] = React.useState(); const [numChapters, setNumChapters] = React.useState(0); - const [dropdownActive, setDropdownActive] = React.useState("none"); + const [dropdownActive, setDropdownActive] = React.useState('none'); - const params = useParams<{ id: string, chapter: string }>(); + const params = useParams<{ id: string; chapter: string }>(); const location = useLocation(); const navigate = useNavigate(); function _update_currently_selected(catNum2: number) { setCurrentlySelected(catNum2); - navigate("/games/" + game?.id + "?cat=" + catNum2); + navigate('/games/' + game?.id + '?cat=' + catNum2); setHasClicked(true); } const _fetch_chapters = async (chapter_id: string) => { const chapters = await API.get_chapters(chapter_id); setCurChapter(chapters); - } + }; const _handle_dropdown_click = () => { - if (dropdownActive == "none") { - setDropdownActive("block"); + if (dropdownActive == 'none') { + setDropdownActive('block'); } else { - setDropdownActive("none"); + setDropdownActive('none'); } - } + }; // im sorry but im too lazy to fix this right now useEffect(() => { // gameID - const gameId = parseFloat(params.id || ""); + const gameId = parseFloat(params.id || ''); setId(gameId); // location query params const queryParams = new URLSearchParams(location.search); - if (queryParams.get("chapter")) { - let cat = parseFloat(queryParams.get("chapter") || ""); + if (queryParams.get('chapter')) { + let cat = parseFloat(queryParams.get('chapter') || ''); if (gameId == 2) { cat += 10; } @@ -62,7 +62,7 @@ const Maplist: React.FC = () => { const _fetch_game = async () => { const games = await API.get_games(); - const foundGame = games.find((game) => game.id === gameId); + const foundGame = games.find(game => game.id === gameId); // console.log(foundGame) if (foundGame) { setGame(foundGame); @@ -74,7 +74,7 @@ const Maplist: React.FC = () => { const games_chapters = await API.get_games_chapters(gameId.toString()); setGameChapters(games_chapters); setNumChapters(games_chapters.chapters.length); - } + }; setLoad(true); _fetch_game(); @@ -83,21 +83,19 @@ const Maplist: React.FC = () => { useEffect(() => { const queryParams = new URLSearchParams(location.search); - if (gameChapters != undefined && !queryParams.get("chapter")) { + if (gameChapters != undefined && !queryParams.get('chapter')) { _fetch_chapters(gameChapters!.chapters[0].id.toString()); } - }, [gameChapters]) - - + }, [gameChapters]); return (
LPHUB | Maplist -
+
- @@ -117,7 +115,7 @@ const Maplist: React.FC = () => {

{ game?.category_portals.find( - (obj) => obj.category.id === catNum + 1 + obj => obj.category.id === catNum + 1 )?.portal_count }

@@ -125,7 +123,19 @@ const Maplist: React.FC = () => {
{game?.category_portals.map((cat, index) => ( - ))} @@ -136,45 +146,88 @@ const Maplist: React.FC = () => {
- {curChapter?.chapter.name.split(" - ")[0]} + + {curChapter?.chapter.name.split(' - ')[0]} +
- {curChapter?.chapter.name.split(" - ")[1]} + {curChapter?.chapter.name.split(' - ')[1]}
-
+
{gameChapters?.chapters.map((chapter, i) => { - return
{ _fetch_chapters(chapter.id.toString()); _handle_dropdown_click() }}>{chapter.name}
- }) - - } + return ( +
{ + _fetch_chapters(chapter.id.toString()); + _handle_dropdown_click(); + }} + > + {chapter.name} +
+ ); + })}
{curChapter?.maps.map((map, i) => { - return
- - {map.name} -
-
- {map.is_disabled ? map.category_portals[0].portal_count : map.category_portals.find( - (obj) => obj.category.id === catNum + 1 - )?.portal_count} - portals + return ( +
+ + {map.name} +
+
+ + {map.is_disabled + ? map.category_portals[0].portal_count + : map.category_portals.find( + obj => obj.category.id === catNum + 1 + )?.portal_count} + + portals +
-
-
- {/* Difficulty: */} -
-
-
-
-
-
+
+ {/* Difficulty: */} +
+
+
+
+
+
+
-
- -
+ +
+ ); })}
-- cgit v1.2.3