From df79d68cb3cbec15e985fed8c0cabc484ef55e35 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 6 Jul 2025 15:02:14 -0700 Subject: move filter option configuration to constants.ts --- frontend/src/pages/Score.tsx | 50 ++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 30 deletions(-) (limited to 'frontend/src/pages/Score.tsx') diff --git a/frontend/src/pages/Score.tsx b/frontend/src/pages/Score.tsx index 2bf1a2b..e32f001 100644 --- a/frontend/src/pages/Score.tsx +++ b/frontend/src/pages/Score.tsx @@ -9,6 +9,8 @@ import DancerushScoreDisplay from "../components/displays/DancerushScoreDisplay" type SortField = string; type SortDirection = "asc" | "desc"; +import { getFilterOptions } from "../types/constants"; + const Score = () => { const { user, isLoading, logout } = useAuth(); const navigate = useNavigate(); @@ -36,33 +38,24 @@ const Score = () => { }; const renderRequestFilterMenu = () => { - if (gameName === "dancerush") { - const filterOptions = [ - { value: "timestamp", label: "Recent" }, - { value: "score", label: "Score" }, - { value: "lamp", label: "Rank" }, - { value: "lamo_diff", label: "Difficulty" }, - ]; - - return ( -
- {filterOptions.map((option) => ( - - ))} -
- ); - } - return null; + const filterOptions = getFilterOptions(gameName); + return ( +
+ {filterOptions.map((option) => ( + + ))} +
+ ); }; // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -167,9 +160,6 @@ const Score = () => { {/* Filter Menu */}
- - Sort by: - {renderRequestFilterMenu()}
-- cgit v1.2.3