From 152894146b72830e48e800721ea6160228a9bdc1 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 7 Jul 2025 00:00:22 -0700 Subject: generate sha-1 hash for chart on score import --- frontend/src/components/displays/GenericScoreDisplay.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'frontend/src/components/displays/GenericScoreDisplay.tsx') diff --git a/frontend/src/components/displays/GenericScoreDisplay.tsx b/frontend/src/components/displays/GenericScoreDisplay.tsx index 3358f8d..c30e475 100644 --- a/frontend/src/components/displays/GenericScoreDisplay.tsx +++ b/frontend/src/components/displays/GenericScoreDisplay.tsx @@ -1,4 +1,5 @@ import React from "react"; +import { globalSkipKeys } from "../../types/constants"; interface Score { // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -53,13 +54,6 @@ const ScoreDisplay: React.FC = ({ time: "Time", }; - const skipKeys = [ - "id", - "internalname", - "internalName", - "gameInternalName", - "userId", - ]; const primaryKeys = ["title", "artist", "song"]; const mainStatKeys = [ "score", @@ -165,7 +159,7 @@ const ScoreDisplay: React.FC = ({ const getScoreEntries = (score: Score) => { const entries = Object.entries(score).filter( - ([key]) => !skipKeys.includes(key), + ([key]) => !globalSkipKeys.includes(key), ); const primary = entries.filter(([key]) => primaryKeys.includes(key)); @@ -224,7 +218,7 @@ const ScoreDisplay: React.FC = ({ // Get all possible keys for table headers const allKeys = Array.from( new Set(scores.flatMap((score) => Object.keys(score))), - ).filter((key) => !skipKeys.includes(key)); + ).filter((key) => !globalSkipKeys.includes(key)); // Prioritize important keys for table display const tableKeys = [ -- cgit v1.2.3