260 行
9.7 KiB
JavaScript
260 行
9.7 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
|
import { useHistory } from 'react-router-dom'
|
|
import moment from 'moment';
|
|
import axios from 'axios';
|
|
|
|
import { LoadingButton } from '@material-ui/lab';
|
|
import { CircularProgress } from '@material-ui/core';
|
|
|
|
import Button from '@mui/material/Button';
|
|
import Dialog from '@mui/material/Dialog';
|
|
import DialogActions from '@mui/material/DialogActions';
|
|
import DialogContent from '@mui/material/DialogContent';
|
|
import DialogContentText from '@mui/material/DialogContentText';
|
|
import DialogTitle from '@mui/material/DialogTitle';
|
|
import Slide from '@mui/material/Slide';
|
|
|
|
import Alert from '../../component/alert';
|
|
import ModalPdf from '../../component/admin/pdf_modal_admin';
|
|
import ModalMemo from '../../component/admin/modal_memo';
|
|
|
|
|
|
const Transition = React.forwardRef(function Transition(props, ref) {
|
|
return <Slide direction="up" ref={ref} {...props} />;
|
|
});
|
|
|
|
|
|
|
|
const MeetingDetail = (props) => {
|
|
|
|
const history = useHistory();
|
|
const [open, setOpen] = useState(false);
|
|
const [loaded, setLoaded] = useState(false);
|
|
const [submit, setSubmit] = useState(false);
|
|
const [meeting, setMeeting] = useState(null);
|
|
|
|
const [_400error, set400Error] = useState('');
|
|
const [_success, setSuccess] = useState('');
|
|
|
|
const [showPdf, setShowPdf] = useState(false);
|
|
const [showMemo, setShowMemo] = useState(false);
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setLoaded(false);
|
|
|
|
axios.get(`/api/admin/meetings/detail/${props.match.params?.meeting_id}`, {params: { father_id: 1 }})
|
|
.then((response) => {
|
|
|
|
setLoaded(true);
|
|
if(response.data.status_code==200){
|
|
|
|
var list = response.data.params[0];
|
|
var total=0, num=0;
|
|
if(list.approval){
|
|
for(var i in list.approval)
|
|
{
|
|
if(list.approval[i].approval_at) num ++;
|
|
total ++;
|
|
}
|
|
}
|
|
setMeeting({...list, denominator:total, numerator:num});
|
|
|
|
} else if(response.data.status_code==400){
|
|
//TODO
|
|
}
|
|
});
|
|
}, []);
|
|
|
|
async function openModal() {
|
|
setOpen(true);
|
|
};
|
|
|
|
async function closeModal() {
|
|
setOpen(false);
|
|
};
|
|
|
|
async function handleAccept() {
|
|
try {
|
|
setSubmit(true);
|
|
axios.delete(`/api/admin/meetings/delete/${props.match.params?.meeting_id}`)
|
|
.then(response => {
|
|
closeModal();
|
|
setSubmit(false);
|
|
if(response.data.status_code == 200){
|
|
setSuccess('削除に成功しました!');
|
|
} else {
|
|
set400Error("削除に失敗しました。");
|
|
}
|
|
});
|
|
} catch (error) {
|
|
console.log('error', error);
|
|
}
|
|
};
|
|
|
|
|
|
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">
|
|
<div className="p-article">
|
|
<div className="p-article-wrap position-relative" style={{ minHeight:'500px'}}>
|
|
{
|
|
!loaded &&
|
|
<CircularProgress color="secondary" style={{top:'150px', left:'calc(50% - 22px)', color:'green', position:'absolute'}}/>
|
|
}
|
|
{
|
|
loaded &&
|
|
(
|
|
meeting ?
|
|
<article className="p-article__body">
|
|
<div className="p-article__content">
|
|
<div className="meeting-member">
|
|
<div className="meeting-member-wrap">
|
|
<div data-url="login.html" className="meeting-member-link">
|
|
<ul className="meeting-member-count">
|
|
<li className="numerator">{meeting.numerator}</li>
|
|
<li className="denominator">{meeting.denominator}</li>
|
|
</ul>
|
|
|
|
<ul className="meeting-member-list" role="list">
|
|
{
|
|
meeting.approval?.map((x, k)=>
|
|
<li className="meeting-member__item" role="listitem" key={k}>
|
|
<div className="avatar">
|
|
<img alt="name" className="avatar-img" src={x.child.image} />
|
|
</div>
|
|
</li>
|
|
)
|
|
}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h3 className="meeting-ttl">{ meeting.title }</h3>
|
|
<time dateTime="2021-07-30" className="meeting-time">
|
|
<span className="meeting-date">{ moment(meeting.updated_at).format('YYYY/MM/DD') || '' }</span>
|
|
</time>
|
|
<ul className="p-article-btn-list">
|
|
<li className="p-article__pdf__btn">
|
|
<a
|
|
onClick={e => {
|
|
e.preventDefault();
|
|
history.push({
|
|
pathname: `/admin/meeting/edit/${props.match.params?.meeting_id}`,
|
|
state: {}
|
|
});
|
|
}}
|
|
className="btn-default btn-yellow btn-pdf btn-r8 btn-h48">
|
|
編集
|
|
</a>
|
|
</li>
|
|
<li className="p-article__pdf__btn mr-0">
|
|
<a onClick={openModal} className="btn-default btn-yellow btn-pdf btn-r8 btn-h48">削除</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<div className="p-article__context">
|
|
|
|
<div className="p-file-list">
|
|
<div className="p-file-for">
|
|
{
|
|
meeting.meeting_image[0] &&
|
|
<figure><img src={meeting.meeting_image[0].image} alt={meeting.meeting_image[0].image} /></figure>
|
|
}
|
|
</div>
|
|
<div className="p-file-nav">
|
|
{
|
|
meeting.meeting_image?.map((x, k)=>
|
|
<figure key={k}><img src={x.image} alt={x.image} /></figure>
|
|
)
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="p-article__pdf">
|
|
<div className="p-article__pdf__btn">
|
|
<a data-v-ade1d018="" className="btn-default btn-yellow btn-pdf btn-r8 btn-h52" onClick={e=>setShowPdf(true)}>
|
|
<span>PDFを確認する</span>
|
|
</a>
|
|
</div>
|
|
<button type="button"
|
|
aria-label="お気に入り" data-tooltip="お気に入り"
|
|
aria-pressed="false"
|
|
className="icon a-icon text-icon icon-text icon-star-wrap a-icon-size_medium"
|
|
style={{border:'1px solid #f0de00'}}
|
|
onClick = {()=>setShowMemo(true)} />
|
|
</div>
|
|
|
|
<p className="p-article__txt">{ meeting.text }</p>
|
|
</div>
|
|
</div>
|
|
<ModalMemo
|
|
show={showMemo}
|
|
title={"メモ"}
|
|
content={meeting?.memo}
|
|
handleClose={()=>setShowMemo(false)}
|
|
/>
|
|
<ModalPdf
|
|
show={showPdf}
|
|
pdfPath={meeting.pdf ?? '/pdf/test.pdf'}
|
|
handleClose={()=>setShowPdf(false)}
|
|
/>
|
|
</article>
|
|
: <p className="text-center pt-5">データが存在していません。</p>
|
|
)
|
|
}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Dialog
|
|
open={open}
|
|
TransitionComponent={Transition}
|
|
keepMounted
|
|
aria-describedby="alert-dialog-slide-description"
|
|
>
|
|
<DialogContent style={{width:'290px', padding:'25px 10px 10px 10px'}}>
|
|
<DialogContentText id="alert-dialog-slide-description" style={{fontSize:'20px', textAlign:'center'}}>
|
|
本当に削除しても<br/>よろしいでしょうか?
|
|
</DialogContentText>
|
|
</DialogContent>
|
|
<DialogActions style={{justifyContent:'space-evenly', padding:'0 20px 20px 20px'}}>
|
|
<Button
|
|
onClick={closeModal}
|
|
size="large"
|
|
style={{fontSize:'20px'}}>いいえ</Button>
|
|
|
|
<LoadingButton
|
|
variant="text"
|
|
onClick={handleAccept}
|
|
loading={submit}
|
|
size="large"
|
|
style={{fontSize:'20px'}}>はい</LoadingButton>
|
|
</DialogActions>
|
|
</Dialog>
|
|
{
|
|
_400error && <Alert type="fail" hide={()=>set400Error('')}>{_400error}</Alert>
|
|
}
|
|
{
|
|
_success &&
|
|
<Alert type="success"
|
|
hide={()=>
|
|
history.push({
|
|
pathname: "/admin/meeting",
|
|
state: {}
|
|
})}>{_success}</Alert>
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default MeetingDetail; |