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

532 lines
18 KiB
React
Raw Normal View History

2023-05-04 18:38:56 +03:00
import React, { useEffect, useState } from "react";
2023-06-22 14:53:35 +03:00
import { useDispatch, useSelector } from "react-redux";
import { Link, useNavigate, useParams } from "react-router-dom";
2023-05-30 10:10:34 +03:00
2023-05-23 23:02:39 +03:00
import {
deletePersonOnProject,
2023-06-22 14:53:35 +03:00
getBoarderLoader,
getProjectBoard,
2023-05-23 23:02:39 +03:00
modalToggle,
setProjectBoardFetch,
setToggleTab,
2023-06-22 14:53:35 +03:00
} from "@redux/projectsTrackerSlice";
2023-05-31 08:36:15 +03:00
2023-06-22 14:53:35 +03:00
import { getCorrectRequestDate, urlForLocal } from "@utils/helper";
2023-04-20 20:10:08 +03:00
2023-06-22 14:53:35 +03:00
import { apiRequest } from "@api/request";
import BaseButton from "@components/Common/BaseButton/BaseButton";
import { Footer } from "@components/Common/Footer/Footer";
import { Loader } from "@components/Common/Loader/Loader";
import TrackerModal from "@components/Modal/TrackerModal/TrackerModal";
import { Navigation } from "@components/Navigation/Navigation";
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
import TrackerTaskComment from "@components/TrackerTaskComment/TrackerTaskComment";
2023-04-20 20:10:08 +03:00
2023-06-22 14:53:35 +03:00
import archive from "assets/icons/archive.svg";
import archive2 from "assets/icons/archive.svg";
import arrow from "assets/icons/arrows/arrowCalendar.png";
import arrow2 from "assets/icons/arrows/arrowStart.png";
import close from "assets/icons/close.png";
import del from "assets/icons/delete.svg";
import edit from "assets/icons/edit.svg";
import file from "assets/icons/fileModal.svg";
import link from "assets/icons/link.svg";
import plus from "assets/icons/plus.svg";
import send from "assets/icons/send.svg";
import project from "assets/icons/trackerProject.svg";
import tasks from "assets/icons/trackerTasks.svg";
import watch from "assets/icons/watch.svg";
2023-06-12 23:30:18 +03:00
2023-06-22 14:53:35 +03:00
import "./ticketFullScreen.scss";
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-22 14:53:35 +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-22 14:53:35 +03:00
setInputsValue({
title: taskInfo.title,
description: taskInfo.description,
comment: "",
});
apiRequest(
`/comment/get-by-entity?entity_type=2&entity_id=${taskInfo.id}`
).then((res) => {
2023-06-12 23:30:18 +03:00
const comments = res.reduce((acc, cur) => {
if (!cur.parent_id) {
2023-06-22 14:53:35 +03:00
acc.push({ ...cur, subComments: [] });
2023-06-12 23:30:18 +03:00
} else {
acc.forEach((item) => {
2023-06-22 14:53:35 +03:00
if (item.id === cur.parent_id) item.subComments.push(cur);
});
2023-06-12 23:30:18 +03:00
}
2023-06-22 14:53:35 +03:00
return acc;
}, []);
setComments(comments);
});
2023-06-12 23:30:18 +03:00
taskInfo.timers.forEach((time) => {
if (!time.stopped_at) {
2023-06-22 14:53:35 +03:00
setTimerStart(true);
setTimerInfo(time);
2023-06-12 23:30:18 +03:00
}
2023-06-22 14:53:35 +03:00
});
2023-05-23 23:02:39 +03:00
dispatch(setProjectBoardFetch(taskInfo.project_id));
2023-06-22 14:53:35 +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-22 14:53:35 +03:00
description: inputsValue.description,
2023-05-16 00:24:52 +03:00
},
2023-06-22 14:53:35 +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-22 14:53:35 +03:00
entity_id: taskInfo.id,
},
2023-05-17 23:18:46 +03:00
}).then((res) => {
2023-06-22 14:53:35 +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,
2023-06-22 14:53:35 +03:00
created_at: getCorrectRequestDate(new Date()),
},
2023-06-12 23:30:18 +03:00
}).then((res) => {
2023-06-22 14:53:35 +03:00
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,
2023-06-22 14:53:35 +03:00
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-22 14:53:35 +03:00
user_id: userId,
2023-05-23 23:02:39 +03:00
},
2023-05-31 11:24:46 +03:00
}).then(() => {
2023-06-22 14:53:35 +03:00
dispatch(deletePersonOnProject(userId));
2023-05-23 23:02:39 +03:00
});
}
2023-06-12 23:30:18 +03:00
function commentDelete(comment) {
2023-06-22 14:53:35 +03:00
setComments((prevValue) =>
prevValue.filter((item) => item.id !== comment.id)
);
2023-06-12 23:30:18 +03:00
if (comment.subComments.length) {
comment.subComments.forEach((subComment) => {
apiRequest("/comment/update", {
method: "PUT",
data: {
comment_id: subComment.id,
2023-06-22 14:53:35 +03:00
status: 0,
},
}).then(() => {});
});
2023-06-12 23:30:18 +03:00
}
}
function addSubComment(commentId, subComment) {
2023-06-22 14:53:35 +03:00
const addSubComment = comments;
2023-06-12 23:30:18 +03:00
addSubComment.forEach((comment) => {
if (comment.id === commentId) {
2023-06-22 14:53:35 +03:00
comment.subComments.push(subComment);
2023-06-12 23:30:18 +03:00
}
2023-06-22 14:53:35 +03:00
});
setComments(addSubComment);
2023-06-12 23:30:18 +03:00
}
function subCommentDelete(subComment) {
2023-06-22 14:53:35 +03:00
const deleteSubComment = comments;
2023-06-12 23:30:18 +03:00
deleteSubComment.forEach((comment, index) => {
if (comment.id === subComment.parent_id) {
2023-06-22 14:53:35 +03:00
deleteSubComment[index].subComments = comment.subComments.filter(
(item) => item.id !== subComment.id
);
2023-06-12 23:30:18 +03:00
}
2023-06-22 14:53:35 +03:00
});
setComments([...deleteSubComment]);
2023-06-12 23:30:18 +03:00
}
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-22 14:53:35 +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>
2023-04-20 20:10:08 +03:00
</div>
2023-06-22 14:53:35 +03:00
</div>
<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-22 14:53:35 +03:00
<TrackerModal
active={modalAddWorker}
setActive={setModalAddWorker}
></TrackerModal>
2023-04-20 20:10:08 +03:00
2023-06-22 14:53:35 +03:00
<div className="tasks__head__persons">
<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}
2023-05-24 19:23:24 +03:00
>
2023-06-22 14:53:35 +03:00
<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)}
/>
2023-05-24 19:23:24 +03:00
</div>
2023-06-22 14:53:35 +03:00
);
})}
2023-05-24 19:23:24 +03:00
</div>
2023-06-22 14:53:35 +03:00
<div
className="persons__list__add"
onClick={() => {
dispatch(modalToggle("addWorker"));
setModalAddWorker(true);
setPersonListOpen(false);
}}
>
<span className="addPerson">+</span>
<p>Добавить участников</p>
</div>
</div>
)}
</div>
<Link to={`/profile/tracker`} className="link">
<div className="tasks__head__back">
<p>Вернуться на проекты</p>
<img src={arrow} alt="arrow" />
2023-06-12 23:30:18 +03:00
</div>
2023-06-22 14:53:35 +03:00
</Link>
</div>
</div>
</div>
<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>
)}
</div>
<div className="content__communication">
<p className="tasks">
<BaseButton
onClick={() => {
dispatch(modalToggle("addSubtask"));
setModalAddWorker(true);
}}
styles={"button-green-add"}
>
<img src={plus}></img>
Добавить под задачу
</BaseButton>
</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-05-24 19:23:24 +03:00
</div>
</div>
2023-06-22 14:53:35 +03:00
</div>
<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>
);
})}
2023-05-24 19:23:24 +03:00
</div>
2023-04-20 20:10:08 +03:00
2023-06-22 14:53:35 +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-22 14:53:35 +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-22 14:53:35 +03:00
{timerStart ? (
<button className="stop" onClick={() => stopTaskTimer()}>
Остановить
</button>
) : (
<button
className={
taskInfo.executor_id ===
Number(localStorage.getItem("id"))
? "start"
: "start disable"
2023-05-24 19:23:24 +03:00
}
2023-06-22 14:53:35 +03:00
onClick={() => startTaskTimer()}
>
Начать делать <img src={arrow2} alt="arrow"></img>
</button>
)}
</div>
2023-06-12 23:30:18 +03:00
2023-06-22 14:53:35 +03:00
<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>
2023-05-24 19:23:24 +03:00
</div>
</div>
2023-06-22 14:53:35 +03:00
</div>
</div>
</>
)}
</div>
<Footer />
</section>
2023-04-20 20:10:08 +03:00
);
};
export default TicketFullScreen;