このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/js/child/register/index.jsx

156 行
7.1 KiB
React
Raw 通常表示 履歴

2021-10-02 03:45:08 +09:00
import React, { useEffect, useState } from 'react';
import ReactDOM from 'react-dom';
import { Button } from '@material-ui/core';
import { LoadingButton } from '@material-ui/lab';
import axios from 'axios';
const Register = () => {
const [firstName, setFirstName] = useState('');
const [lastName, setLastName] = useState('');
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [agent, setAgent] = useState('');
const [errors, setErrors] = useState({})
const [err_400, setErr400] = useState(false)
const handleSubmit = (e) => {
e.preventDefault();
if(!validateForm()) return;
const formdata = new FormData();
formdata.append('firstName', firstName);
formdata.append('lastName', lastName);
formdata.append('email', email);
formdata.append('password', password);
formdata.append('agent', agent);
axios.post('/register/c-account', formdata)
.then(response => {
if(response.data.status_code==200){
window.location.href = '/register/c-account/complete';
}
else if(response.data.status_code==400){
window.location.href = '/register/c-account/error';
}
else if(response.data.status_code==500){
window.location.href = '/unknown-error';
}
})
.catch(err=>{setErr400(true)})
}
const validateForm = () => {
let errors = {};
let formIsValid = true;
if (email.length == 0) { formIsValid = false; errors["email"] = 'Required'; }
else {
//regular expression for email validation
var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);
if (!pattern.test(email)) {
formIsValid = false;
errors["email"] = true;
}
else {
errors['email'] = false;
}
}
if(firstName.length == 0){ formIsValid = false; errors['firstName'] = true; }
else errors['firstName'] = false;
if(lastName.length == 0){ formIsValid = false; errors['lastName'] = true; }
else errors['lastName'] = false;
if(password.length < 8){ formIsValid = false; errors['password'] = true; }
else errors['password'] = false;
if(agent.length == 0){ formIsValid = false; errors['agent'] = true; }
else errors['agent'] = false;
setErrors(errors);
return formIsValid;
}
return (
<form onSubmit={handleSubmit} noValidate>
<p className="text-center font-weight-bold ft-20">本登録</p>
<div className="c-input mt-40-px">
<label htmlFor="firstname" className="c-input__label ft-12"> </label>
{
errors['firstName'] ?
<>
<input type="text" name="firstname" id="firstname" className="w-100 c-input__edit is-invalid c-input__target" value={firstName} onChange={e=>setFirstName(e.target.value)}/>
<span className="l-alert__text--red ft-16 ft-md-14">required.</span>
</>
:<input type="text" name="firstname" id="firstname" className="w-100 c-input__edit c-input__target" value={firstName} onChange={e=>setFirstName(e.target.value)}/>
}
</div>
<div className="c-input mt-40-px">
<label htmlFor="lastname" className="c-input__label"> </label>
{
errors['lastName'] ?
<>
<input type="text" name="lastname" id="lastname" className="w-100 c-input__edit is-invalid c-input__target" value={lastName} onChange={e=>setLastName(e.target.value)}/>
<span className="l-alert__text--red ft-16 ft-md-14">required.</span>
</>
:<input type="text" name="lastname" id="lastname" className="w-100 c-input__edit c-input__target" value={lastName} onChange={e=>setLastName(e.target.value)}/>
}
</div>
<div className="c-input mt-40-px">
<label htmlFor="email" className="c-input__label"> メールアドレス </label>
{
errors['email'] ?
<>
<input type="email" name="email" id="email" className="w-100 c-input__edit is-invalid c-input__target" value={email} onChange={e=>setEmail(e.target.value)}/>
<span className="l-alert__text--red ft-16 ft-md-14">required.</span>
</>
:<input type="email" name="email" id="email" className="w-100 c-input__edit c-input__target" value={email} onChange={e=>setEmail(e.target.value)}/>
}
</div>
<div className="c-input mt-40-px">
<label htmlFor="text" className="c-input__label"> パスワード </label>
{
errors['password'] ?
<>
<input type="password" name="password" id="password" className="w-100 c-input__edit is-invalid c-input__target" value={password} onChange={e=>setPassword(e.target.value)}/>
{
password.length == 0 ?
<span className="l-alert__text--red ft-16 ft-md-14">Required.</span>
:<span className="l-alert__text--red ft-16 ft-md-14">At least 8 letters.</span>
}
</>
:<input type="password" name="password" id="password" className="w-100 c-input__edit c-input__target" value={password} onChange={e=>setPassword(e.target.value)}/>
}
</div>
<div className="c-input mt-40-px">
<label htmlFor="text" className="c-input__label"> 所屈している会社名を記載 </label>
{
errors['agent'] ?
<>
<input type="agent" name="agent" id="agent" className="w-100 c-input__edit is-invalid c-input__target" value={agent} onChange={e=>setAgent(e.target.value)}/>
<span className="l-alert__text--red ft-16 ft-md-14">required.</span>
</>
:<input type="agent" name="agent" id="agent" className="w-100 c-input__edit c-input__target" value={agent} onChange={e=>setAgent(e.target.value)}/>
}
</div>
<div className="mt-4">
<LoadingButton type="submit" fullWidth className="p-3 rounded-20 ft-15 font-weight-bold text-black bg-color-2">本登録</LoadingButton>
</div>
</form>
)
}
if(document.getElementById('sign-up')){
ReactDOM.render(
<Register />,
document.getElementById('sign-up')
)
}