Merge remote-tracking branch 'origin/parthners-area-fix-modal' into parthners-area
# Conflicts: # src/pages/PartnerSettings/PartnerSettings.js
This commit is contained in:
commit
fd372b47ae
@ -3,24 +3,20 @@ import { Link, useNavigate } from "react-router-dom";
|
|||||||
import { useDispatch, useSelector } from "react-redux";
|
import { useDispatch, useSelector } from "react-redux";
|
||||||
|
|
||||||
import { Loader } from "../Loader/Loader";
|
import { Loader } from "../Loader/Loader";
|
||||||
import ErrorBoundary from "../../hoc/ErrorBoundary";
|
|
||||||
|
|
||||||
import { auth, selectAuth, setUserInfo } from "../../redux/outstaffingSlice";
|
import { auth, selectAuth, setUserInfo } from "../../redux/outstaffingSlice";
|
||||||
import { loading } from "../../redux/loaderSlice";
|
import { loading } from "../../redux/loaderSlice";
|
||||||
import { setRole } from "../../redux/roleSlice";
|
import { setRole } from "../../redux/roleSlice";
|
||||||
import { selectIsLoading } from "../../redux/loaderSlice";
|
import { selectIsLoading } from "../../redux/loaderSlice";
|
||||||
|
|
||||||
|
import ModalErrorLogin from "../../components/UI/ModalErrorLogin/ModalErrorLogin";
|
||||||
|
|
||||||
import { apiRequest } from "../../api/request";
|
import { apiRequest } from "../../api/request";
|
||||||
|
|
||||||
import ellipse from "../../images/ellipse.png";
|
import ellipse from "../../images/ellipse.png";
|
||||||
|
|
||||||
import "./authBox.scss";
|
import "./authBox.scss";
|
||||||
|
|
||||||
import Swal from "sweetalert2";
|
|
||||||
import withReactContent from "sweetalert2-react-content";
|
|
||||||
|
|
||||||
const SweetAlert = withReactContent(Swal);
|
|
||||||
|
|
||||||
export const AuthBox = ({ title }) => {
|
export const AuthBox = ({ title }) => {
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const ref = useRef();
|
const ref = useRef();
|
||||||
@ -30,15 +26,7 @@ export const AuthBox = ({ title }) => {
|
|||||||
const isLoading = useSelector(selectIsLoading);
|
const isLoading = useSelector(selectIsLoading);
|
||||||
|
|
||||||
const [error, setError] = useState(null);
|
const [error, setError] = useState(null);
|
||||||
|
const [modalError, setModalError] = useState(false);
|
||||||
const handleModalError = (error) => {
|
|
||||||
SweetAlert.fire({
|
|
||||||
title: "Ошибка",
|
|
||||||
text: error,
|
|
||||||
});
|
|
||||||
|
|
||||||
setError(null);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!localStorage.getItem("auth_token")) {
|
if (!localStorage.getItem("auth_token")) {
|
||||||
@ -62,6 +50,7 @@ export const AuthBox = ({ title }) => {
|
|||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (!res.access_token) {
|
if (!res.access_token) {
|
||||||
setError("Некорректные данные для входа");
|
setError("Некорректные данные для входа");
|
||||||
|
setModalError(true);
|
||||||
dispatch(loading(false));
|
dispatch(loading(false));
|
||||||
} else {
|
} else {
|
||||||
localStorage.setItem("auth_token", res.access_token);
|
localStorage.setItem("auth_token", res.access_token);
|
||||||
@ -104,15 +93,11 @@ export const AuthBox = ({ title }) => {
|
|||||||
|
|
||||||
{error && (
|
{error && (
|
||||||
<div className="auth-box__form-error">
|
<div className="auth-box__form-error">
|
||||||
<ErrorBoundary>
|
<ModalErrorLogin
|
||||||
{handleModalError(error)}
|
active={modalError}
|
||||||
{/*<SweetAlert*/}
|
setActive={setModalError}
|
||||||
{/* show={!!error}*/}
|
title={error}
|
||||||
{/* title='Ошибка'*/}
|
/>
|
||||||
{/* text={error}*/}
|
|
||||||
{/* onConfirm={() => setError(null)}*/}
|
|
||||||
{/*/>*/}
|
|
||||||
</ErrorBoundary>
|
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
@ -130,7 +115,9 @@ export const AuthBox = ({ title }) => {
|
|||||||
{/* TODO: при клике отправлять на форму/модалку/страницу регистрации */}
|
{/* TODO: при клике отправлять на форму/модалку/страницу регистрации */}
|
||||||
<button
|
<button
|
||||||
className="auth-box__form-btn--role auth-box__auth-link"
|
className="auth-box__form-btn--role auth-box__auth-link"
|
||||||
onClick={(e) => e.preventDefault()}
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
Регистрация
|
Регистрация
|
||||||
</button>
|
</button>
|
||||||
|
@ -150,11 +150,11 @@
|
|||||||
width: 268px;
|
width: 268px;
|
||||||
height: 75px;
|
height: 75px;
|
||||||
border-radius: 38px;
|
border-radius: 38px;
|
||||||
background-color: #ffffff;
|
background-color: #f5f5f5;
|
||||||
border: 2px solid #6aaf5c;
|
border: 2px solid #6aaf5c;
|
||||||
font-family: "Muller";
|
font-family: "Muller";
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
font-weight: 300;
|
font-weight: 400;
|
||||||
letter-spacing: normal;
|
letter-spacing: normal;
|
||||||
line-height: 71.88px;
|
line-height: 71.88px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -8,7 +8,9 @@ export const AuthHeader = ({}) => {
|
|||||||
return (
|
return (
|
||||||
<div className="auth-header">
|
<div className="auth-header">
|
||||||
<div className="auth-header__logo">
|
<div className="auth-header__logo">
|
||||||
<h3>itguild.</h3>
|
<h3>
|
||||||
|
itguild.<span>аутстафинг ИТ специалистов</span>
|
||||||
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div className="auth-header__navigation">
|
<div className="auth-header__navigation">
|
||||||
<div className="container">
|
<div className="container">
|
||||||
|
@ -12,6 +12,9 @@
|
|||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
span {
|
||||||
|
color: #52b709;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__navigation {
|
&__navigation {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
.auth-menu {
|
.auth-menu {
|
||||||
z-index: 99;
|
z-index: 99;
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 141px;
|
width: 141px;
|
||||||
|
@ -46,14 +46,16 @@
|
|||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
margin-right: 33px;
|
margin-right: 20px;
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
color: black;
|
color: black;
|
||||||
width: 198px;
|
width: 160px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__resume {
|
&__resume {
|
||||||
@ -66,40 +68,54 @@
|
|||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
color: white;
|
color: white;
|
||||||
border: none;
|
border: none;
|
||||||
|
transition: 0.5s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
transition: 0.5s;
|
||||||
|
background-color: #52b709a8;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.slick-next {
|
.slick-next {
|
||||||
|
display: flex !important;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
background-color: #8dc63f;
|
background-color: #8dc63f;
|
||||||
width: 44px;
|
width: 44px;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
border-radius: 44px;
|
border-radius: 44px;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: ">";
|
content: url("../../images/arrowViewReport.svg");
|
||||||
color: white;
|
}
|
||||||
font-size: 23px;
|
|
||||||
|
&:focus {
|
||||||
|
background-color: #8dc63f;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus,
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: #8ec63f91;
|
background-color: #8ec63f91;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.slick-prev {
|
.slick-prev {
|
||||||
|
display: flex !important;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
background-color: #8dc63f;
|
background-color: #8dc63f;
|
||||||
width: 44px;
|
width: 44px;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
border-radius: 44px;
|
border-radius: 44px;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: "<";
|
content: url("../../images/ArrovLeftSlider.png");
|
||||||
color: white;
|
}
|
||||||
font-size: 23px;
|
|
||||||
|
&:focus {
|
||||||
|
background-color: #8dc63f;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus,
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: #8ec63f91;
|
background-color: #8ec63f91;
|
||||||
}
|
}
|
||||||
@ -128,7 +144,6 @@
|
|||||||
|
|
||||||
img {
|
img {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 50%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@ -136,7 +151,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.worker-description {
|
&-description {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
48
src/components/UI/ModalCreate/ModalCreate.js
Normal file
48
src/components/UI/ModalCreate/ModalCreate.js
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import React, { useState } from "react";
|
||||||
|
import { useDispatch } from "react-redux";
|
||||||
|
import { setProject } from "../../../redux/projectsTrackerSlice";
|
||||||
|
|
||||||
|
import "./ModalCreate.scss";
|
||||||
|
|
||||||
|
export const ModalCreate = ({ active, setActive, title }) => {
|
||||||
|
const [inputValue, setInputValue] = useState("");
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
|
function createName() {
|
||||||
|
let newItem = {
|
||||||
|
name: inputValue,
|
||||||
|
count: 0,
|
||||||
|
};
|
||||||
|
dispatch(setProject(newItem));
|
||||||
|
setActive(false);
|
||||||
|
setInputValue("")
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={active ? "modal-project active" : "modal-project"}
|
||||||
|
onClick={() => setActive(false)}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className="modal-project__content"
|
||||||
|
onClick={(e) => e.stopPropagation()}
|
||||||
|
>
|
||||||
|
<div className="title-project">
|
||||||
|
<h4>{title}</h4>
|
||||||
|
<div className="input-container">
|
||||||
|
<input
|
||||||
|
className="name-project"
|
||||||
|
value={inputValue}
|
||||||
|
onChange={(e) => setInputValue(e.target.value)}
|
||||||
|
></input>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button className="create-project" onClick={createName}>
|
||||||
|
Создать
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ModalCreate;
|
71
src/components/UI/ModalCreate/ModalCreate.scss
Normal file
71
src/components/UI/ModalCreate/ModalCreate.scss
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
.modal-project {
|
||||||
|
z-index: 9;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.11);
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
transform: scale(0);
|
||||||
|
|
||||||
|
&__content {
|
||||||
|
padding: 15px;
|
||||||
|
background: #ffffff;
|
||||||
|
border: 1px solid #dde2e4;
|
||||||
|
border-radius: 8px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.title-project {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.input-container {
|
||||||
|
width: 220px;
|
||||||
|
height: 25px;
|
||||||
|
border-radius: 44px;
|
||||||
|
border: 1px solid #d1d1d1;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
color: #111112;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.name-project {
|
||||||
|
margin-left: 10px;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
height: 100%;
|
||||||
|
width: 90%;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.create-project {
|
||||||
|
margin: 15px 0 0 0;
|
||||||
|
width: 188px;
|
||||||
|
height: 40px;
|
||||||
|
background: #52b709;
|
||||||
|
border-radius: 44px;
|
||||||
|
border: none;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 32px;
|
||||||
|
color: #ffffff;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-project.active {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
@ -2,7 +2,7 @@ import React from "react";
|
|||||||
|
|
||||||
import "./modalErrorLogin.scss";
|
import "./modalErrorLogin.scss";
|
||||||
|
|
||||||
export const ModalErrorLogin = ({ active, setActive }) => {
|
export const ModalErrorLogin = ({ active, setActive, title }) => {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={active ? "modal-error active" : "modal-error"}
|
className={active ? "modal-error active" : "modal-error"}
|
||||||
@ -13,8 +13,14 @@ export const ModalErrorLogin = ({ active, setActive }) => {
|
|||||||
onClick={(e) => e.stopPropagation()}
|
onClick={(e) => e.stopPropagation()}
|
||||||
>
|
>
|
||||||
<h2>Ошибка входа</h2>
|
<h2>Ошибка входа</h2>
|
||||||
<p>Введены некоректные данные для входа</p>
|
<p>{title}</p>
|
||||||
<button className="modal-error__content-button">
|
<button
|
||||||
|
className="modal-error__content-button"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setActive(false);
|
||||||
|
}}
|
||||||
|
>
|
||||||
Попробовать еще раз
|
Попробовать еще раз
|
||||||
</button>
|
</button>
|
||||||
<span onClick={() => setActive(false)}></span>
|
<span onClick={() => setActive(false)}></span>
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
import React from "react";
|
|
||||||
|
|
||||||
import "./ModalProject.scss";
|
|
||||||
|
|
||||||
export const ModalProject = ({ active, setActive }) => {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={active ? "modal-project active" : "modal-project"}
|
|
||||||
onClick={() => setActive(false)}
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
className="modal-project__content"
|
|
||||||
onClick={(e) => e.stopPropagation()}
|
|
||||||
>
|
|
||||||
<div className="title-project">
|
|
||||||
<h4>Укажите название проекта: </h4>
|
|
||||||
<div className="input-container">
|
|
||||||
<input className="name-project"></input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button className="create-project">Создать</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ModalProject;
|
|
@ -1,57 +0,0 @@
|
|||||||
.modal-project {
|
|
||||||
z-index: 9;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.11);
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
transform: scale(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-project.active {
|
|
||||||
transform: scale(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-project__content {
|
|
||||||
padding: 15px;
|
|
||||||
background: #ffffff;
|
|
||||||
border: 1px solid #dde2e4;
|
|
||||||
border-radius: 8px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
.title-project {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
.input-container {
|
|
||||||
width: 220px;
|
|
||||||
height: 25px;
|
|
||||||
border-radius: 44px;
|
|
||||||
border: 1px solid #d1d1d1;
|
|
||||||
}
|
|
||||||
|
|
||||||
h4 {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.name-project {
|
|
||||||
margin-left: 10px;
|
|
||||||
border: none;
|
|
||||||
outline: none;
|
|
||||||
height: 100%;
|
|
||||||
width: 90%;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-project {
|
|
||||||
margin: 15px 0 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
@ -40,14 +40,6 @@ export const ModalTiket = ({ active, setActive }) => {
|
|||||||
className="modal-tiket__content"
|
className="modal-tiket__content"
|
||||||
onClick={(e) => e.stopPropagation()}
|
onClick={(e) => e.stopPropagation()}
|
||||||
>
|
>
|
||||||
<div className="author">
|
|
||||||
<a href="#">
|
|
||||||
<img src={creatorMock}></img>
|
|
||||||
</a>
|
|
||||||
<a href="#">
|
|
||||||
<img src={creatorMock}></img>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div className="content">
|
<div className="content">
|
||||||
<h3 className="title-project">
|
<h3 className="title-project">
|
||||||
<img src={category} className="title-project__category"></img>
|
<img src={category} className="title-project__category"></img>
|
||||||
@ -75,6 +67,7 @@ export const ModalTiket = ({ active, setActive }) => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="workers">
|
<div className="workers">
|
||||||
|
<span className="exit" onClick={() => setActive(false)}></span>
|
||||||
<span>{tiket.code}</span>
|
<span>{tiket.code}</span>
|
||||||
<p className="workers__creator">Создатель : {tiket.creator}</p>
|
<p className="workers__creator">Создатель : {tiket.creator}</p>
|
||||||
<div>
|
<div>
|
||||||
|
@ -23,20 +23,6 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
.author {
|
|
||||||
padding: 25px 0 0 0;
|
|
||||||
border-radius: 8px 0 0 8px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
width: 76px;
|
|
||||||
background: #fbfbfb;
|
|
||||||
|
|
||||||
a {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -109,10 +95,34 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.workers {
|
.workers {
|
||||||
|
position: relative;
|
||||||
border-left: 1px solid #f1f1f1;
|
border-left: 1px solid #f1f1f1;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
|
|
||||||
|
.exit {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
top: 22px;
|
||||||
|
right: 31px;
|
||||||
|
|
||||||
|
&:before,
|
||||||
|
&:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 16px;
|
||||||
|
height: 2px;
|
||||||
|
background: #263238;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
&:after {
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
font-family: "Inter", sans-serif;
|
font-family: "Inter", sans-serif;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@ -149,6 +159,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.start {
|
.start {
|
||||||
|
font-size: 12px;
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
width: 151px;
|
width: 151px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
BIN
src/images/ArrovLeftSlider.png
Normal file
BIN
src/images/ArrovLeftSlider.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 614 B |
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
|
|
||||||
import { AuthBox } from "../../components/AuthBox/AuthBox";
|
import { AuthBox } from "../../components/AuthBox/AuthBox";
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
.auth-developers {
|
.auth-developers {
|
||||||
|
font-family: "LabGrotesque", sans-serif;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@ -200,7 +201,7 @@
|
|||||||
&__partnersForDev {
|
&__partnersForDev {
|
||||||
background: #52b7098c;
|
background: #52b7098c;
|
||||||
color: #2d6505;
|
color: #2d6505;
|
||||||
margin-left: -40px;
|
margin-left: -35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__partnersForDev,
|
&__partnersForDev,
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
.auth-partners {
|
.auth-partners {
|
||||||
|
font-family: "LabGrotesque", sans-serif;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@ -302,7 +303,7 @@
|
|||||||
&__partnersForPart {
|
&__partnersForPart {
|
||||||
background: #406128;
|
background: #406128;
|
||||||
color: white;
|
color: white;
|
||||||
margin-left: -40px;
|
margin-left: -35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__partnersForPart,
|
&__partnersForPart,
|
||||||
|
@ -16,7 +16,7 @@ export const PartnerSettings = () => {
|
|||||||
<ProfileBreadcrumbs
|
<ProfileBreadcrumbs
|
||||||
links={[
|
links={[
|
||||||
{ name: "Главная", link: "/profile" },
|
{ name: "Главная", link: "/profile" },
|
||||||
{ name: "Данные моего персонала", link: "/profile/settings" },
|
{ name: "Настройка профиля", link: "/profile/settings" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<div className="partner-settings">
|
<div className="partner-settings">
|
||||||
|
@ -5,7 +5,7 @@ import {ProfileBreadcrumbs} from "../../components/ProfileBreadcrumbs/ProfileBre
|
|||||||
import { Footer } from "../../components/Footer/Footer";
|
import { Footer } from "../../components/Footer/Footer";
|
||||||
|
|
||||||
import ModalTiket from "../../components/UI/ModalTiket/ModalTiket";
|
import ModalTiket from "../../components/UI/ModalTiket/ModalTiket";
|
||||||
import ModalProject from "../../components/UI/ModalProject/ModalProject";
|
import ModalCreate from "../../components/UI/ModalCreate/ModalCreate";
|
||||||
|
|
||||||
import project from "../../images/trackerProject.svg";
|
import project from "../../images/trackerProject.svg";
|
||||||
import tasks from "../../images/trackerTasks.svg";
|
import tasks from "../../images/trackerTasks.svg";
|
||||||
@ -14,26 +14,28 @@ import avatarTest from "../../images/AvatarTest .png";
|
|||||||
import selectArrow from "../../images/select.svg";
|
import selectArrow from "../../images/select.svg";
|
||||||
import commentsBoard from "../../images/commentsBoard.svg";
|
import commentsBoard from "../../images/commentsBoard.svg";
|
||||||
import filesBoard from "../../images/filesBoard.svg";
|
import filesBoard from "../../images/filesBoard.svg";
|
||||||
import search from "../../images/search.svg"
|
import search from "../../images/search.svg";
|
||||||
|
|
||||||
import "./tracker.scss";
|
import "./tracker.scss";
|
||||||
|
import { useDispatch, useSelector } from "react-redux";
|
||||||
|
import { getProjects } from "../../redux/projectsTrackerSlice";
|
||||||
|
|
||||||
export const Tracker = () => {
|
export const Tracker = () => {
|
||||||
const [toggleTab, setToggleTab] = useState(1);
|
const [toggleTab, setToggleTab] = useState(1);
|
||||||
const [projects] = useState([
|
// const [projects] = useState([
|
||||||
{
|
// {
|
||||||
name: "Разработка трекера",
|
// name: "Разработка трекера",
|
||||||
count: 4,
|
// count: 4,
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
name: "Кинотеатр",
|
// name: "Кинотеатр",
|
||||||
count: 4,
|
// count: 4,
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
name: "Проект страхование",
|
// name: "Проект страхование",
|
||||||
count: 4,
|
// count: 4,
|
||||||
},
|
// },
|
||||||
]);
|
// ]);
|
||||||
const [tabTaskMok, setTabTaskMok] = useState([
|
const [tabTaskMok, setTabTaskMok] = useState([
|
||||||
{
|
{
|
||||||
name: "Открытые",
|
name: "Открытые",
|
||||||
@ -46,7 +48,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 1
|
id: 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
task: "PR - 2245",
|
task: "PR - 2245",
|
||||||
@ -55,7 +57,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 2
|
id: 2,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -70,7 +72,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 3
|
id: 3,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -85,7 +87,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 4
|
id: 4,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
task: "PR - 2245",
|
task: "PR - 2245",
|
||||||
@ -94,7 +96,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 5
|
id: 5,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
task: "PR - 2245",
|
task: "PR - 2245",
|
||||||
@ -103,7 +105,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 6
|
id: 6,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
task: "PR - 2245",
|
task: "PR - 2245",
|
||||||
@ -112,7 +114,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 9
|
id: 9,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -127,7 +129,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 7
|
id: 7,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
task: "PR - 2245",
|
task: "PR - 2245",
|
||||||
@ -136,7 +138,7 @@ export const Tracker = () => {
|
|||||||
files: 0,
|
files: 0,
|
||||||
avatarCreated: avatarTest,
|
avatarCreated: avatarTest,
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
id: 8
|
id: 8,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -146,184 +148,217 @@ export const Tracker = () => {
|
|||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PR - 2245",
|
name: "PR - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PK - 2245",
|
name: "PK - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PE - 2245",
|
name: "PE - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PA - 2245",
|
name: "PA - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PB - 2245",
|
name: "PB - 2245",
|
||||||
description: "Верстать часть таблицы. Сверстать часть таблицы",
|
description: "Верстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PC - 2245",
|
name: "PC - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PD - 2245",
|
name: "PD - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PA - 2245",
|
name: "PA - 2245",
|
||||||
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
description: "Сверстать часть таблицы. Сверстать часть таблицы",
|
||||||
dateComplete: '07/мар/23',
|
dateComplete: "07/мар/23",
|
||||||
avatarDo: avatarTest,
|
avatarDo: avatarTest,
|
||||||
},
|
},
|
||||||
])
|
]);
|
||||||
|
|
||||||
const [filterCompleteTasks, setFilterCompleteTasks] = useState(completeTasks)
|
const [filterCompleteTasks, setFilterCompleteTasks] = useState(completeTasks);
|
||||||
|
|
||||||
const [modalActiveTicket, setModalActiveTicket] = useState(false);
|
const [modalActiveTicket, setModalActiveTicket] = useState(false);
|
||||||
const [modalActiveProject, setModalActiveProject] = useState(false);
|
const [modalCreateProject, setModalCreateProject] = useState(false);
|
||||||
const [startWrapperIndex, setStartWrapperIndex] = useState(null)
|
const [modalCreateColl, setModalCreateColl] = useState(false);
|
||||||
const [wrapperHover, setWrapperHover] = useState([false, false, false, false])
|
|
||||||
|
const [startWrapperIndex, setStartWrapperIndex] = useState(null);
|
||||||
|
const [wrapperHover, setWrapperHover] = useState([
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
]);
|
||||||
|
|
||||||
|
const projects = useSelector(getProjects);
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
const toggleTabs = (index) => {
|
const toggleTabs = (index) => {
|
||||||
setToggleTab(index);
|
setToggleTab(index);
|
||||||
};
|
};
|
||||||
|
|
||||||
function toggleMoreTasks (wrapperIndex) {
|
function toggleMoreTasks(wrapperIndex) {
|
||||||
setTabTaskMok(prevArray => prevArray.map((elem, index) => {
|
setTabTaskMok((prevArray) =>
|
||||||
if (wrapperIndex === index) {
|
prevArray.map((elem, index) => {
|
||||||
return {...elem, open: !elem.open}
|
if (wrapperIndex === index) {
|
||||||
} else {
|
return { ...elem, open: !elem.open };
|
||||||
return elem
|
} else {
|
||||||
}
|
return elem;
|
||||||
}))
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function dragStartHandler(e, task, wrapperIndex) {
|
function dragStartHandler(e, task, wrapperIndex) {
|
||||||
setStartWrapperIndex({task: task, index: wrapperIndex})
|
setStartWrapperIndex({ task: task, index: wrapperIndex });
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
e.target.classList.add('tasks__board__item__hide')
|
e.target.classList.add("tasks__board__item__hide");
|
||||||
},0)
|
}, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
function dragEndHandler(e) {
|
function dragEndHandler(e) {
|
||||||
setWrapperHover(prevArray => prevArray.map((elem) => {
|
setWrapperHover((prevArray) =>
|
||||||
return false
|
prevArray.map((elem) => {
|
||||||
}))
|
return false;
|
||||||
e.target.classList.remove('tasks__board__item__hide')
|
})
|
||||||
|
);
|
||||||
|
e.target.classList.remove("tasks__board__item__hide");
|
||||||
}
|
}
|
||||||
|
|
||||||
function dragOverHandler(e) {
|
function dragOverHandler(e) {
|
||||||
e.preventDefault()
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
function dragEnterHandler(wrapperIndex) {
|
function dragEnterHandler(wrapperIndex) {
|
||||||
if (wrapperIndex === startWrapperIndex.index) {
|
if (wrapperIndex === startWrapperIndex.index) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
setWrapperHover(prevArray => prevArray.map((elem, index) => {
|
setWrapperHover((prevArray) =>
|
||||||
if (index === wrapperIndex) {
|
prevArray.map((elem, index) => {
|
||||||
return true
|
if (index === wrapperIndex) {
|
||||||
} else {
|
return true;
|
||||||
return false
|
} else {
|
||||||
}
|
return false;
|
||||||
}))
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function dragDropHandler(e, wrapperIndex) {
|
function dragDropHandler(e, wrapperIndex) {
|
||||||
e.preventDefault()
|
e.preventDefault();
|
||||||
if (startWrapperIndex.index === wrapperIndex) {
|
if (startWrapperIndex.index === wrapperIndex) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
setWrapperHover(prevArray => prevArray.map((elem) => {
|
setWrapperHover((prevArray) =>
|
||||||
return false
|
prevArray.map((elem) => {
|
||||||
}))
|
return false;
|
||||||
setTabTaskMok(prevArray => prevArray.map((elem, index) => {
|
})
|
||||||
if (index === wrapperIndex) {
|
);
|
||||||
return {...elem, tasks: [...elem.tasks, startWrapperIndex.task]}
|
setTabTaskMok((prevArray) =>
|
||||||
} else if (index === startWrapperIndex.index) {
|
prevArray.map((elem, index) => {
|
||||||
return {...elem, tasks: elem.tasks.filter((item) => {
|
if (index === wrapperIndex) {
|
||||||
return item.id !== startWrapperIndex.task.id
|
return { ...elem, tasks: [...elem.tasks, startWrapperIndex.task] };
|
||||||
}
|
} else if (index === startWrapperIndex.index) {
|
||||||
)}
|
return {
|
||||||
} else {
|
...elem,
|
||||||
return elem
|
tasks: elem.tasks.filter((item) => {
|
||||||
}
|
return item.id !== startWrapperIndex.task.id;
|
||||||
}))
|
}),
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
return elem;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function filterArchiveTasks(e) {
|
function filterArchiveTasks(e) {
|
||||||
setFilterCompleteTasks(completeTasks.filter((item) => {
|
setFilterCompleteTasks(
|
||||||
if (!e.target.value) {
|
completeTasks.filter((item) => {
|
||||||
return item
|
if (!e.target.value) {
|
||||||
}
|
return item;
|
||||||
if (item.name.toLowerCase().startsWith(e.target.value.toLowerCase()) || item.description.toLowerCase().startsWith(e.target.value.toLowerCase())) {
|
}
|
||||||
return item
|
if (
|
||||||
}
|
item.name.toLowerCase().startsWith(e.target.value.toLowerCase()) ||
|
||||||
}))
|
item.description
|
||||||
|
.toLowerCase()
|
||||||
|
.startsWith(e.target.value.toLowerCase())
|
||||||
|
) {
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function createProject() {
|
||||||
|
setModalCreateProject(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -381,11 +416,12 @@ export const Tracker = () => {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
<ModalProject
|
<ModalCreate
|
||||||
active={modalActiveProject}
|
active={modalCreateProject}
|
||||||
setActive={setModalActiveProject}
|
setActive={setModalCreateProject}
|
||||||
|
title={"Укажите название проекта:"}
|
||||||
/>
|
/>
|
||||||
<button onClick={() => setModalActiveProject(true)}>
|
<button onClick={createProject}>
|
||||||
<span>+</span>Создать проект
|
<span>+</span>Создать проект
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@ -397,8 +433,18 @@ export const Tracker = () => {
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<div className="tasks__head">
|
<div className="tasks__head">
|
||||||
|
<ModalCreate
|
||||||
|
active={modalCreateColl}
|
||||||
|
setActive={setModalCreateColl}
|
||||||
|
title={"Добавить колонку: "}
|
||||||
|
/>
|
||||||
<h4>Проект : Разработка трекера</h4>
|
<h4>Проект : Разработка трекера</h4>
|
||||||
<span className="tasks__head__add">+</span>
|
<span
|
||||||
|
className="tasks__head__add"
|
||||||
|
onClick={() => setModalCreateColl(true)}
|
||||||
|
>
|
||||||
|
+
|
||||||
|
</span>
|
||||||
<div className="tasks__head__persons">
|
<div className="tasks__head__persons">
|
||||||
<img src={avatarTest} alt="avatar" />
|
<img src={avatarTest} alt="avatar" />
|
||||||
<img src={avatarTest} alt="avatar" />
|
<img src={avatarTest} alt="avatar" />
|
||||||
@ -428,7 +474,13 @@ export const Tracker = () => {
|
|||||||
onDragOver={(e) => dragOverHandler(e)}
|
onDragOver={(e) => dragOverHandler(e)}
|
||||||
onDragEnter={(e) => dragEnterHandler(wrapperIndex)}
|
onDragEnter={(e) => dragEnterHandler(wrapperIndex)}
|
||||||
onDrop={(e) => dragDropHandler(e, wrapperIndex)}
|
onDrop={(e) => dragDropHandler(e, wrapperIndex)}
|
||||||
className={`tasks__board ${section.tasks.length >= 3 ? 'tasks__board__more' : ''} ${wrapperHover[wrapperIndex] ? 'tasks__board__hover' : ''}`}
|
className={`tasks__board ${
|
||||||
|
section.tasks.length >= 3 ? "tasks__board__more" : ""
|
||||||
|
} ${
|
||||||
|
wrapperHover[wrapperIndex]
|
||||||
|
? "tasks__board__hover"
|
||||||
|
: ""
|
||||||
|
}`}
|
||||||
>
|
>
|
||||||
<div className="board__head">
|
<div className="board__head">
|
||||||
<span className={wrapperIndex === 3 ? "done" : ""}>
|
<span className={wrapperIndex === 3 ? "done" : ""}>
|
||||||
@ -442,7 +494,7 @@ export const Tracker = () => {
|
|||||||
{section.tasks.map((task, index) => {
|
{section.tasks.map((task, index) => {
|
||||||
if (index > 2) {
|
if (index > 2) {
|
||||||
if (!section.open) {
|
if (!section.open) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
@ -450,7 +502,9 @@ export const Tracker = () => {
|
|||||||
key={index}
|
key={index}
|
||||||
className="tasks__board__item"
|
className="tasks__board__item"
|
||||||
draggable={true}
|
draggable={true}
|
||||||
onDragStart={(e) => dragStartHandler(e, task, wrapperIndex)}
|
onDragStart={(e) =>
|
||||||
|
dragStartHandler(e, task, wrapperIndex)
|
||||||
|
}
|
||||||
onDragEnd={(e) => dragEndHandler(e)}
|
onDragEnd={(e) => dragEndHandler(e)}
|
||||||
onClick={() => setModalActiveTicket(true)}
|
onClick={() => setModalActiveTicket(true)}
|
||||||
>
|
>
|
||||||
@ -479,7 +533,16 @@ export const Tracker = () => {
|
|||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
{section.tasks.length > 3 && (
|
{section.tasks.length > 3 && (
|
||||||
<span className={section.open ? 'lessItems openItems' : 'moreItems openItems'} onClick={() => toggleMoreTasks(wrapperIndex)}>{section.open ? '-' : '+'}</span>
|
<span
|
||||||
|
className={
|
||||||
|
section.open
|
||||||
|
? "lessItems openItems"
|
||||||
|
: "moreItems openItems"
|
||||||
|
}
|
||||||
|
onClick={() => toggleMoreTasks(wrapperIndex)}
|
||||||
|
>
|
||||||
|
{section.open ? "-" : "+"}
|
||||||
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@ -489,30 +552,35 @@ export const Tracker = () => {
|
|||||||
<div
|
<div
|
||||||
className={
|
className={
|
||||||
toggleTab === 3
|
toggleTab === 3
|
||||||
? "tracker__tabs__content__archive tasks active__content"
|
? "tracker__tabs__content__archive tasks active__content"
|
||||||
: "tracker__tabs__content__projects"
|
: "tracker__tabs__content__projects"
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<div className='archive__title'>
|
<div className="archive__title">
|
||||||
<h3>Архив:</h3>
|
<h3>Архив:</h3>
|
||||||
<p>{filterCompleteTasks.length} задач(а)</p>
|
<p>{filterCompleteTasks.length} задач(а)</p>
|
||||||
<div className='archive__search'>
|
<div className="archive__search">
|
||||||
<input type='text' onChange={(event) => filterArchiveTasks(event)} />
|
<input
|
||||||
<img src={search} alt='search' />
|
type="text"
|
||||||
|
onChange={(event) => filterArchiveTasks(event)}
|
||||||
|
/>
|
||||||
|
<img src={search} alt="search" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='archive__tasksWrapper'>
|
<div className="archive__tasksWrapper">
|
||||||
{filterCompleteTasks.map((task, index) => {
|
{filterCompleteTasks.map((task, index) => {
|
||||||
return <div className='archive__completeTask' key={index}>
|
return (
|
||||||
<div className='archive__completeTask__description'>
|
<div className="archive__completeTask" key={index}>
|
||||||
<p>{task.description}</p>
|
<div className="archive__completeTask__description">
|
||||||
<p className='date'>{task.dateComplete}</p>
|
<p>{task.description}</p>
|
||||||
</div>
|
<p className="date">{task.dateComplete}</p>
|
||||||
<div className='archive__completeTask__info'>
|
</div>
|
||||||
<img src={task.avatarDo} alt='avatar' />
|
<div className="archive__completeTask__info">
|
||||||
<p>{task.name}</p>
|
<img src={task.avatarDo} alt="avatar" />
|
||||||
</div>
|
<p>{task.name}</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
34
src/redux/projectsTrackerSlice.js
Normal file
34
src/redux/projectsTrackerSlice.js
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { createSlice } from "@reduxjs/toolkit";
|
||||||
|
|
||||||
|
const initialState = {
|
||||||
|
project: [
|
||||||
|
{
|
||||||
|
name: "Разработка трекера",
|
||||||
|
count: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Кинотеатр",
|
||||||
|
count: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Проект страхование",
|
||||||
|
count: 4,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
export const projectsTrackerSlice = createSlice({
|
||||||
|
name: "projectsTracker",
|
||||||
|
initialState,
|
||||||
|
reducers: {
|
||||||
|
setProject: (state, action) => {
|
||||||
|
state.project.push(action.payload);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export const { setProject } = projectsTrackerSlice.actions;
|
||||||
|
|
||||||
|
export const getProjects = (state) => state.tracker.project;
|
||||||
|
|
||||||
|
export default projectsTrackerSlice.reducer;
|
@ -1,10 +1,10 @@
|
|||||||
import { configureStore } from '@reduxjs/toolkit';
|
import { configureStore } from "@reduxjs/toolkit";
|
||||||
import outstaffingReducer from '../redux/outstaffingSlice';
|
import outstaffingReducer from "../redux/outstaffingSlice";
|
||||||
import loaderReducer from '../redux/loaderSlice';
|
import loaderReducer from "../redux/loaderSlice";
|
||||||
import roleReducer from '../redux/roleSlice';
|
import roleReducer from "../redux/roleSlice";
|
||||||
import reportReducer from '../redux/reportSlice';
|
import reportReducer from "../redux/reportSlice";
|
||||||
import quizSlice from '../redux/quizSlice';
|
import quizSlice from "../redux/quizSlice";
|
||||||
|
import projectsTrackerSlice from "../redux/projectsTrackerSlice";
|
||||||
|
|
||||||
export const store = configureStore({
|
export const store = configureStore({
|
||||||
reducer: {
|
reducer: {
|
||||||
@ -12,10 +12,11 @@ export const store = configureStore({
|
|||||||
loader: loaderReducer,
|
loader: loaderReducer,
|
||||||
role: roleReducer,
|
role: roleReducer,
|
||||||
report: reportReducer,
|
report: reportReducer,
|
||||||
|
tracker: projectsTrackerSlice,
|
||||||
quiz: quizSlice,
|
quiz: quizSlice,
|
||||||
},
|
},
|
||||||
middleware: getDefaultMiddleware =>
|
middleware: (getDefaultMiddleware) =>
|
||||||
getDefaultMiddleware({
|
getDefaultMiddleware({
|
||||||
serializableCheck: false,
|
serializableCheck: false,
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user