aboutsummaryrefslogtreecommitdiff
path: root/src/SignUp.tsx
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-09-01 20:21:06 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-09-01 20:21:06 +0900
commit1d3b5fcf0dc02557aa2eba02074ec84bd497a768 (patch)
tree4eddcd3b1bb7235b08dd00c8e81596b65fc2e2ea /src/SignUp.tsx
parentfac8e49ea5e71bc2ed80967e82019c82407e5cf0 (diff)
Update tsx files
Diffstat (limited to 'src/SignUp.tsx')
-rw-r--r--src/SignUp.tsx85
1 files changed, 22 insertions, 63 deletions
diff --git a/src/SignUp.tsx b/src/SignUp.tsx
index 2a7f448..3103758 100644
--- a/src/SignUp.tsx
+++ b/src/SignUp.tsx
@@ -1,73 +1,32 @@
import './SignUp.css'
-import { useState } from "react";
-import { useForm } from "react-hook-form";
-import { zodResolver } from "@hookform/resolvers/zod";
-import * as z from "zod"
+import { Link } from 'react-router-dom';
-const schema = z.object({
- name: z.string(),
- email: z.string().email("それメアドじゃないよ"),
- birthday: z.coerce.date().max(new Date(), { message: "まだ生まれてないじゃん" }),
- language: z.string(),
-})
+/* import { useState } from "react";
+ * import { useForm } from "react-hook-form";
+ * import { zodResolver } from "@hookform/resolvers/zod"; */
+/* import * as z from "zod" */
+/*
+ * const schema = z.object({
+ * name: z.string().min(1, { message: '必須項目です' }),
+ * email: z.string().min(1, { message: '必須項目です' }).email("メールアドレスを入力してください"),
+ * language: z.string(),
+ * }) */
-type Answer = {
- name: string,
- email: string,
- birthday: Date,
- language: string,
-}
+/* type Answer = {
+ * name: string,
+ * email: string,
+ * birthday: Date,
+ * language: string,
+ * } */
export const SignUp = () => {
- const { register, handleSubmit, reset, formState: { errors } } = useForm<Answer>({
- resolver: zodResolver(schema)
- });
- const [answer, setAnswer] = useState<Answer | null>(null);
-
- const yourAnswer = answer ? (
- <>
- <h2>あなたの情報です</h2>
- <dl>
- <dt>おぬしの名前は…</dt>
- <dd>{answer.name}</dd>
- <dt>おぬしのメアドは…</dt>
- <dd>{answer.email}</dd>
- <dt>あなたの誕生日</dt>
- <dd>{answer.birthday.getFullYear()}年{answer.birthday.getMonth()}月{answer.birthday.getDay()}日</dd>
- <dt>おぬしの好きなプログラミング言語は…</dt>
- <dd>{answer.language}</dd>
- </dl>
- </>
- ) : (<></>)
-
return (
<>
- <h1>会員登録</h1>
- <form className="SignUpForm" onSubmit={handleSubmit((data) => setAnswer(data))}>
- <label>お名前:</label>
- <input {...register("name")} placeholder="おなまえ" />
- {errors.name?.message}
- <label>めるあど</label>
- <input {...register("email", { required: true })} placeholder="めるあど" />
- {errors.email?.message && <p className="error">{errors.email?.message}</p>}
- <label>生まれた日</label>
- <input {...register("birthday", { required: true })} placeholder="yyyy/mm/dd" />
- {errors.birthday?.message && <p className="error">{errors.birthday?.message}</p>}
- <label>好きなプログラミング言語</label>
- <select {...register("language", { required: true })}>
- <option value="">Select...</option>
- <option value="Gulie">Guile</option>
- <option value="Gauche">Gauche</option>
- <option value="Racket">Racket</option>
- <option value="Larceny">Larceny</option>
- <option value="Chicken">Chicken</option>
- </select>
- {errors.language?.message && <p className="error">{errors.language?.message}</p>}
- <input type="submit" />
- <button type="button" onClick={() => reset()}>消す</button>
- </form>
-
- {yourAnswer}
+ <div className="SignUpForm">
+ <h1>会員登録</h1>
+ <p>サービスの利用のためには会員登録が必要です。</p>
+ <Link to="/sign-up/form1">会員登録を始める</Link>
+ </div>
</>
);
}