aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx
blob: ca2e16f007e95a930b44944930127d1eee2daab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { useAtomValue } from "jotai";
import { gamingLeftTimeSecondsAtom } from "../../states/watch";
import type { SupportedLanguage } from "../../types/SupportedLanguage";
import LeftTime from "../Gaming/LeftTime";
import ProblemColumn from "../Gaming/ProblemColumn";
import RankingTable from "../Gaming/RankingTable";
import TitledColumn from "../TitledColumn";
import TwoColumnLayout from "../TwoColumnLayout";

type Props = {
  gameDisplayName: string;
  problemTitle: string;
  problemDescription: string;
  problemLanguage: SupportedLanguage;
  sampleCode: string;
};

export default function GolfWatchAppGamingMultiplayer({
  gameDisplayName,
  problemTitle,
  problemDescription,
  problemLanguage,
  sampleCode,
}: Props) {
  const leftTimeSeconds = useAtomValue(gamingLeftTimeSecondsAtom)!;

  return (
    <div className="min-h-screen bg-gray-100 flex flex-col">
      <div className="text-white bg-brand-600 grid grid-cols-3 px-4 py-2">
        <div className="font-bold flex justify-between my-auto"></div>
        <div className="font-bold text-center">
          <div className="text-gray-100">{gameDisplayName}</div>
          <LeftTime sec={leftTimeSeconds} />
        </div>
        <div className="font-bold flex justify-between my-auto"></div>
      </div>
      <TwoColumnLayout>
        <ProblemColumn
          title={problemTitle}
          description={problemDescription}
          language={problemLanguage}
          sampleCode={sampleCode}
        />
        <TitledColumn title="順位表">
          <RankingTable problemLanguage={problemLanguage} />
        </TitledColumn>
      </TwoColumnLayout>
    </div>
  );
}