From 7e277bad5bd730947bb4b47cdb4ae362451cfb8a Mon Sep 17 00:00:00 2001
From: Pinapelz
Date: Tue, 20 May 2025 02:46:48 -0700
Subject: frontend: convert titlebar menus to full page game selector
- due to growing number of games supported
---
site/src/components/GameNotes.tsx | 14 +++
site/src/components/TitleBar.tsx | 252 ++------------------------------------
2 files changed, 23 insertions(+), 243 deletions(-)
(limited to 'site/src/components')
diff --git a/site/src/components/GameNotes.tsx b/site/src/components/GameNotes.tsx
index 82f1629..4f5396b 100644
--- a/site/src/components/GameNotes.tsx
+++ b/site/src/components/GameNotes.tsx
@@ -398,5 +398,19 @@ export const GameNotes = (isMoe: boolean): Record => ({
*Not in main feed as date data is unavailable from this source
>
+ ),
+ wmmt: (
+ <>
+
+ Singular news feed for NA, ASIA/OCE, and JPN
+
+
+ All regions run different versions of the game
+
+ >
)
});
diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx
index daecb4e..2229a45 100644
--- a/site/src/components/TitleBar.tsx
+++ b/site/src/components/TitleBar.tsx
@@ -1,4 +1,4 @@
-import { useState, useEffect, useRef } from "react";
+import { useEffect } from "react";
import {
Link,
useSearchParams,
@@ -6,25 +6,12 @@ import {
useLocation,
} from "react-router-dom";
-interface GameCategory {
- name: string;
- games: { id: string; title: string }[];
-}
const TitleBar: React.FC = () => {
- const [dropdownOpen, setDropdownOpen] = useState(false);
- const [otherDropdownOpen, setOtherDropdownOpen] = useState(false);
- const dropdownRef = useRef(null);
- const otherDropdownRef = useRef(null);
- const rhythmGamesBtnRef = useRef(null);
- const otherGamesBtnRef = useRef(null);
const [searchParams] = useSearchParams();
const navigate = useNavigate();
const location = useLocation();
const isMoe = searchParams.has("moe");
- const [rhythmDropdownStyle, setRhythmDropdownStyle] = useState({});
- const [otherDropdownStyle, setOtherDropdownStyle] = useState({});
-
const toggleTheme = () => {
const params = new URLSearchParams(searchParams);
@@ -58,121 +45,6 @@ const TitleBar: React.FC = () => {
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [location.pathname, navigate]);
- const gameCategories: GameCategory[] = [
- {
- name: "KONAMI",
- games: [
- { id: "iidx", title: "beatmania IIDX" },
- { id: "sdvx", title: "SOUND VOLTEX" },
- { id: "ddr", title: "DDR" },
- { id: "jubeat", title: "jubeat" },
- { id: "popn_music", title: "pop'n music" },
- { id: "nostalgia", title: "NOSTALGIA" },
- { id: "gitadora", title: "GITADORA" },
- { id: "dance_rush", title: "DANCERUSH" },
- { id: "dance_around", title: "DANCE aROUND" },
- { id: "polaris_chord", title: "POLARIS CHORD" },
- ],
- },
- {
- name: "SEGA",
- games: [
- { id: "chunithm_jp", title: "CHUNITHM (JAPAN)" },
- { id: "chunithm_intl", title: "CHUNITHM (INTL)" },
- { id: "maimaidx_jp", title: "maimai DX (JAPAN)" },
- { id: "maimaidx_intl", title: "maimai DX (INTL)" },
- { id: "ongeki_jp", title: "O.N.G.E.K.I" },
- ],
- },
- {
- name: "TAITO",
- games: [{ id: "music_diver", title: "MUSIC DIVER" }],
- },
- {
- name: "BANDAI NAMCO",
- games: [{ id: "taiko", title: "TAIKO" }],
- },
- {
- name: "COMMUNITY",
- games: [
- { id: "wacca_plus", title: "WACCA PLUS" },
- { id: "museca_plus", title: "MÚSECA PLUS" },
- { id: "rb_deluxe_plus", title: "RB DELUXE PLUS" },
- ],
- },
- ];
-
- const otherGames: GameCategory[] = [
- {
- name: "BANDAI NAMCO",
- games: [
- { id: "wmmt", title: "WANGAN MAXI" },
- ],
- },
- ];
-
- const calculateDropdownPosition = (buttonRef: React.RefObject) => {
- if (!buttonRef.current) return {};
-
- const rect = buttonRef.current.getBoundingClientRect();
- const dropdownWidth = 320; // sm:w-80 equivalent in px
- const spaceOnRight = window.innerWidth - rect.right;
- if (spaceOnRight < dropdownWidth) {
- return { right: 'auto', left: '0' };
- }
- return { right: '0', left: 'auto' };
- };
- const toggleRhythmDropdown = () => {
- const newState = !dropdownOpen;
- if (newState) {
- setRhythmDropdownStyle(calculateDropdownPosition(rhythmGamesBtnRef));
- }
- setDropdownOpen(newState);
- };
-
- const toggleOtherDropdown = () => {
- const newState = !otherDropdownOpen;
- if (newState) {
- setOtherDropdownStyle(calculateDropdownPosition(otherGamesBtnRef));
- }
- setOtherDropdownOpen(newState);
- };
-
- useEffect(() => {
- const handleResize = () => {
- if (dropdownOpen) {
- setRhythmDropdownStyle(calculateDropdownPosition(rhythmGamesBtnRef));
- }
- if (otherDropdownOpen) {
- setOtherDropdownStyle(calculateDropdownPosition(otherGamesBtnRef));
- }
- };
-
- window.addEventListener('resize', handleResize);
- return () => window.removeEventListener('resize', handleResize);
- }, [dropdownOpen, otherDropdownOpen]);
-
- useEffect(() => {
- const handleClickOutside = (event: MouseEvent) => {
- if (
- dropdownRef.current &&
- !dropdownRef.current.contains(event.target as Node)
- ) {
- setDropdownOpen(false);
- }
- if (
- otherDropdownRef.current &&
- !otherDropdownRef.current.contains(event.target as Node)
- ) {
- setOtherDropdownOpen(false);
- }
- };
- if (dropdownOpen || otherDropdownOpen)
- document.addEventListener("mousedown", handleClickOutside);
- return () =>
- document.removeEventListener("mousedown", handleClickOutside);
- }, [dropdownOpen, otherDropdownOpen]);
-
return (
{
to={`/${isMoe ? "?moe" : ""}`}
className={`${isMoe ? "text-pink-800 hover:text-pink-600" : "text-gray-300 hover:text-white"} font-medium text-sm sm:text-base`}
>
- All Games
+ Main News Feed
+
+
+ Game Selector
-
-
-
- Rhythm Games
-
-
-
-
-
- {dropdownOpen && (
-
-
- {gameCategories.map((category, index) => (
-
-
- {category.name}
-
-
3 ? "grid grid-cols-1 sm:grid-cols-2 gap-x-2 gap-y-0.5" : "space-y-0.5"}`}
- >
- {category.games.map((game) => (
- setDropdownOpen(false)}
- >
- {game.title}
-
- ))}
-
-
- ))}
-
-
- )}
-
-
-
-
- Other Games
-
-
-
-
-
- {otherDropdownOpen && (
-
-
- {otherGames.map((category, index) => (
-
-
- {category.name}
-
-
3 ? "grid grid-cols-1 sm:grid-cols-2 gap-x-2 gap-y-0.5" : "space-y-0.5"}`}
- >
- {category.games.map((game) => (
- setOtherDropdownOpen(false)}
- >
- {game.title}
-
- ))}
-
-
- ))}
-
-
- )}
-
@@ -330,4 +96,4 @@ const TitleBar: React.FC = () => {
);
};
-export default TitleBar
+export default TitleBar;
--
cgit v1.2.3