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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
import { useAtomValue } from "jotai";
import React, { useRef, useState } from "react";
import { Link } from "react-router";
import SubmitButton from "../../components/SubmitButton";
import {
gamingLeftTimeSecondsAtom,
scoreAtom,
statusAtom,
} from "../../states/play";
import type { PlayerProfile } from "../../types/PlayerProfile";
import BorderedContainer from "../BorderedContainer";
import LeftTime from "../Gaming/LeftTime";
import Problem from "../Gaming/Problem";
import SubmitStatusLabel from "../SubmitStatusLabel";
import UserIcon from "../UserIcon";
function calcCodeSize(code: string): number {
return code
.replace(/\s+/g, "")
.replace(/^<\?php/, "")
.replace(/^<\?/, "")
.replace(/\?>$/, "").length;
}
type Props = {
gameDisplayName: string;
playerProfile: PlayerProfile;
problemTitle: string;
problemDescription: string;
sampleCode: string;
initialCode: string;
onCodeChange: (code: string) => void;
onCodeSubmit: (code: string) => void;
};
export default function GolfPlayAppGaming({
gameDisplayName,
playerProfile,
problemTitle,
problemDescription,
sampleCode,
initialCode,
onCodeChange,
onCodeSubmit,
}: Props) {
const leftTimeSeconds = useAtomValue(gamingLeftTimeSecondsAtom)!;
const score = useAtomValue(scoreAtom);
const status = useAtomValue(statusAtom);
const [codeSize, setCodeSize] = useState(calcCodeSize(initialCode));
const textareaRef = useRef<HTMLTextAreaElement>(null);
const handleTextChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
setCodeSize(calcCodeSize(e.target.value));
onCodeChange(e.target.value);
};
const handleSubmitButtonClick = () => {
if (textareaRef.current) {
onCodeSubmit(textareaRef.current.value);
}
};
return (
<div className="min-h-screen bg-gray-100 flex flex-col">
<div className="text-white bg-sky-600 flex flex-row justify-between px-4 py-2">
<div className="font-bold">
<div className="text-gray-100">{gameDisplayName}</div>
<LeftTime sec={leftTimeSeconds} />
</div>
<Link to={"/dashboard"}>
<div className="flex gap-4 my-auto font-bold">
<div className="text-6xl">{score}</div>
<div className="text-end">
<div className="text-gray-100">Player 1</div>
<div className="text-2xl">{playerProfile.displayName}</div>
</div>
{playerProfile.iconPath && (
<UserIcon
iconPath={playerProfile.iconPath}
displayName={playerProfile.displayName}
className="w-12 h-12 my-auto"
/>
)}
</div>
</Link>
</div>
<div className="grow grid grid-cols-3 divide-x divide-gray-300">
<Problem
title={problemTitle}
description={problemDescription}
sampleCode={sampleCode}
/>
<div className="p-4 flex flex-col gap-4">
<div className="text-center text-xl font-bold">ソースコード</div>
<BorderedContainer className="grow flex flex-col gap-4">
<div className="flex flex-row gap-2 items-center">
<div className="grow font-semibold text-lg">
コードサイズ: {codeSize}
</div>
<SubmitButton onClick={handleSubmitButtonClick}>
提出
</SubmitButton>
</div>
<textarea
ref={textareaRef}
defaultValue={initialCode}
onChange={handleTextChange}
className="grow resize-none h-full w-full p-2 bg-gray-50 rounded-lg border border-gray-300 focus:outline-hidden focus:ring-2 focus:ring-gray-400 transition duration-300"
/>
</BorderedContainer>
</div>
<div className="p-4 flex flex-col gap-4">
<div className="text-center text-xl font-bold">提出結果</div>
<div className="overflow-hidden border-2 border-blue-600 rounded-xl">
<table className="min-w-full divide-y divide-gray-400 border-collapse">
<thead className="bg-gray-50">
<tr>
<th
scope="col"
className="px-6 py-3 text-left font-medium text-gray-800"
>
ステータス
</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-300">
{[status].map((status) => (
<tr key={99999}>
<td className="px-6 py-4 whitespace-nowrap text-gray-900">
<SubmitStatusLabel status={status} />
</td>
</tr>
))}
</tbody>
</table>
</div>
<p>
NOTE:
過去の提出結果を閲覧する機能は現在実装中です。それまでは提出コードをお手元に保管しておいてください。
</p>
</div>
</div>
</div>
);
}
|