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

179 行
8.8 KiB
React
Raw 通常表示 履歴

2021-11-09 16:53:39 +09:00
import React, { useEffect, useState } from 'react';
import { useHistory, Link } from 'react-router-dom';
import IconButton from "@material-ui/core/IconButton";
import axios from 'axios';
import { CircularProgress } from '@material-ui/core';
import PhotoCameraOutlinedIcon from '@mui/icons-material/PhotoCameraOutlined';
import Alert from '../../component/alert';
2021-11-10 21:51:53 +09:00
import Notification from '../notification';
2021-11-09 16:53:39 +09:00
const Profile = () => {
2021-11-14 21:41:33 +09:00
const [notice, setNotice] = useState(localStorage.getItem('notice'));
2021-11-11 14:33:17 +09:00
2021-11-09 16:53:39 +09:00
const [image, setImage] = useState('');
const [profile, setProfile] = useState({email:'', tel:'', first_name:'', last_name:'', identity:'', company:'', image:''})
const [loaded, setLoaded] = useState(false);
const [_400error, set400Error] = useState('');
const [_422errors, set422Errors] = useState({ image: '' });
const [_success_update_image, setSuccessUpdateImage] = useState('');
2021-11-11 14:33:17 +09:00
2021-11-09 16:53:39 +09:00
useEffect(() => {
setLoaded(false);
let child_id = document.getElementById('child_id').value;
axios.get('/api/children/detail/'+child_id)
.then(response => {
setLoaded(true);
2021-11-14 21:41:33 +09:00
setNotice(response.data.notice);
2021-11-09 16:53:39 +09:00
if(response.data.status_code==200){
setProfile(response.data.params);
setImage(response.data.params.image);
}
})
},[]);
const handleLogout = () => {
axios.get('/c-account/logout')
.then(() => location.href = '/c-account/login')
}
const handleImageChange = (e) => {
e.preventDefault();
set422Errors({image: ''});
let reader = new FileReader();
let _file = e.target.files[0];
reader.readAsDataURL(_file);
reader.onloadend = () => {
axios.put(`/api/children/updateImage/${document.getElementById('child_id').value}`, {image: reader.result})
.then(response => {
2021-11-14 21:41:33 +09:00
setNotice(response.data.notice);
2021-11-09 16:53:39 +09:00
switch(response.data.status_code){
case 200: {
2021-11-12 18:10:44 +09:00
// setImage(reader.result);
2021-11-09 16:53:39 +09:00
setSuccessUpdateImage(response.data.success_messages);
2021-11-12 18:10:44 +09:00
window.location.reload(true);
2021-11-09 16:53:39 +09:00
break;
}
case 400: set400Error(response.data.error_messages); break;
case 422: set422Errors(response.data.error_messages); break;
}
});
};
};
return (
<div className="l-content">
<div className="l-content-w560">
<div className="l-content__ttl">
<div className="l-content__ttl__left">
<h2>プロフィール</h2>
</div>
2021-11-11 14:33:17 +09:00
<Notification notice={notice}/>
2021-11-09 16:53:39 +09:00
</div>
<div className="l-content-wrap">
<section className="profile-container">
{
!loaded &&
<CircularProgress color="secondary" className="css-loader"/>
}
{
loaded &&
<div className="profile-wrap">
<div className="profile-content">
<div>
<input type="file" id="avatar" name="avatar" className="d-none" accept=".png, .jpg, .jpeg" onChange={(e) => handleImageChange(e)}/>
<div className="avatar-wrapper">
<label htmlFor="avatar" className='avatar-label'>
<IconButton color="primary" aria-label="upload picture" component="span" className="bg-yellow shadow-sm w-50-px h-50-px">
<PhotoCameraOutlinedIcon style={{width:'25px', height:'25px', color:'black'}}/>
</IconButton>
</label>
<img src={image} className="avatar-img" alt="avatar-img"/>
</div>
{
_422errors.image &&
<span className="l-alert__text--error ft-16 ft-md-14">
{_422errors.image}
</span>
}
</div>
<p className="profile-name ft-xs-16">{`${profile.first_name} ${profile.last_name}`}</p>
<div className="profile-info ft-xs-17">
<div className="profile-info__item">
<p className="profile-info__icon">
<img src="/assets/img/icon/person-pin.svg" alt="person"/>
</p>
<p className="txt">{profile.identity}</p>
</div>
<div className="profile-info__item">
<a href={`mailto:${profile.email}`}>
<p className="profile-info__icon">
<img src="/assets/img/icon/mail.svg" alt="メール"/>
</p>
<p className="txt">{profile.email}</p>
</a>
</div>
<div className="profile-info__item">
<a href={`tel:${profile.tel}`}>
<p className="profile-info__icon">
<img src="/assets/img/icon/phone.svg" alt="電話" />
</p>
<p className="txt">{profile.tel}</p>
</a>
</div>
<div className="profile-info__item">
<p className="profile-info__icon">
<img src="/assets/img/icon/building.svg" alt="会社名"/>
</p>
<p className="txt">{profile.company ? profile.company: '-'}</p>
</div>
</div>
<div className="p-profile-btn">
<Link to={`/c-account/profile/edit/${document.getElementById('child_id').value}`}
className="btn-default btn-yellow btn-profile btn-r8 btn-h52 h-xs-60-px">
<span className="ft-xs-16">プロフィールを変更する</span>
</Link>
</div>
<div className="p-profile-btn">
<Link to={`/c-account/profile/password-edit/${document.getElementById('child_id').value}`}
className="btn-default btn-yellow btn-password btn-r8 btn-h52 h-xs-60-px">
<span className="ft-xs-16">パスワードを変更する</span>
</Link>
</div>
<div className="p-profile-txtLink">
<a onClick={handleLogout}>
<span className="ft-xs-16">ログアウト</span>
</a>
</div>
<div className="p-profile-txtLink">
<Link to={`/c-account/profile/withdrawal`}>
<span className="ft-xs-16">退会する</span>
</Link>
</div>
</div>
</div>
}
{
_400error && <Alert type="fail" hide={()=>set400Error('')}>{_400error}</Alert>
}
{ _success_update_image &&
<Alert type="success" hide={()=>setSuccessUpdateImage('')}>
{_success_update_image}
</Alert>
}
</section>
</div>
</div>
</div>
)
}
export default Profile;