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

154 行
6.4 KiB
JavaScript

import React, { useEffect, useState } from 'react';
import axios from 'axios';
import { Link, useHistory } from 'react-router-dom';
import { CircularProgress } from '@material-ui/core';
import moment from 'moment';
import Notification from '../notification';
import ModalConfirm from '../../component/modal_confirm';
import Alert from '../../component/alert';
const ChildDetail = (props) => {
const history = useHistory();
const [notice, setNotice] = useState(localStorage.getItem('notice'));
const [loaded, setLoaded] = useState(false);
const [show_delete, setShowDelete] = useState(false);
const [submit, setSubmit] = useState(false);
const [child, setChild] = useState(null);
const [_400error, set400Error] = useState('');
const [_success, setSuccess] = useState(props.history.location.state);
const father_id = document.getElementById('father_id').value;
const child_id = props.match.params.child_id;
useEffect(() => {
setLoaded(false);
axios.get('/api/fathers/children/detail/'+child_id, {params:{father_id: father_id}})
.then(response => {
setLoaded(true);
setNotice(response.data.notice);
if(response.data.status_code==200){
setChild(response.data.params);
}
else {
set400Error("失敗しました。");
}
})
},[]);
//-------------------------------------------------------------
useEffect(()=>{
var navbar_list = document.getElementsByClassName("mypage-nav-list__item");
for(let i=0; i<navbar_list.length; i++)
navbar_list[i].classList.remove('nav-active');
document.getElementsByClassName("-child")[0].classList.add('nav-active');
},[]);
//---------------------------------------------------------------
const handleAcceptDelete = () => {
setSubmit(true);
axios.delete(`/api/fathers/relations/deleteRelationChild/${child_id}`)
.then(response => {
setSubmit(false);
setShowDelete(false);
setNotice(response.data.notice);
switch(response.data.status_code){
case 200: {
history.push({ pathname: "/p-account/child",
state: "子の削除に成功しました。" });
break;
}
case 400: set400Error('子の削除に失敗しました。'); 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>
<Notification notice={notice}/>
</div>
<div className="l-content-wrap">
{
!loaded &&
<CircularProgress className="css-loader"/>
}
{
loaded && child &&
<section className="profile-container">
<div className="profile-wrap">
<div className="profile-content">
<div className="profile-thumb">
<img src={child.image} className="profile-image" alt="child-image" />
</div>
<p className="profile-name ft-xs-16">{`${child.first_name} ${child.last_name}`}</p>
<div className="profile-info ft-xs-17">
<div className="profile-info__item">
<a href={`mailto:${child.email}`}>
<p className="profile-info__icon">
<img src="/assets/img/icon/mail.svg" alt="メール"/>
</p>
<p className="txt">{child.email}</p>
</a>
</div>
<div className="profile-info__item">
<a href={`tel:${child.tel}`}>
<p className="profile-info__icon">
<img src="/assets/img/icon/phone.svg" alt="電話" />
</p>
<p className="txt">{child.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">{child.company}</p>
</div>
<div className="profile-info__item">
<p className="profile-info__icon">
<img src="/assets/img/icon/calendar.svg" alt="日付" />
</p>
<p className="txt">{ moment(child.father_relations?.hire_at).format('YYYY/MM/DD') || '' }</p>
</div>
</div>
<div className="p-profile-btn">
<Link to={`/p-account/child/edit/hire-date/${child_id}`}
data-v-ade1d018="kikikanri"
className="btn-default btn-yellow btn-profile btn-r8 btn-h52">
<span>入社日を変更</span>
</Link>
</div>
<div className="p-profile-txtLink">
<a className="btn-default btn-password btn-r8 btn-h30"
onClick={e=>setShowDelete(true)}>
<span className="ft-xs-16">削除する</span>
</a>
</div>
</div>
</div>
<ModalConfirm
show={show_delete}
message={"全てのミーティングの情報から\n消えますがよろしいでしょうか?"}
handleClose={()=>setShowDelete(false)}
handleAccept={handleAcceptDelete}
loading={submit}
/>
</section>
}
</div>
{ _400error && <Alert type="fail" hide={()=>set400Error('')}>{_400error}</Alert> }
{ _success && <Alert type="success" hide={()=>setSuccess('')}>{_success}</Alert> }
</div>
</div>
)
}
export default ChildDetail;