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

205 行
9.7 KiB
React
Raw 通常表示 履歴

2021-10-10 18:24:19 +09:00
import React, { useEffect, useState } from 'react';
import { useHistory } from 'react-router-dom';
import axios from 'axios';
import { LoadingButton } from '@material-ui/lab';
2021-10-24 00:13:32 +09:00
import { CircularProgress } from '@material-ui/core';
2021-10-10 18:24:19 +09:00
import Alert from '../../component/alert';
2021-10-24 00:13:32 +09:00
const ChildEdit = (props) => {
2021-10-10 18:24:19 +09:00
const history = useHistory();
const [first_name, setFirstName] = useState('');
const [last_name, setLastName] = useState('');
2021-10-29 21:49:12 +09:00
const [identity, setIdentity] = useState('');
2021-10-10 18:24:19 +09:00
const [email, setEmail] = useState('');
2021-10-24 00:13:32 +09:00
const [tel, setTelephone] = useState('');
2021-10-10 18:24:19 +09:00
const [company, setCompany] = useState('');
2021-10-24 00:13:32 +09:00
const [_422errors, set422Errors] = useState({
2021-10-10 18:24:19 +09:00
first_name:'',
last_name:'',
2021-10-29 21:49:12 +09:00
identity:'',
2021-10-10 18:24:19 +09:00
email:'',
2021-10-24 00:13:32 +09:00
tel:'',
2021-10-10 18:24:19 +09:00
company:''
})
2021-10-24 00:13:32 +09:00
const [_400error, set400Error] = useState('');
const [_success, setSuccess] = useState('');
const [submit, setSubmit] = useState(false);
const [loaded, setLoaded] = useState(false);
2021-11-15 17:50:40 +09:00
useEffect(() => {
setLoaded(false);
axios.get(`/api/admin/children/detail/${props.match.params?.child_id}`)
.then(response => {
setLoaded(true);
if(response.data.status_code==200)
{
var child = response.data.params;
if(child){
setFirstName(child.first_name);
setLastName(child.last_name);
setIdentity(child.identity);
setEmail(child.email);
setTelephone(child.tel);
setCompany(child.company);
2021-10-24 00:13:32 +09:00
}
2021-11-15 17:50:40 +09:00
}
})
},[]);
2021-10-10 18:24:19 +09:00
const handleSubmit = (e) => {
e.preventDefault();
2021-10-24 00:13:32 +09:00
set422Errors({
first_name:'',
last_name:'',
2021-10-29 21:49:12 +09:00
identity:'',
2021-10-24 00:13:32 +09:00
email:'',
tel:'',
company:''
});
setSubmit(true);
var request = {
first_name: first_name,
last_name: last_name,
2021-10-29 21:49:12 +09:00
identity: identity,
2021-10-24 00:13:32 +09:00
email: email,
tel: tel,
company: company
};
axios.put(`/api/admin/children/updateProfile/${props.match.params?.child_id}`, request)
.then(response => {
setSubmit(false);
switch(response.data.status_code){
case 200: setSuccess(response.data.success_messages); break;
case 400: set400Error(response.data.error_messages); break;
case 422: set422Errors(response.data.error_messages); break;
}
})
2021-10-10 18:24:19 +09:00
}
return (
<div className="l-content">
<div className="l-content-w560">
<div className="l-content__ttl">
<div className="l-content__ttl__left">
<h2>プロフィール編集</h2>
</div>
</div>
<div className="l-content-wrap">
2021-10-24 00:13:32 +09:00
<section className="profile-container position-relative">
{
!loaded &&
<CircularProgress color="secondary" style={{top:'30%', left:'calc(50% - 22px)', color:'green', position:'absolute', zIndex:'10'}}/>
}
2021-10-10 18:24:19 +09:00
<div className="profile-wrap">
<div className="mx-5">
<form onSubmit={handleSubmit} noValidate>
<div className="edit-set">
2021-10-29 21:49:12 +09:00
<label htmlFor="identity" className="control-label ft-12"> ID </label>
<input type="text" name="identity" id="identity" className={`input-default input-nameSei input-h60 ${ _422errors.identity && "is-invalid c-input__target" }`} value={identity} onChange={e=>setIdentity(e.target.value)}/>
2021-10-10 18:24:19 +09:00
{
2021-10-29 21:49:12 +09:00
_422errors.identity &&
2021-10-10 18:24:19 +09:00
<span className="l-alert__text--error ft-16 ft-md-14">
2021-10-29 21:49:12 +09:00
{ _422errors.identity }
2021-10-10 18:24:19 +09:00
</span>
}
</div>
<div className="edit-set">
<label htmlFor="first_name" className="control-label ft-12"> </label>
2021-10-24 00:13:32 +09:00
<input type="text" name="first_name" id="first_name" className={`input-default input-nameSei input-h60 ${ _422errors.first_name && "is-invalid c-input__target" }`} value={first_name} onChange={e=>setFirstName(e.target.value)}/>
2021-10-10 18:24:19 +09:00
{
2021-10-24 00:13:32 +09:00
_422errors.first_name &&
2021-10-10 18:24:19 +09:00
<span className="l-alert__text--error ft-16 ft-md-14">
2021-10-24 00:13:32 +09:00
{ _422errors.first_name }
2021-10-10 18:24:19 +09:00
</span>
}
</div>
<div className="edit-set">
<label htmlFor="last_name" className="control-label ft-12"> </label>
2021-10-24 00:13:32 +09:00
<input type="text" name="last_name" id="last_name" className={`input-default input-nameSei input-h60 ${ _422errors.last_name && "is-invalid c-input__target" }`} value={last_name} onChange={e=>setLastName(e.target.value)}/>
2021-10-10 18:24:19 +09:00
{
2021-10-24 00:13:32 +09:00
_422errors.last_name &&
2021-10-10 18:24:19 +09:00
<span className="l-alert__text--error ft-16 ft-md-14">
2021-10-24 00:13:32 +09:00
{ _422errors.last_name }
2021-10-10 18:24:19 +09:00
</span>
}
</div>
<div className="edit-set">
<label htmlFor="email" className="control-label ft-12"> メールアドレス </label>
2021-10-24 00:13:32 +09:00
<input type="email" name="email" id="email" className = {`input-default input-nameSei input-h60 ${ _422errors.email && "is-invalid c-input__target" }`} value={email} onChange={e=>setEmail(e.target.value)}/>
2021-10-10 18:24:19 +09:00
{
2021-10-24 00:13:32 +09:00
_422errors.email &&
2021-10-10 18:24:19 +09:00
<span className="l-alert__text--error ft-16 ft-md-14">
2021-10-24 00:13:32 +09:00
{ _422errors.email }
2021-10-10 18:24:19 +09:00
</span>
}
</div>
<div className="edit-set">
2021-10-24 00:13:32 +09:00
<label htmlFor="tel" className="control-label ft-12"> 電話番号 </label>
<input type="tel" name="tel" id="tel" className = {`input-default input-nameSei input-h60 ${ _422errors.tel && "is-invalid c-input__target" }`} value={tel} onChange={e=>setTelephone(e.target.value)}/>
2021-10-10 18:24:19 +09:00
{
2021-10-24 00:13:32 +09:00
_422errors.tel &&
2021-10-10 18:24:19 +09:00
<span className="l-alert__text--error ft-16 ft-md-14">
2021-10-24 00:13:32 +09:00
{ _422errors.tel }
2021-10-10 18:24:19 +09:00
</span>
}
</div>
<div className="edit-set">
<label htmlFor="company" className="control-label ft-12"> 所屈している会社名を記載 </label>
2021-10-24 00:13:32 +09:00
<input type="text" name="company" id="company" className = {`input-default input-nameSei input-h60 ${ _422errors.company && "is-invalid c-input__target" }`} value={company} onChange={e=>setCompany(e.target.value)}/>
2021-10-10 18:24:19 +09:00
{
2021-10-24 00:13:32 +09:00
_422errors.company &&
2021-10-10 18:24:19 +09:00
<span className="l-alert__text--error ft-16 ft-md-14">
2021-10-24 00:13:32 +09:00
{ _422errors.company }
2021-10-10 18:24:19 +09:00
</span>
}
</div>
<div className="mt-5">
2021-10-24 00:13:32 +09:00
<LoadingButton type="submit" fullWidth
loading={submit}
2021-10-26 10:07:57 +09:00
className="btn-edit btn-default btn-h60 bg-yellow rounded-15">
<span className={`ft-18 font-weight-bold ${!submit && 'text-black'}`}>プロフィールを更新</span>
2021-10-10 18:24:19 +09:00
</LoadingButton>
</div>
{
2021-10-24 00:13:32 +09:00
_400error && <Alert type="fail" hide={()=>set400Error('')}>{_400error}</Alert>
}
2021-10-10 18:24:19 +09:00
{
2021-10-24 00:13:32 +09:00
_success &&
<Alert type="success"
hide={()=>
history.push({
pathname: `/admin/child/detail/${props.match.params?.child_id}`,
state: {}
})}>{_success}</Alert>
2021-10-10 18:24:19 +09:00
}
</form>
</div>
</div>
</section>
</div>
</div>
</div>
)
}
export default ChildEdit;