Compare commits
2 Commits
7a5d6fc9ec
...
43cd44f0a9
Author | SHA1 | Date | |
---|---|---|---|
|
43cd44f0a9 | ||
|
a32533fdea |
@ -7,13 +7,7 @@ import { useDispatch, useSelector } from "react-redux";
|
|||||||
import { Link, useNavigate, useParams } from "react-router-dom";
|
import { Link, useNavigate, useParams } from "react-router-dom";
|
||||||
|
|
||||||
import { getProfileInfo } from "@redux/outstaffingSlice";
|
import { getProfileInfo } from "@redux/outstaffingSlice";
|
||||||
import {
|
import { getBoarderLoader, setToggleTab } from "@redux/projectsTrackerSlice";
|
||||||
deletePersonOnProject,
|
|
||||||
getBoarderLoader,
|
|
||||||
modalToggle,
|
|
||||||
setProjectBoardFetch,
|
|
||||||
setToggleTab
|
|
||||||
} from "@redux/projectsTrackerSlice";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
backendImg,
|
backendImg,
|
||||||
@ -32,7 +26,6 @@ import { Footer } from "@components/Common/Footer/Footer";
|
|||||||
import { Loader } from "@components/Common/Loader/Loader";
|
import { Loader } from "@components/Common/Loader/Loader";
|
||||||
import FileTracker from "@components/FileTracker/FileTracker";
|
import FileTracker from "@components/FileTracker/FileTracker";
|
||||||
import AcceptModal from "@components/Modal/AcceptModal/AcceptModal";
|
import AcceptModal from "@components/Modal/AcceptModal/AcceptModal";
|
||||||
import TrackerModal from "@components/Modal/Tracker/TrackerModal/TrackerModal";
|
|
||||||
import { Navigation } from "@components/Navigation/Navigation";
|
import { Navigation } from "@components/Navigation/Navigation";
|
||||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||||
@ -60,7 +53,6 @@ import "./ticketFullScreen.scss";
|
|||||||
registerLocale("ru", ru);
|
registerLocale("ru", ru);
|
||||||
|
|
||||||
export const TicketFullScreen = () => {
|
export const TicketFullScreen = () => {
|
||||||
const [modalAddWorker, setModalAddWorker] = useState(false);
|
|
||||||
const ticketId = useParams();
|
const ticketId = useParams();
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
@ -71,7 +63,6 @@ export const TicketFullScreen = () => {
|
|||||||
const [inputsValue, setInputsValue] = useState({});
|
const [inputsValue, setInputsValue] = useState({});
|
||||||
const [loader, setLoader] = useState(true);
|
const [loader, setLoader] = useState(true);
|
||||||
const [comments, setComments] = useState([]);
|
const [comments, setComments] = useState([]);
|
||||||
const [personListOpen, setPersonListOpen] = useState(false);
|
|
||||||
const [timerStart, setTimerStart] = useState(false);
|
const [timerStart, setTimerStart] = useState(false);
|
||||||
const [timerInfo, setTimerInfo] = useState({});
|
const [timerInfo, setTimerInfo] = useState({});
|
||||||
const [currentTimerCount, setCurrentTimerCount] = useState({
|
const [currentTimerCount, setCurrentTimerCount] = useState({
|
||||||
@ -292,18 +283,6 @@ export const TicketFullScreen = () => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function deletePerson(userId) {
|
|
||||||
apiRequest("/project/del-user", {
|
|
||||||
method: "DELETE",
|
|
||||||
data: {
|
|
||||||
project_id: projectInfo.id,
|
|
||||||
user_id: userId
|
|
||||||
}
|
|
||||||
}).then(() => {
|
|
||||||
dispatch(deletePersonOnProject(userId));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function commentDelete(comment) {
|
function commentDelete(comment) {
|
||||||
setComments((prevValue) =>
|
setComments((prevValue) =>
|
||||||
prevValue.filter((item) => item.id !== comment.id)
|
prevValue.filter((item) => item.id !== comment.id)
|
||||||
@ -616,18 +595,6 @@ export const TicketFullScreen = () => {
|
|||||||
) {
|
) {
|
||||||
setSelectTagsOpen(false);
|
setSelectTagsOpen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
|
||||||
event &&
|
|
||||||
!path.find(
|
|
||||||
(div) =>
|
|
||||||
div.classList &&
|
|
||||||
(div.classList.contains("addPerson") ||
|
|
||||||
div.classList.contains("persons__list"))
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
setPersonListOpen(false);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -680,98 +647,6 @@ export const TicketFullScreen = () => {
|
|||||||
<div className="tasks__head">
|
<div className="tasks__head">
|
||||||
<div className="tasks__head__wrapper tasks__head__wrapper__fullScreen">
|
<div className="tasks__head__wrapper tasks__head__wrapper__fullScreen">
|
||||||
<h5>{projectInfo.name}</h5>
|
<h5>{projectInfo.name}</h5>
|
||||||
|
|
||||||
<TrackerModal
|
|
||||||
active={modalAddWorker}
|
|
||||||
setActive={setModalAddWorker}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div className="tasks__head__persons">
|
|
||||||
<div className="projectPersons">
|
|
||||||
{projectInfo.projectUsers?.length &&
|
|
||||||
projectInfo.projectUsers.slice(0, 3).map((person) => {
|
|
||||||
return (
|
|
||||||
<img
|
|
||||||
key={person.user_id}
|
|
||||||
src={
|
|
||||||
person.user?.avatar
|
|
||||||
? urlForLocal(person.user.avatar)
|
|
||||||
: avatarMok
|
|
||||||
}
|
|
||||||
alt="avatar"
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
{projectInfo.projectUsers?.length > 3 && (
|
|
||||||
<span className="countPersons">+1</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>{projectInfo.projectUsers?.length}</span>
|
|
||||||
участник
|
|
||||||
</div>
|
|
||||||
<div className="persons__list__info">
|
|
||||||
<span>В проекте - </span>
|
|
||||||
<p>“{projectInfo.name}”</p>
|
|
||||||
</div>
|
|
||||||
<div className="persons__list__items">
|
|
||||||
{projectInfo.projectUsers?.map((person) => {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className="persons__list__item"
|
|
||||||
key={person.user_id}
|
|
||||||
>
|
|
||||||
<img
|
|
||||||
className="avatar"
|
|
||||||
src={
|
|
||||||
person.user?.avatar
|
|
||||||
? urlForLocal(person.user.avatar)
|
|
||||||
: avatarMok
|
|
||||||
}
|
|
||||||
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);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<span className="addPerson">+</span>
|
|
||||||
<p>Добавить участников</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<Link
|
<Link
|
||||||
to={`/tracker/project/${taskInfo.project_id}`}
|
to={`/tracker/project/${taskInfo.project_id}`}
|
||||||
className="link"
|
className="link"
|
||||||
@ -800,7 +675,6 @@ export const TicketFullScreen = () => {
|
|||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<h5 className="fullName nameFullScreen">
|
<h5 className="fullName nameFullScreen">
|
||||||
<span>Название задачи:</span>
|
|
||||||
{inputsValue.title}
|
{inputsValue.title}
|
||||||
</h5>
|
</h5>
|
||||||
)}
|
)}
|
||||||
@ -833,12 +707,7 @@ export const TicketFullScreen = () => {
|
|||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<div className="ticket__description">
|
<div className="ticket__description">
|
||||||
<span>
|
<div
|
||||||
Описание
|
|
||||||
<br />
|
|
||||||
задачи:{" "}
|
|
||||||
</span>
|
|
||||||
<p
|
|
||||||
className="fullDescription fullScreenDescription"
|
className="fullDescription fullScreenDescription"
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: inputsValue.description
|
__html: inputsValue.description
|
||||||
@ -884,18 +753,6 @@ export const TicketFullScreen = () => {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div className="content__communication">
|
<div className="content__communication">
|
||||||
{/*<p className="tasks">*/}
|
|
||||||
{/* <BaseButton*/}
|
|
||||||
{/* onClick={() => {*/}
|
|
||||||
{/* dispatch(modalToggle("addSubtask"));*/}
|
|
||||||
{/* setModalAddWorker(true);*/}
|
|
||||||
{/* }}*/}
|
|
||||||
{/* styles={"button-green-add"}*/}
|
|
||||||
{/* >*/}
|
|
||||||
{/* <img src={plus}></img>*/}
|
|
||||||
{/* Добавить под задачу*/}
|
|
||||||
{/* </BaseButton>*/}
|
|
||||||
{/*</p>*/}
|
|
||||||
<div className="file">
|
<div className="file">
|
||||||
<div className="input__wrapper">
|
<div className="input__wrapper">
|
||||||
<input
|
<input
|
||||||
@ -954,13 +811,15 @@ export const TicketFullScreen = () => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="workers fullScreenWorkers">
|
<div className="workers fullScreenWorkers">
|
||||||
<div className="workers_box task__info">
|
<div className="workers_box task__info">
|
||||||
<p className="workers__creator">
|
<div className="workers__creator">
|
||||||
Создатель: <p> {taskInfo.user?.fio}</p>
|
Создатель: <p> {taskInfo.user?.fio}</p>
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
{taskInfo.executor ? (
|
{taskInfo.executor ? (
|
||||||
|
<>
|
||||||
|
<h5>Исполнитель: </h5>
|
||||||
<div className="executor">
|
<div className="executor">
|
||||||
<p>Исполнитель: {taskInfo.executor.fio}</p>
|
<p>{taskInfo.executor.fio}</p>
|
||||||
<img
|
<img
|
||||||
src={
|
src={
|
||||||
taskInfo.executor?.avatar
|
taskInfo.executor?.avatar
|
||||||
@ -975,6 +834,7 @@ export const TicketFullScreen = () => {
|
|||||||
onClick={() => deleteTaskExecutor()}
|
onClick={() => deleteTaskExecutor()}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
) : (
|
) : (
|
||||||
<div className="add-worker moreItems ">
|
<div className="add-worker moreItems ">
|
||||||
<button
|
<button
|
||||||
|
@ -711,12 +711,12 @@ export const TrackerModal = ({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<BaseButton styles={"button-add"} onClick={createTiket}>
|
<BaseButton styles={"button-add"} onClick={createTiket}>
|
||||||
Создать
|
Создать
|
||||||
</BaseButton>
|
</BaseButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{modalType === "editProject" && (
|
{modalType === "editProject" && (
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
row-gap: 8px;
|
row-gap: 8px;
|
||||||
margin-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
|
||||||
.select-priority {
|
.select-priority {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
@ -296,7 +296,7 @@
|
|||||||
|
|
||||||
.createTaskHead {
|
.createTaskHead {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 30px 42px 18px;
|
padding: 5px 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 9.5px;
|
column-gap: 9.5px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -325,9 +325,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.createTaskBody {
|
.createTaskBody {
|
||||||
padding: 13px 43px 46px 42px;
|
padding: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 55px;
|
column-gap: 20px;
|
||||||
|
|
||||||
&__left {
|
&__left {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -336,7 +336,8 @@
|
|||||||
color: #263238 !important;
|
color: #263238 !important;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 19.2px;
|
line-height: 19.2px;
|
||||||
margin-bottom: 25px;
|
margin-bottom: 15px;
|
||||||
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-container {
|
.input-container {
|
||||||
@ -360,8 +361,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ck-editor__editable.ck-rounded-corners {
|
.ck-editor__editable.ck-rounded-corners {
|
||||||
min-height: 110px;
|
min-height: 130px;
|
||||||
max-height: 110px;
|
max-height: 130px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -399,7 +400,7 @@
|
|||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
margin-bottom: 17.5px;
|
margin-bottom: 10px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -579,7 +580,6 @@
|
|||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
margin-bottom: 27px;
|
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -600,7 +600,7 @@
|
|||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: 22px;
|
margin: 8px 0 30px;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: #6f6f6f;
|
color: #6f6f6f;
|
||||||
|
@ -964,17 +964,17 @@ export const ProjectTracker = () => {
|
|||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
{task.comment_count}{" "}
|
{task.comment_count}{" "}
|
||||||
{caseOfNum(
|
{/* {caseOfNum(
|
||||||
task.comment_count,
|
task.comment_count,
|
||||||
"comments"
|
"comments"
|
||||||
)}
|
)} */}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="tasks__board__item__info__more">
|
<div className="tasks__board__item__info__more">
|
||||||
<img src={filesBoard} alt="filesImg" />
|
<img src={filesBoard} alt="filesImg" />
|
||||||
<span>
|
<span>
|
||||||
{task.files ? task.files : 0}{" "}
|
{task.files ? task.files : 0}{" "}
|
||||||
{caseOfNum(0, "files")}
|
{/* {caseOfNum(0, "files")} */}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -130,7 +130,7 @@
|
|||||||
&__content {
|
&__content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
padding: 27px 0 29px;
|
padding: 15px 0;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
|
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
@ -705,9 +705,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__container {
|
&__container {
|
||||||
padding: 30px 25px 30px;
|
padding: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 25px;
|
column-gap: 15px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@ -730,9 +730,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
padding: 15px;
|
padding: 5px;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
row-gap: 25px;
|
row-gap: 15px;
|
||||||
transform: none;
|
transform: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -744,8 +744,7 @@
|
|||||||
0px 1px 1px rgba(0, 0, 0, 0.06);
|
0px 1px 1px rgba(0, 0, 0, 0.06);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 12px 10px 12px 8px;
|
padding: 12px 10px 12px 8px;
|
||||||
min-width: 365px;
|
width: 360px;
|
||||||
max-width: 380px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
row-gap: 10px;
|
row-gap: 10px;
|
||||||
@ -765,10 +764,10 @@
|
|||||||
.tasksContainer {
|
.tasksContainer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
row-gap: 16px;
|
row-gap: 8px;
|
||||||
max-height: 750px;
|
max-height: 750px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 8px;
|
padding: 5px;
|
||||||
|
|
||||||
&::-webkit-scrollbar {
|
&::-webkit-scrollbar {
|
||||||
width: 3px;
|
width: 3px;
|
||||||
@ -798,7 +797,7 @@
|
|||||||
|
|
||||||
&__item {
|
&__item {
|
||||||
width: 328px;
|
width: 328px;
|
||||||
padding: 4px 10px;
|
padding: 6px 10px;
|
||||||
position: relative;
|
position: relative;
|
||||||
box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06),
|
box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06),
|
||||||
0px 5px 3px -2px rgba(0, 0, 0, 0.02);
|
0px 5px 3px -2px rgba(0, 0, 0, 0.02);
|
||||||
@ -866,7 +865,7 @@
|
|||||||
color: #5c6165;
|
color: #5c6165;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 110%;
|
line-height: 120%;
|
||||||
max-height: 100px;
|
max-height: 100px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
@ -877,7 +876,7 @@
|
|||||||
|
|
||||||
&__info {
|
&__info {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
column-gap: 10px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
|
||||||
@ -908,8 +907,8 @@
|
|||||||
|
|
||||||
&__priority {
|
&__priority {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
column-gap: 5px;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@ -938,8 +937,8 @@
|
|||||||
&__deadLine {
|
&__deadLine {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
column-gap: 5px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 8px;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@ -979,7 +978,7 @@
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
column-gap: 6px;
|
column-gap: 6px;
|
||||||
row-gap: 3px;
|
row-gap: 3px;
|
||||||
margin-bottom: 5px;
|
margin: 5px 0 8px;
|
||||||
|
|
||||||
.tagItem {
|
.tagItem {
|
||||||
padding: 3px 10px;
|
padding: 3px 10px;
|
||||||
|
Loading…
Reference in New Issue
Block a user