blob: d0fea478184e60f7fa5c088a9247f3fa2b5e3765 (
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
103
104
105
106
107
108
|
import type { LoaderFunctionArgs, MetaFunction } from "react-router";
import { Form, useLoaderData } from "react-router";
import { ensureUserLoggedIn } from "../.server/auth";
import { createApiClient } from "../api/client";
import BorderedContainerWithCaption from "../components/BorderedContainerWithCaption";
import NavigateLink from "../components/NavigateLink";
import UserIcon from "../components/UserIcon";
export const meta: MetaFunction = () => [
{ title: "Dashboard | PHPerKaigi 2025 Albatross" },
];
export async function loader({ request }: LoaderFunctionArgs) {
const { user, token } = await ensureUserLoggedIn(request);
const apiClient = createApiClient(token);
const { games } = await apiClient.getGames();
return {
user,
games,
};
}
export default function Dashboard() {
const { user, games } = useLoaderData<typeof loader>()!;
const isOnlineQualifyingOpen = new Date() < new Date(2025, 2, 21, 16, 30);
return (
<div className="p-6 bg-gray-100 min-h-screen flex flex-col items-center gap-4">
{user.icon_path && (
<UserIcon
iconPath={user.icon_path}
displayName={user.display_name}
className="w-24 h-24"
/>
)}
<h1 className="text-3xl font-bold text-gray-800">{user.display_name}</h1>
{isOnlineQualifyingOpen && (
<BorderedContainerWithCaption caption="オンライン予選開催中 (3/21 決勝当日まで)">
<p className="text-gray-900 max-w-prose">
現在オンライン予選を開催中です。
予選問題2問を両方解いたプレイヤーのうち合計スコアが最も小さい2名が、3/21
(金) の PHPerKaigi day0 に実施される決勝戦への進出枠を獲得します。
当日は、会場の Track A まで是非お越しください!
</p>
<p className="text-gray-600 max-w-prose">
※ 当日会場 Track A
にいらっしゃらない場合、次点のスコアを獲得されている方が自動的に決勝進出となります。
</p>
<p className="text-gray-600 max-w-prose">
※ 決勝に参加する予定のない方でも、プレイしていただくことは可能です。
</p>
</BorderedContainerWithCaption>
)}
<BorderedContainerWithCaption caption="試合一覧">
<div className="px-4">
{games.length === 0 ? (
<p>エントリーできる試合はありません</p>
) : (
<ul className="divide-y divide-gray-300">
{games.map((game) => (
<li
key={game.game_id}
className="flex justify-between items-center py-2 gap-4"
>
<div>
<span className="font-medium text-gray-800">
{game.display_name}
</span>
</div>
<div className="flex gap-2">
<NavigateLink to={`/golf/${game.game_id}/play`}>
対戦
</NavigateLink>
<NavigateLink to={`/golf/${game.game_id}/watch`}>
観戦
</NavigateLink>
</div>
</li>
))}
</ul>
)}
</div>
</BorderedContainerWithCaption>
<Form method="post" action="/logout">
<button
type="submit"
className="px-4 py-2 bg-red-500 text-white rounded-sm transition duration-300 hover:bg-red-700 focus:ring-3 focus:ring-red-400 focus:outline-hidden"
>
ログアウト
</button>
</Form>
{user.is_admin && (
<a
href={
process.env.NODE_ENV === "development"
? "http://localhost:8003/phperkaigi/2025/code-battle/admin/dashboard"
: "/phperkaigi/2025/code-battle/admin/dashboard"
}
className="text-lg text-white bg-sky-600 px-4 py-2 rounded-sm transition duration-300 hover:bg-sky-500 focus:ring-3 focus:ring-sky-400 focus:outline-hidden"
>
Admin Dashboard
</a>
)}
</div>
);
}
|