import ClassicEditor from "@ckeditor/ckeditor5-build-classic"; import { CKEditor } from "@ckeditor/ckeditor5-react"; import ru from "date-fns/locale/ru"; import React, { useEffect, useState } from "react"; import DatePicker, { registerLocale } from "react-datepicker"; import "react-datepicker/dist/react-datepicker.css"; import { useDispatch, useSelector } from "react-redux"; import { Link } from "react-router-dom"; import { getProfileInfo } from "@redux/outstaffingSlice"; import { setProjectBoardFetch } from "@redux/projectsTrackerSlice"; import { backendImg, caseOfNum, getCorrectRequestDate, getToken, urlForLocal } from "@utils/helper"; import { apiRequest } from "@api/request"; import { useNotification } from "@hooks/useNotification"; import FileTracker from "@components/FileTracker/FileTracker"; import AcceptModal from "@components/Modal/AcceptModal/AcceptModal"; import TrackerModal from "@components/Modal/Tracker/TrackerModal/TrackerModal"; import TrackerTaskComment from "@components/TrackerTaskComment/TrackerTaskComment"; import archive from "assets/icons/archive.svg"; import arrow from "assets/icons/arrows/arrowStart.png"; import fullScreen from "assets/icons/arrows/inFullScreen.svg"; import arrowDown from "assets/icons/arrows/selectArrow.png"; import calendarIcon from "assets/icons/calendar.svg"; import category from "assets/icons/category.svg"; import close from "assets/icons/closeProjectPersons.svg"; import crossWhite from "assets/icons/crossWhite.svg"; 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 send from "assets/icons/send.svg"; import watch from "assets/icons/watch.svg"; import avatarMok from "assets/images/avatarMok.png"; import { getCorrectDate } from "../../../../utils/calendarHelper"; import "./modalTicket.scss"; registerLocale("ru", ru); export const ModalTiсket = ({ active, setActive, task, projectId, projectName, projectUsers, projectOwnerId, projectMarks }) => { const dispatch = useDispatch(); const [addSubtask, setAddSubtask] = useState(false); const [editOpen, setEditOpen] = useState(false); const [inputsValue, setInputsValue] = useState({ title: task.title, description: task.description, comment: "" }); const [comments, setComments] = useState([]); const [deadLine, setDeadLine] = useState(task.dead_line); const [datePickerOpen, setDatePickerOpen] = useState(false); const [startDate, setStartDate] = useState( task.dead_line ? new Date(task.dead_line) : new Date() ); const [dropListOpen, setDropListOpen] = useState(false); const [dropListMembersOpen, setDropListMembersOpen] = useState(false); const [executor, setExecutor] = useState(task.executor); const [taskPriority, setTaskPriority] = useState(task.execution_priority); const [members, setMembers] = useState(task.taskUsers); const [taskTags, setTaskTags] = useState(task.mark); const [users, setUsers] = useState([]); const [timerStart, setTimerStart] = useState(false); const [timerInfo, setTimerInfo] = useState({}); // const [uploadedFile, setUploadedFile] = useState(null); const [currentTimerCount, setCurrentTimerCount] = useState({ hours: 0, minute: 0, seconds: 0 }); const [timerId, setTimerId] = useState(null); const [taskFiles, setTaskFiles] = useState([]); const [correctProjectUsers, setCorrectProjectUsers] = useState(projectUsers); const [correctProjectTags, setCorrectProjectTags] = useState([]); const [executorId, setExecutorId] = useState(task.executor_id); const profileInfo = useSelector(getProfileInfo); const [acceptModalOpen, setAcceptModalOpen] = useState(false); const [selectTagsOpen, setSelectTagsOpen] = useState(false); const [selectPriorityOpen, setSelectPriorityOpen] = useState(false); const { showNotification } = useNotification(); const [commentSendDisable, setCommentSendDisable] = useState(false); function deleteTask() { apiRequest("/task/update-task", { method: "PUT", data: { task_id: task.id, status: 0 } }).then(() => { setActive(false); dispatch(setProjectBoardFetch(projectId)); showNotification({ show: true, text: "Задача успешно была перемещена в архив", type: "archive" }); }); } const priority = { 2: "Высокий", 1: "Средний", 0: "Низкий" }; const priorityTypes = [ { name: "Высокий", key: 2 }, { name: "Средний", key: 1 }, { name: "Низкий", key: 0 } ]; function archiveTask() { setAcceptModalOpen(true); } function editTask() { if (!inputsValue.title || !inputsValue.description) { return showNotification({ show: true, text: "Заполните поля", type: "error" }); } apiRequest("/task/update-task", { method: "PUT", data: { task_id: task.id, title: inputsValue.title, description: inputsValue.description } }).then((res) => { setEditOpen(!editOpen); dispatch(setProjectBoardFetch(projectId)); showNotification({ show: true, text: "Изменения сохранены", type: "success" }); }); } function createComment() { if (!inputsValue.comment) return; setCommentSendDisable(true); apiRequest("/comment/create", { method: "POST", data: { text: inputsValue.comment, entity_type: 2, entity_id: task.id } }).then((res) => { let newComment = res; setCommentSendDisable(false); newComment.created_at = new Date(); newComment.subComments = []; setInputsValue((prevValue) => ({ ...prevValue, comment: "" })); setComments((prevValue) => [...prevValue, newComment]); }); } function commentDelete(comment) { setComments((prevValue) => prevValue.filter((item) => item.id !== comment.id) ); if (comment.subComments.length) { // promiseAll 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]); } function startTaskTimer() { apiRequest("/timer/create", { method: "POST", data: { entity_type: 2, entity_id: task.id, created_at: getCorrectRequestDate(new Date()) } }).then((res) => { setTimerStart(true); setTimerInfo(res); startTimer(); }); } function stopTaskTimer() { apiRequest("/timer/update", { method: "PUT", data: { timer_id: timerInfo.id, stopped_at: getCorrectRequestDate(new Date()) } }).then(() => { setTimerStart(false); clearInterval(timerId); }); } function taskExecutor(person) { apiRequest("/task/update-task", { method: "PUT", data: { task_id: task.id, executor_id: person.user_id } }).then((res) => { setExecutorId(person.user_id); setDropListOpen(false); setExecutor(res.executor); dispatch(setProjectBoardFetch(projectId)); }); } function deleteTaskExecutor() { apiRequest("/task/update-task", { method: "PUT", data: { task_id: task.id, executor_id: 0 } }).then(() => { setExecutorId(null); setExecutor(null); dispatch(setProjectBoardFetch(projectId)); }); } function updateTaskPriority(key) { setSelectPriorityOpen(false); apiRequest("/task/update-task", { method: "PUT", data: { task_id: task.id, execution_priority: key } }).then(() => { dispatch(setProjectBoardFetch(projectId)); }); } function addMember(person) { apiRequest("/task/add-user-to-task", { method: "POST", data: { task_id: task.id, user_id: person.user_id } }).then((res) => { setDropListMembersOpen(false); setMembers((prevValue) => [...prevValue, res]); dispatch(setProjectBoardFetch(projectId)); }); } function deleteMember(person) { apiRequest("/task/del-user", { method: "DELETE", data: { task_id: task.id, user_id: person.user_id } }).then(() => { setMembers(members.filter((item) => item.user_id !== person.user_id)); dispatch(setProjectBoardFetch(projectId)); }); } useEffect(() => { initListeners(); apiRequest( `/comment/get-by-entity?entity_type=2&entity_id=${task.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); }); apiRequest(`/timer/get-by-entity?entity_type=2&entity_id=${task.id}`).then( (res) => { let timerSeconds = 0; res.length && res.forEach((time) => { timerSeconds += time.deltaSeconds; setCurrentTimerCount({ hours: Math.floor(timerSeconds / 60 / 60), minute: Math.floor((timerSeconds / 60) % 60), seconds: timerSeconds % 60 }); updateTimerHours = Math.floor(timerSeconds / 60 / 60); updateTimerMinute = Math.floor((timerSeconds / 60) % 60); updateTimerSec = timerSeconds % 60; if (!time.stopped_at) { setTimerStart(true); startTimer(); setTimerInfo(time); } }); } ); apiRequest(`/file/get-by-entity?entity_type=2&entity_id=${task.id}`).then( (res) => { if (Array.isArray(res)) { setTaskFiles(res); } } ); if ( localStorage.getItem("role_status") !== "18" && Boolean( !correctProjectUsers.find( (item) => item.user_id === profileInfo.id_user ) ) ) { setCorrectProjectUsers((prevState) => [ ...prevState, { user: { avatar: profileInfo.photo, fio: profileInfo.fio }, user_id: profileInfo.id_user } ]); } }, []); useEffect(() => { let tagIds = taskTags.map((tag) => tag.id); setCorrectProjectTags( projectMarks.reduce((acc, cur) => { if (!tagIds.includes(cur.id)) acc.push(cur); return acc; }, []) ); }, [taskTags]); async function handleUpload(event) { const formData = new FormData(); formData.append("uploadFile", event.target.files[0]); const res = await fetch("https://itguild.info/api/file/upload", { method: "POST", body: formData, headers: { ...getToken() } }); const data = await res.json(); // setUploadedFile(data); attachFile(data[0].id); } // function deleteLoadedFile() { // setUploadedFile(null); // } function attachFile(id) { apiRequest("/file/attach", { method: "POST", data: { file_id: id, entity_type: 2, entity_id: task.id, status: 1 } }).then((res) => { setTaskFiles((prevValue) => [...prevValue, res]); // setUploadedFile(null); }); } function deleteFile(file) { setTaskFiles((prevValue) => prevValue.filter((item) => item.id !== file.id) ); } function startTimer() { setTimerId( setInterval(() => { run(); }, 1000) ); } let updateTimerSec = currentTimerCount.seconds, updateTimerMinute = currentTimerCount.minute, updateTimerHours = currentTimerCount.hours; function run() { updateTimerSec++; if (updateTimerSec > 60) { updateTimerMinute++; updateTimerSec = 0; } if (updateTimerMinute === 60) { updateTimerMinute = 0; updateTimerHours++; } return setCurrentTimerCount({ hours: updateTimerHours, minute: updateTimerMinute, seconds: updateTimerSec }); } function correctTimerTime(time) { if (time < 10) return `0${time}`; if (time > 10) return time; } useEffect(() => { let ids = members.map((user) => user.user_id); setUsers( projectUsers.reduce((acc, cur) => { if (!ids.includes(cur.user_id)) acc.push(cur); return acc; }, []) ); }, [members]); function copyTicketLink() { navigator.clipboard.writeText( `https://itguild.info/tracker/task/${task.id}` ); showNotification({ show: true, text: "Ссылка скопирована в буфер обмена", type: "copy" }); } function selectDeadLine(date) { apiRequest("/task/update-task", { method: "PUT", data: { task_id: task.id, dead_line: getCorrectRequestDate(date) } }).then(() => { dispatch(setProjectBoardFetch(projectId)); }); } function addTagToTask(tagId) { apiRequest("/mark/attach", { method: "POST", data: { mark_id: tagId, entity_type: 2, entity_id: task.id } }).then((data) => { setSelectTagsOpen(false); setTaskTags((prevValue) => [...prevValue, data.mark]); dispatch(setProjectBoardFetch(projectId)); }); } function deleteTagFromTask(tagId) { apiRequest("/mark/detach", { method: "DELETE", data: { mark_id: tagId, entity_type: 2, entity_id: task.id } }).then(() => { setTaskTags((prevValue) => prevValue.filter((tag) => tag.id !== tagId)); dispatch(setProjectBoardFetch(projectId)); }); } function closeAcceptModal() { setAcceptModalOpen(false); } const initListeners = () => { document.addEventListener("click", closeByClickingOut); }; const closeByClickingOut = (event) => { const path = event.path || (event.composedPath && event.composedPath()); if ( event && !path.find( (div) => div.classList && (div.classList.contains("button-add-worker") || div.classList.contains("dropdown-list")) ) ) { setDropListOpen(false); setDropListMembersOpen(false); } if ( event && !path.find( (div) => div.classList && (div.classList.contains("dead-line") || div.classList.contains("react-datepicker-popper")) ) ) { setDatePickerOpen(false); } if ( event && !path.find( (div) => div.classList && (div.classList.contains("tags") || div.classList.contains("tags__dropDown")) ) ) { setSelectTagsOpen(false); } }; return (
*/} {/* */} {/*
*/}{task.user?.fio}
{executor ? ( <>{executor.fio}
{member.fio.split(" ").slice(0, -1).join(" ")}
Нет пользователей
)}⌛
{deadLine ? getCorrectDate(deadLine) : "Срок исполнения"}⏱
{correctTimerTime(currentTimerCount.hours)}: {correctTimerTime(currentTimerCount.minute)}: {correctTimerTime(currentTimerCount.seconds)}
{tag.slug}
{tag.slug}
Нет тегов
)}{editOpen ? "сохранить" : "редактировать"}
ссылка на задачу
в архив
удалить