diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-18 00:38:07 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-18 01:46:02 +0900 |
| commit | ad42f43d1c3c8f0da0ac31b8016e2f20f1765720 (patch) | |
| tree | 09567462299eed859bb0f2170ee2602825c23ca0 /frontend/app/components/Gaming/ScoreBar.tsx | |
| parent | 7653eb2b28911a0479b3b673c9b63fd490aedb6b (diff) | |
| download | iosdc-japan-2025-albatross-ad42f43d1c3c8f0da0ac31b8016e2f20f1765720.tar.gz iosdc-japan-2025-albatross-ad42f43d1c3c8f0da0ac31b8016e2f20f1765720.tar.zst iosdc-japan-2025-albatross-ad42f43d1c3c8f0da0ac31b8016e2f20f1765720.zip | |
refactor(frontend): extract components for gaming page
Diffstat (limited to 'frontend/app/components/Gaming/ScoreBar.tsx')
| -rw-r--r-- | frontend/app/components/Gaming/ScoreBar.tsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/app/components/Gaming/ScoreBar.tsx b/frontend/app/components/Gaming/ScoreBar.tsx new file mode 100644 index 0000000..4eac3ad --- /dev/null +++ b/frontend/app/components/Gaming/ScoreBar.tsx @@ -0,0 +1,25 @@ +type Props = { + scoreA: number | null; + scoreB: number | null; + bgA: string; + bgB: string; +}; + +export default function ScoreBar({ scoreA, scoreB, bgA, bgB }: Props) { + let scoreRatio; + if (scoreA === null && scoreB === null) { + scoreRatio = 50; + } else if (scoreA === null) { + scoreRatio = 0; + } else if (scoreB === null) { + scoreRatio = 100; + } else { + scoreRatio = (scoreB / (scoreA + scoreB)) * 100; + } + + return ( + <div className={`w-full ${bgB}`}> + <div className={`h-6 ${bgA}`} style={{ width: `${scoreRatio}%` }}></div> + </div> + ); +} |
