File size: 1,220 Bytes
aeb9637 35af7d4 aeb9637 |
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 |
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { useTranslation } from "@/hooks/useTranslation";
interface ScoreSubmissionFormProps {
playerName: string;
setPlayerName: (name: string) => void;
isSubmitting: boolean;
hasSubmitted: boolean;
onSubmit: () => Promise<void>;
onKeyDown: (e: React.KeyboardEvent<HTMLInputElement>) => void;
}
export const ScoreSubmissionForm = ({
playerName,
setPlayerName,
isSubmitting,
hasSubmitted,
onSubmit,
onKeyDown,
}: ScoreSubmissionFormProps) => {
const t = useTranslation();
return (
<div className="flex gap-4 mb-6">
<Input
placeholder={t.leaderboard.enterName}
value={playerName}
onChange={(e) => {
const value = e.target.value.replace(/[^a-zA-ZÀ-ÿ0-9-]/g, "");
setPlayerName(value);
}}
onKeyDown={onKeyDown}
className="flex-1"
maxLength={20}
autoComplete="words"
/>
<Button
onClick={onSubmit}
disabled={isSubmitting || !playerName.trim() || hasSubmitted}
>
{isSubmitting ? t.leaderboard.submitting : t.leaderboard.submit}
</Button>
</div>
);
}; |