From 7cc950fa7d3cd11ef643fda6174fe125c2bccc17 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 8 Oct 2025 17:26:35 -0700 Subject: frontend: remove others keys from well-defined score displays --- .../components/displays/DancerushScoreDisplay.tsx | 30 +--------------------- 1 file changed, 1 insertion(+), 29 deletions(-) (limited to 'frontend/src/components/displays/DancerushScoreDisplay.tsx') diff --git a/frontend/src/components/displays/DancerushScoreDisplay.tsx b/frontend/src/components/displays/DancerushScoreDisplay.tsx index 908880c..35a3968 100644 --- a/frontend/src/components/displays/DancerushScoreDisplay.tsx +++ b/frontend/src/components/displays/DancerushScoreDisplay.tsx @@ -55,7 +55,6 @@ const DancerushScoreDisplay: React.FC = ({ num_players: "Players" }; - const primaryKeys = ["title", "artist", "song"]; const mainStatKeys = [ "score", "difficulty", @@ -186,22 +185,12 @@ const DancerushScoreDisplay: React.FC = ({ ([key]) => !globalSkipKeys.includes(key), ); - const primary = entries.filter(([key]) => primaryKeys.includes(key)); const mainStats = entries.filter(([key]) => mainStatKeys.includes(key)); const expandable = entries.filter(([key]) => expandableKeys.includes(key)); - const others = entries.filter( - ([key]) => - !primaryKeys.includes(key) && - !mainStatKeys.includes(key) && - !expandableKeys.includes(key) && - key !== "timestamp", - ); return { - primary, mainStats, expandable, - others, timestamp: score.timestamp, }; }; @@ -284,7 +273,7 @@ const DancerushScoreDisplay: React.FC = ({
{sortedScores.map((score, index) => { // eslint-disable-next-line @typescript-eslint/no-unused-vars - const { primary, mainStats, expandable, others, timestamp } = + const { mainStats, expandable, timestamp } = getScoreEntries(score); const chartIdHash = SHA1(`dancerush${score.title}${score.artist}`).toString(); return ( @@ -341,23 +330,6 @@ const DancerushScoreDisplay: React.FC = ({
))} - {/* Other fields */} - {others.length > 0 && ( -
-
- {others.map(([key, value]) => ( -
- - {getDisplayName(key)}: - - - {renderValue(value, key)} - -
- ))} -
-
- )} {/* Timestamp */}
-- cgit v1.2.3