guild_front/src/components/Modal/Tracker/TicketFullScreen/TicketFullScreen.jsx

458 lines
18 KiB
React
Raw Normal View History

2023-05-04 18:38:56 +03:00
import React, { useEffect, useState } from "react";
2023-05-30 10:10:34 +03:00
2023-06-12 23:30:18 +03:00
import { ProfileHeader } from "../../../ProfileHeader/ProfileHeader";
import { ProfileBreadcrumbs } from "../../../ProfileBreadcrumbs/ProfileBreadcrumbs";
import { Footer } from "@components/Common/Footer/Footer";
import { Link, useParams, useNavigate } from "react-router-dom";
import TrackerModal from "../../../Modal/TrackerModal/TrackerModal";
import TrackerTaskComment from "../../../TrackerTaskComment/TrackerTaskComment";
import { Navigation } from "../../../Navigation/Navigation";
import {Loader} from "@components/Common/Loader/Loader";
import {useDispatch, useSelector} from "react-redux";
2023-05-23 23:02:39 +03:00
import {
deletePersonOnProject,
modalToggle,
setProjectBoardFetch,
setToggleTab,
2023-06-12 23:30:18 +03:00
getProjectBoard,
getBoarderLoader,
} from "../../../../redux/projectsTrackerSlice";
import { apiRequest } from "../../../../api/request";
2023-05-31 08:36:15 +03:00
2023-06-12 23:30:18 +03:00
import project from "../../../../assets/icons/trackerProject.svg";
import watch from "../../../../assets/icons/watch.svg";
import file from "../../../../assets/icons/fileModal.svg";
import send from "../../../../assets/icons/send.svg";
import arrow2 from "../../../../assets/icons/arrows/arrowStart.png";
import plus from "../../../../assets/icons/plus.svg";
import tasks from "../../../../assets/icons/trackerTasks.svg";
import archive from "../../../../assets/icons/archive.svg";
import arrow from "../../../../assets/icons/arrows/arrowCalendar.png";
import link from "../../../../assets/icons/link.svg";
import archive2 from "../../../../assets/icons/archive.svg";
import del from "../../../../assets/icons/delete.svg";
import edit from "../../../../assets/icons/edit.svg";
import close from "../../../../assets/icons/close.png";
2023-04-20 20:10:08 +03:00
import "./ticketFullScreen.scss";
2023-06-12 23:30:18 +03:00
import {getCorrectRequestDate, urlForLocal} from "../../../../utils/helper";
export const TicketFullScreen = ({}) => {
2023-04-20 20:10:08 +03:00
const [modalAddWorker, setModalAddWorker] = useState(false);
2023-05-04 18:38:56 +03:00
const ticketId = useParams();
2023-05-02 18:51:19 +03:00
const dispatch = useDispatch();
2023-05-03 20:01:23 +03:00
const navigate = useNavigate();
2023-05-23 23:02:39 +03:00
const projectBoard = useSelector(getProjectBoard);
const boardLoader = useSelector(getBoarderLoader);
2023-05-04 18:38:56 +03:00
const [taskInfo, setTaskInfo] = useState({});
2023-05-16 00:24:52 +03:00
const [editOpen, setEditOpen] = useState(false);
2023-05-17 23:18:46 +03:00
const [inputsValue, setInputsValue] = useState({});
const [loader, setLoader] = useState(true);
const [comments, setComments] = useState([]);
2023-06-12 23:30:18 +03:00
const [personListOpen, setPersonListOpen] = useState(false)
const [timerStart, setTimerStart] = useState(false)
const [timerInfo, setTimerInfo] = useState({})
2023-04-20 20:10:08 +03:00
2023-05-03 20:01:23 +03:00
useEffect(() => {
apiRequest(`/task/get-task?task_id=${ticketId.id}`).then((taskInfo) => {
2023-05-04 18:38:56 +03:00
setTaskInfo(taskInfo);
2023-06-12 23:30:18 +03:00
setInputsValue({title: taskInfo.title, description: taskInfo.description, comment: ''})
apiRequest(`/comment/get-by-entity?entity_type=2&entity_id=${taskInfo.id}`).then((res) => {
const comments = res.reduce((acc, cur) => {
if (!cur.parent_id) {
acc.push({...cur, subComments: []})
} else {
acc.forEach((item) => {
if (item.id === cur.parent_id) item.subComments.push(cur)
})
}
return acc
}, [])
setComments(comments)
})
taskInfo.timers.forEach((time) => {
if (!time.stopped_at) {
setTimerStart(true)
setTimerInfo(time)
}
})
2023-05-23 23:02:39 +03:00
dispatch(setProjectBoardFetch(taskInfo.project_id));
2023-06-12 23:30:18 +03:00
setLoader(boardLoader)
2023-05-04 18:38:56 +03:00
});
}, []);
2023-05-03 20:01:23 +03:00
function deleteTask() {
apiRequest("/task/update-task", {
method: "PUT",
data: {
task_id: ticketId.id,
status: 0,
},
2023-05-31 11:24:46 +03:00
}).then(() => {
2023-05-04 18:38:56 +03:00
navigate(`/tracker/project/${taskInfo.project_id}`);
2023-05-03 20:01:23 +03:00
});
}
2023-04-20 20:10:08 +03:00
2023-05-16 00:24:52 +03:00
function editTask() {
apiRequest("/task/update-task", {
method: "PUT",
data: {
task_id: taskInfo.id,
title: inputsValue.title,
2023-06-12 23:30:18 +03:00
description: inputsValue.description
2023-05-16 00:24:52 +03:00
},
2023-06-12 23:30:18 +03:00
}).then(() => {
});
2023-05-16 00:24:52 +03:00
}
2023-05-23 23:02:39 +03:00
function createComment() {
2023-05-17 23:18:46 +03:00
apiRequest("/comment/create", {
method: "POST",
data: {
text: inputsValue.comment,
entity_type: 2,
2023-06-12 23:30:18 +03:00
entity_id: taskInfo.id
}
2023-05-17 23:18:46 +03:00
}).then((res) => {
2023-06-12 23:30:18 +03:00
let newComment = res
newComment.created_at = new Date()
newComment.subComments = []
setInputsValue((prevValue) => ({...prevValue, comment: ''}))
setComments((prevValue) => ([...prevValue, newComment]))
})
2023-05-17 23:18:46 +03:00
}
2023-06-12 23:30:18 +03:00
function startTaskTimer() {
apiRequest("/timer/create", {
method: "POST",
2023-05-23 23:02:39 +03:00
data: {
2023-06-12 23:30:18 +03:00
entity_type: 2,
entity_id: taskInfo.id,
created_at: getCorrectRequestDate(new Date())
}
}).then((res) => {
setTimerStart(true)
setTimerInfo(res)
})
2023-05-23 23:02:39 +03:00
}
2023-06-12 23:30:18 +03:00
function stopTaskTimer() {
apiRequest("/timer/update", {
2023-05-23 23:02:39 +03:00
method: "PUT",
data: {
2023-06-12 23:30:18 +03:00
timer_id: timerInfo.id,
stopped_at: getCorrectRequestDate(new Date())
}
}).then(() => setTimerStart(false))
2023-05-23 23:02:39 +03:00
}
function deletePerson(userId) {
apiRequest("/project/del-user", {
method: "DELETE",
data: {
project_id: projectBoard.id,
2023-06-12 23:30:18 +03:00
user_id: userId
2023-05-23 23:02:39 +03:00
},
2023-05-31 11:24:46 +03:00
}).then(() => {
2023-06-12 23:30:18 +03:00
dispatch(deletePersonOnProject(userId))
2023-05-23 23:02:39 +03:00
});
}
2023-06-12 23:30:18 +03:00
function commentDelete(comment) {
setComments((prevValue) => prevValue.filter((item) => item.id !== comment.id))
if (comment.subComments.length) {
comment.subComments.forEach((subComment) => {
apiRequest("/comment/update", {
method: "PUT",
data: {
comment_id: subComment.id,
status: 0
}
}).then(() => {
})
})
}
}
function addSubComment(commentId, subComment) {
const addSubComment = comments
addSubComment.forEach((comment) => {
if (comment.id === commentId) {
comment.subComments.push(subComment)
}
})
setComments(addSubComment)
}
function subCommentDelete(subComment) {
const deleteSubComment = comments
deleteSubComment.forEach((comment, index) => {
if (comment.id === subComment.parent_id) {
deleteSubComment[index].subComments = comment.subComments.filter((item) => item.id !== subComment.id)
}
})
setComments([...deleteSubComment])
}
2023-04-20 20:10:08 +03:00
const toggleTabs = (index) => {
2023-05-02 18:51:19 +03:00
dispatch(setToggleTab(index));
2023-04-20 20:10:08 +03:00
};
return (
2023-06-12 23:30:18 +03:00
<section className="ticket-full-screen">
<ProfileHeader />
<Navigation />
<div className="container">
<div className="tracker__content">
<ProfileBreadcrumbs
links={[
{ name: "Главная", link: "/profile" },
{ name: "Трекер", link: "/profile/tracker" },
]}
/>
<h2 className="tracker__title">Управление проектами с трекером</h2>
</div>
2023-04-20 20:10:08 +03:00
</div>
2023-06-12 23:30:18 +03:00
<div className="tracker__tabs">
<div className="tracker__tabs__head">
<Link
to="/profile/tracker"
className="tab active-tab"
onClick={() => toggleTabs(1)}
>
<img src={project} alt="img" />
<p>Проекты </p>
</Link>
<Link
to="/profile/tracker"
className="tab"
onClick={() => toggleTabs(2)}
>
<img src={tasks} alt="img" />
<p>Все мои задачи</p>
</Link>
<Link
to="/profile/tracker"
className="tab"
onClick={() => toggleTabs(3)}
>
<img src={archive} alt="img" />
<p>Архив</p>
</Link>
</div>
{loader ? <Loader /> :
<>
<div className="tracker__tabs__content content-tabs">
<div className="tasks__head">
<div className="tasks__head__wrapper">
<h4>Проект : {projectBoard.name}</h4>
2023-04-20 20:10:08 +03:00
2023-06-12 23:30:18 +03:00
<TrackerModal
active={modalAddWorker}
setActive={setModalAddWorker}
></TrackerModal>
2023-04-20 20:10:08 +03:00
2023-06-12 23:30:18 +03:00
<div className="tasks__head__persons">
{/*<img src={avatarTest} alt="avatar" />*/}
{/*<img src={avatarTest} alt="avatar" />*/}
<span className="countPersons">{projectBoard.projectUsers?.length}</span>
<span
className="addPerson"
onClick={() => {
setPersonListOpen(true)
}}
>
+
</span>
<p>добавить участника</p>
{personListOpen &&
<div className='persons__list'>
<img className='persons__list__close' src={close} alt='close' onClick={() => setPersonListOpen(false)} />
<div className='persons__list__count'><span>{projectBoard.projectUsers?.length}</span>участник</div>
<div className='persons__list__info'>В проекте - <span>{projectBoard.name}</span></div>
<div className='persons__list__items'>
{projectBoard.projectUsers?.map((person) => {
return <div className='persons__list__item' key={person.user_id}>
<img className='avatar' src={urlForLocal(person.user.avatar)} alt='avatar' />
<span>{person.user.fio}</span>
<img className='delete' src={close} alt='delete' onClick={() => deletePerson(person.user_id)}/>
</div>
})
}
</div>
<div className='persons__list__add'
onClick={() => {
dispatch(modalToggle("addWorker"));
setModalAddWorker(true);
setPersonListOpen(false)
}}
2023-05-24 19:23:24 +03:00
>
2023-06-12 23:30:18 +03:00
<span className='addPerson'>+</span>
<p>Добавить участников</p>
2023-05-24 19:23:24 +03:00
</div>
</div>
2023-06-12 23:30:18 +03:00
}
</div>
<Link to={`/profile/tracker`} className="link">
<div className="tasks__head__back">
<p>Вернуться на проекты</p>
<img src={arrow} alt="arrow" />
2023-05-24 19:23:24 +03:00
</div>
2023-06-12 23:30:18 +03:00
</Link>
</div>
2023-05-24 19:23:24 +03:00
</div>
</div>
2023-06-12 23:30:18 +03:00
<div className="modal-tiket__content ticket">
<div className="content ticket-whith">
<div className="content__task">
<span>Задача</span>
{editOpen ? <input value={inputsValue.title} onChange={(e) => {
setInputsValue((prevValue) => ({...prevValue, title: e.target.value}))
}} /> :<h5>{inputsValue.title}</h5>}
<div className="content__description">
{editOpen ? <input value={inputsValue.description} onChange={(e) => {
setInputsValue((prevValue) => ({...prevValue, description: e.target.value}))
}}/> :<p>{inputsValue.description}</p>}
{/*<img src={task} className="image-task"></img>*/}
</div>
<div className="content__communication">
<p className="tasks">
<button
onClick={() => {
dispatch(modalToggle("addSubtask"));
setModalAddWorker(true);
}}
>
<img src={plus} alt='plus'></img>
Добавить под задачу
</button>
</p>
<p className="file">
<button>
<img src={file} alt='file'></img>
Загрузить файл
</button>
<span>{0}</span>
Файлов
</p>
</div>
<div className="content__input">
<input placeholder="Оставить комментарий" value={inputsValue.comment} onChange={(e) => {
setInputsValue((prevValue) => ({...prevValue, comment: e.target.value}))
}} />
<img src={send} onClick={createComment} alt='send'></img>
</div>
<div className='comments__list'>
{comments.map((comment) => {
return <TrackerTaskComment
key={comment.id}
taskId={taskInfo.id}
comment={comment}
commentDelete={commentDelete}
addSubComment={addSubComment}
subCommentDelete={subCommentDelete}
/>
})
2023-04-20 20:10:08 +03:00
2023-06-12 23:30:18 +03:00
}
</div>
</div>
2023-05-24 19:23:24 +03:00
</div>
2023-06-12 23:30:18 +03:00
<div className="workers">
<div className="workers_box">
<p className="workers__creator">
Создатель : <span>{taskInfo.user?.fio}</span>
</p>
<div>
{Boolean(taskInfo.taskUsers?.length) &&
taskInfo.taskUsers.map((worker, index) => {
return (
<div className="worker" key={index}>
<img src={worker.avatar} alt='worket'></img>
<p>{worker.name}</p>
</div>
);
})}
</div>
2023-04-20 20:10:08 +03:00
2023-06-12 23:30:18 +03:00
<div className="add-worker moreItems">
<button
onClick={() => {
dispatch(modalToggle("addWorker"));
setModalAddWorker(true);
}}
>
+
</button>
<span>Добавить исполнителя</span>
</div>
<div className="add-worker moreItems">
<button
onClick={() => {
dispatch(modalToggle("addWorker"));
setModalAddWorker(true);
}}
>
+
</button>
<span>Добавить участников</span>
</div>
</div>
2023-04-20 20:10:08 +03:00
2023-06-12 23:30:18 +03:00
<div className="workers_box-middle">
<div className="time">
<img src={watch} alt='watch'></img>
<span>Длительность : </span>
<p>{"0:00:00"}</p>
</div>
2023-04-20 20:10:08 +03:00
2023-06-12 23:30:18 +03:00
{timerStart ?
<button className="stop" onClick={() => stopTaskTimer()}>
Остановить
</button>
:
<button className={taskInfo.executor_id === Number(localStorage.getItem('id')) ? 'start' : 'start disable'} onClick={() => startTaskTimer()}>
Начать делать <img src={arrow2} alt='arrow'></img>
</button>
2023-05-24 19:23:24 +03:00
}
2023-06-12 23:30:18 +03:00
</div>
<div className="workers_box-bottom">
<div className={editOpen ? 'edit' : ''} onClick={() => {
if(editOpen) {
setEditOpen(!editOpen)
editTask()
} else {
setEditOpen(!editOpen)
}
}}>
<img src={edit} alt='edit'></img>
<p>{editOpen ? 'сохранить' : 'редактировать'}</p>
</div>
<div>
<img src={link} alt='link'></img>
<p>ссылка на проект</p>
</div>
<div>
<img src={archive2} alt='arch'></img>
<p>в архив</p>
</div>
<div onClick={deleteTask}>
<img src={del} alt='delete'></img>
<p>удалить</p>
</div>
</div>
2023-05-24 19:23:24 +03:00
</div>
</div>
2023-06-12 23:30:18 +03:00
</>
}
</div>
<Footer />
</section>
2023-04-20 20:10:08 +03:00
);
};
export default TicketFullScreen;