blob: 1b91620242cb94a57bdf6dea456cb388a1454ba8 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
import { useAtomValue } from "jotai";
import type { components } from "../../api/schema";
import { gamingLeftTimeSecondsAtom } from "../../states/watch";
import LeftTime from "../Gaming/LeftTime";
import Problem from "../Gaming/Problem";
import UserLabel from "../UserLabel";
type RankingEntry = components["schemas"]["RankingEntry"];
type Props = {
gameDisplayName: string;
ranking: RankingEntry[];
problemTitle: string;
problemDescription: string;
sampleCode: string;
gameResult: "winA" | "winB" | "draw" | null;
};
export default function GolfWatchAppGamingMultiplayer({
gameDisplayName,
ranking,
problemTitle,
problemDescription,
sampleCode,
gameResult,
}: Props) {
const leftTimeSeconds = useAtomValue(gamingLeftTimeSecondsAtom)!;
const topBg = gameResult
? gameResult === "winA"
? "bg-orange-400"
: gameResult === "winB"
? "bg-purple-400"
: "bg-pink-500"
: "bg-sky-600";
return (
<div className="min-h-screen bg-gray-100 flex flex-col">
<div className={`text-white ${topBg} 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>
<div className="grow grid grid-cols-2 p-4 gap-4">
<Problem
title={problemTitle}
description={problemDescription}
sampleCode={sampleCode}
/>
<div>
<table className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-50">
<tr>
<th
scope="col"
className="px-6 py-3 text-left font-medium text-gray-800 uppercase tracking-wider"
>
順位
</th>
<th
scope="col"
className="px-6 py-3 text-left font-medium text-gray-800 uppercase tracking-wider"
>
名前
</th>
<th
scope="col"
className="px-6 py-3 text-left font-medium text-gray-800 uppercase tracking-wider"
>
スコア
</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-200">
{ranking.map((entry, index) => (
<tr key={entry.player.user_id}>
<td className="px-6 py-4 whitespace-nowrap text-gray-900">
{index + 1}
</td>
<td className="px-6 py-4 whitespace-nowrap text-gray-900">
{entry.player.display_name}
{entry.player.label && (
<span className="mx-2">
<UserLabel label={entry.player.label} />
</span>
)}
</td>
<td className="px-6 py-4 whitespace-nowrap text-gray-900">
{entry.score}
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
</div>
);
}
|