Compare commits

...

2 Commits

Author SHA1 Message Date
Victor Batischev
7a5d6fc9ec fix tracker card 2024-01-30 18:28:57 +03:00
Victor Batischev
c59d2100d2 small fix 2024-01-30 17:40:40 +03:00
12 changed files with 65 additions and 66 deletions

View File

@ -75,7 +75,7 @@ const Calendar = () => {
}}
/>
<p className="calendar__hours">
{month} : <span> 60 часов </span>
{month}: <span> 60 часов </span>
</p>
</div>
</div>

View File

@ -127,7 +127,7 @@ const Candidate = () => {
<img src={rightArrow} alt="" />
</div>
<div className="candidate__arrow-sp">
<span>Вернуться к списку</span>
<span>К списку кандидатов</span>
</div>
</div>
</div>

View File

@ -601,7 +601,7 @@ export const ModalTiсket = ({
<div className="content">
<h3 className="title-project">
<img src={category} className="title-project__category"></img>
Проект: {projectName}
{projectName}
<Link
to={`/tracker/task/${task.id}`}
className="title-project__full"
@ -758,23 +758,28 @@ export const ModalTiсket = ({
<div className="workers">
<div className="workers_box task__info">
<span className="exit" onClick={() => setActive(false)}></span>
<p className="workers__creator">Создатель : {task.user?.fio}</p>
<p className="workers__creator">Создатель: {task.user?.fio}</p>
{executor ? (
<div className="executor">
<p>Исполнитель: {executor.fio}</p>
<img
src={
executor?.avatar ? urlForLocal(executor.avatar) : avatarMok
}
alt="avatar"
/>
<img
src={close}
className="delete"
onClick={() => deleteTaskExecutor()}
/>
</div>
<>
<h5>Исполнитель: </h5>
<div className="executor">
<p>{executor.fio}</p>
<img
src={
executor?.avatar
? urlForLocal(executor.avatar)
: avatarMok
}
alt="avatar"
/>
<img
src={close}
className="delete"
onClick={() => deleteTaskExecutor()}
/>
</div>
</>
) : (
<div className="add-worker moreItems ">
<button
@ -817,7 +822,7 @@ export const ModalTiсket = ({
{Boolean(members.length) && (
<div className="members">
<p>Участники:</p>
<h5>Участники:</h5>
<div className="members__list">
{members.map((member) => {
return (
@ -912,7 +917,7 @@ export const ModalTiсket = ({
</div>
<div className="time">
<img src={watch}></img>
<span>Длительность : </span>
<span>Длительность: </span>
<p>
{correctTimerTime(currentTimerCount.hours)}:
{correctTimerTime(currentTimerCount.minute)}:

View File

@ -63,9 +63,10 @@
color: #1458dd;
font-weight: 700;
font-size: 22px;
margin-left: 15px;
&__category {
margin-right: 17px;
margin-right: 5px;
}
h2,
@ -613,7 +614,7 @@
cursor: pointer;
position: absolute;
top: 25px;
right: 30px;
right: 20px;
width: 13px;
height: 13px;
display: flex;
@ -654,8 +655,7 @@
display: flex;
align-items: center;
position: relative;
margin-bottom: 5px;
margin-top: 12px;
margin-top: 10px;
span {
color: #000000;
@ -688,7 +688,7 @@
.start {
font-size: 12px;
margin-top: 25px;
margin-top: 15px;
width: 151px;
height: 40px;
border: none;
@ -964,11 +964,11 @@
}
&_box {
padding: 25px 85px 25px 40px;
padding: 25px 0px 10px 40px;
border-bottom: 1px solid #f1f1f1;
&-middle {
padding: 0px 40px 25px 40px;
padding: 0px 0px 10px 35px;
border-bottom: 1px solid #f1f1f1;
}
@ -978,8 +978,8 @@
flex-direction: column;
position: relative;
row-gap: 15px;
padding: 22px 40px 0 40px;
row-gap: 10px;
padding: 10px 40px 0px 40px;
border-radius: 10px;
margin-bottom: 10px;
@ -1170,10 +1170,10 @@
}
&-bottom {
padding: 10px 110px 15px 56px;
padding: 0px 110px 10px 35px;
font-weight: 400;
font-size: 14px;
line-height: 38px;
line-height: 32px;
div {
display: flex;

View File

@ -679,12 +679,12 @@ export const TicketFullScreen = () => {
<div className="tracker__tabs__content content-tabs">
<div className="tasks__head">
<div className="tasks__head__wrapper tasks__head__wrapper__fullScreen">
<h5>Проект : {projectInfo.name}</h5>
<h5>{projectInfo.name}</h5>
<TrackerModal
active={modalAddWorker}
setActive={setModalAddWorker}
></TrackerModal>
/>
<div className="tasks__head__persons">
<div className="projectPersons">
@ -777,7 +777,7 @@ export const TicketFullScreen = () => {
className="link"
>
<div className="tasks__head__back">
<p>Вернуться на проект</p>
<p>К списку задач</p>
<img src={arrow} alt="arrow" />
</div>
</Link>

View File

@ -265,9 +265,7 @@ export const TrackerModal = ({
}
function createProject() {
if (nameProject === "") {
return;
} else {
if (nameProject !== "") {
apiRequest("/project/create", {
method: "POST",
data: {
@ -788,7 +786,7 @@ export const TrackerModal = ({
</div>
</div>
<BaseButton styles={"button-add"} onClick={createTab}>
Создать
Добавить
</BaseButton>
</div>
)}

View File

@ -273,15 +273,15 @@ export const ProfileCalendarComponent = React.memo(
? `${getCorrectDate(startDate)} - ${getCorrectDate(endDate)}`
: `${getCorrectDate(endDate)} - ${getCorrectDate(startDate)}`
: activePeriod
? "Выберите диапазон на календаре"
: "Выбрать диапазон"}
? "Выберите диапазон на календаре"
: "Выбрать диапазон"}
</span>
<span>
{totalRangeHours
? `${totalRangeHours} ${hourOfNum(totalRangeHours)}`
: endDate
? "0 часов"
: ""}
? "0 часов"
: ""}
</span>
{endDate && (
<BaseButton

View File

@ -64,7 +64,7 @@ export const ProjectTiket = ({ project, index }) => {
dispatch(deleteProject(project));
showNotification({
show: true,
text: "Проект успешно была перемещена в архив",
text: "Проект успешно был перемещен в архив",
type: "archive"
});
});

View File

@ -489,7 +489,7 @@ export const ProjectTracker = () => {
<div className="tracker__tabs__content__tasks tasks active__content">
<div className="tasks__head">
<div className="tasks__head__wrapper">
<h5>Проект : {projectBoard.name}</h5>
<h5>{projectBoard.name}</h5>
<div className="tasks__head__add">
<BaseButton
@ -765,7 +765,7 @@ export const ProjectTracker = () => {
)}
</div>
<Link to="/profile/tracker" className="tasks__head__back">
<p>Вернуться на проекты</p>
<p>К списку проектов</p>
<img src={arrow} alt="arrow" />
</Link>
</div>

View File

@ -114,7 +114,7 @@ const Statistics = () => {
<img src={arrow} alt="#" />
<Link to={`/profile/tracker`} className="return-text">
вернуться на все проекты
К списку проектов
</Link>
</div>
</div>

View File

@ -233,10 +233,7 @@ export const Tracker = () => {
}}
>
<img src={addProjectImg} alt="#"></img>
<p className="createProjectBtn__text">
Ставьте задачи, следите за прогрессом, ведите учёт рабочего
времени
</p>
<p className="createProjectBtn__text">Добавить проект</p>
</BaseButton>
</>
)}
@ -321,11 +318,11 @@ export const Tracker = () => {
<div className="taskList__end">
<BaseButton styles={"close-day"}>
Закрыть сегоднящний день
Закрыть сегодняшний день
</BaseButton>
<p>
Нажимая кнопку - Закрыть сегодняшний день - вы отправляете
потрачеенное время на сверку
Нажимая кнопку Закрыть сегодняшний день, вы отправляете
потраченное время на сверку
</p>
</div>
</div>

View File

@ -276,7 +276,7 @@
&__add {
display: flex;
margin: 0 15px 0 10px;
margin: 0 10px 0 15px;
.button-add-column {
width: 33px;
@ -288,7 +288,7 @@
}
p {
margin-left: 14px;
margin-left: 5px;
font-weight: 300;
font-size: 14px;
line-height: 17px;
@ -521,7 +521,7 @@
margin: 0 10px;
column-gap: 5px;
cursor: pointer;
padding: 5px 20px;
padding: 5px;
border-radius: 8px;
border: 1px solid #e3e2e2;
max-height: 30px;
@ -542,7 +542,7 @@
align-items: center;
justify-content: center;
display: flex;
background: #cbd9f9;
background: #99b4f3;
color: white;
font-size: 14px;
transition: all 0.15s ease;
@ -798,7 +798,7 @@
&__item {
width: 328px;
padding: 16px;
padding: 4px 10px;
position: relative;
box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06),
0px 5px 3px -2px rgba(0, 0, 0, 0.02);
@ -854,7 +854,7 @@
align-items: center;
justify-content: center;
font-size: 20px;
padding-bottom: 13px;
padding-bottom: 10px;
width: 24px;
height: 24px;
border: 1px solid #dddddd;
@ -862,11 +862,11 @@
}
&__description {
margin: 8px 0 4px;
margin: 4px 0;
color: #5c6165;
font-weight: 400;
font-size: 14px;
line-height: 140%;
line-height: 110%;
max-height: 100px;
overflow: hidden;
text-overflow: ellipsis;
@ -955,12 +955,11 @@
&__executor {
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px 0 15px;
padding-right: 10px;
margin-top: 2px;
font-size: 14px;
font-weight: 500;
column-gap: 5px;
span {
max-width: 210px;
@ -980,7 +979,7 @@
flex-wrap: wrap;
column-gap: 6px;
row-gap: 3px;
margin: 5px 0 10px;
margin-bottom: 5px;
.tagItem {
padding: 3px 10px;
@ -1071,7 +1070,7 @@
img {
width: 27px;
height: 27px;
margin-right: 17px;
margin-right: 5px;
}
p {