2023-04-26 21:29:50 +03:00
|
|
|
import React, { useEffect, useState } from "react";
|
|
|
|
import { useParams, Link, useNavigate, Navigate } from "react-router-dom";
|
|
|
|
import { useSelector, useDispatch } from "react-redux";
|
2023-01-16 19:57:55 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
import SkillSection from "../SkillSection/SkillSection";
|
|
|
|
import Sidebar from "../CandidateSidebar/CandidateSidebar";
|
|
|
|
import { ProfileHeader } from "../ProfileHeader/ProfileHeader";
|
|
|
|
import { ProfileBreadcrumbs } from "../ProfileBreadcrumbs/ProfileBreadcrumbs";
|
|
|
|
import { Footer } from "../Footer/Footer";
|
2023-01-16 19:57:55 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
import {
|
|
|
|
currentCandidate,
|
|
|
|
selectCurrentCandidate,
|
|
|
|
} from "../../redux/outstaffingSlice";
|
2023-01-16 19:57:55 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
import { apiRequest } from "../../api/request";
|
|
|
|
import { createMarkup } from "../../helper";
|
2023-01-16 19:57:55 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
import gitImgItem from "../../images/gitItemImg.png";
|
|
|
|
import rectangle from "../../images/rectangle_secondPage.png";
|
|
|
|
import front from "../Outstaffing/images/front_end.png";
|
|
|
|
import back from "../Outstaffing/images/back_end.png";
|
|
|
|
import design from "../Outstaffing/images/design.png";
|
|
|
|
import rightArrow from "../../images/arrowRight.png";
|
2023-04-05 19:38:38 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
import { LEVELS, SKILLS } from "../../constants/constants";
|
2023-01-16 19:57:55 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
import "./candidate.scss";
|
|
|
|
import { Navigation } from "../Navigation/Navigation";
|
2021-08-18 15:56:24 +03:00
|
|
|
|
2021-07-02 16:02:47 +03:00
|
|
|
const Candidate = () => {
|
2023-04-26 21:29:50 +03:00
|
|
|
if (localStorage.getItem("role_status") !== "18") {
|
|
|
|
return <Navigate to="/profile" replace />;
|
2023-02-27 16:50:32 +03:00
|
|
|
}
|
2023-04-26 21:29:50 +03:00
|
|
|
const { id: candidateId } = useParams();
|
2023-01-18 17:37:52 +03:00
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
const navigate = useNavigate();
|
2023-01-18 17:37:52 +03:00
|
|
|
|
2022-11-22 16:43:17 +03:00
|
|
|
const dispatch = useDispatch();
|
2023-01-16 19:57:55 +03:00
|
|
|
|
2023-01-18 17:37:52 +03:00
|
|
|
const currentCandidateObj = useSelector(selectCurrentCandidate);
|
|
|
|
|
2022-11-22 16:43:17 +03:00
|
|
|
const [activeSnippet, setActiveSnippet] = useState(true);
|
2021-07-02 16:02:47 +03:00
|
|
|
|
2021-08-18 15:56:24 +03:00
|
|
|
useEffect(() => {
|
2023-04-26 21:29:50 +03:00
|
|
|
window.scrollTo(0, 0);
|
2022-11-22 16:43:17 +03:00
|
|
|
}, []);
|
2021-08-18 15:56:24 +03:00
|
|
|
|
2021-07-09 14:01:11 +03:00
|
|
|
useEffect(() => {
|
2023-01-16 19:57:55 +03:00
|
|
|
apiRequest(`/profile/${candidateId}`, {
|
2021-11-30 17:00:58 +03:00
|
|
|
params: Number(candidateId),
|
2023-04-26 21:29:50 +03:00
|
|
|
}).then((el) => dispatch(currentCandidate(el)));
|
2022-11-22 16:43:17 +03:00
|
|
|
}, [dispatch, candidateId]);
|
2021-07-05 12:33:24 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
const { position_id, skillValues, vc_text: text } = currentCandidateObj;
|
2021-06-09 13:12:01 +03:00
|
|
|
|
2021-07-09 14:01:11 +03:00
|
|
|
const setStyles = () => {
|
|
|
|
const styles = {
|
2023-04-26 21:29:50 +03:00
|
|
|
classes: "",
|
|
|
|
header: "",
|
|
|
|
img: "",
|
2022-11-22 16:43:17 +03:00
|
|
|
};
|
2021-06-09 13:12:01 +03:00
|
|
|
|
2021-07-09 14:01:11 +03:00
|
|
|
switch (Number(position_id)) {
|
|
|
|
case 1: {
|
2023-04-26 21:29:50 +03:00
|
|
|
styles.classes = "back";
|
|
|
|
styles.header = "Backend";
|
2022-11-22 16:43:17 +03:00
|
|
|
styles.img = back;
|
2021-07-09 14:01:11 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
break;
|
2021-07-09 14:01:11 +03:00
|
|
|
}
|
|
|
|
case 2: {
|
2023-04-26 21:29:50 +03:00
|
|
|
styles.classes = "des";
|
|
|
|
styles.header = "Frontend";
|
2022-11-22 16:43:17 +03:00
|
|
|
styles.img = front;
|
2023-04-26 21:29:50 +03:00
|
|
|
break;
|
2021-07-09 14:01:11 +03:00
|
|
|
}
|
|
|
|
case 3: {
|
2023-04-26 21:29:50 +03:00
|
|
|
styles.classes = "front";
|
|
|
|
styles.header = "Design";
|
2022-11-22 16:43:17 +03:00
|
|
|
styles.img = design;
|
2023-04-26 21:29:50 +03:00
|
|
|
break;
|
2021-07-09 14:01:11 +03:00
|
|
|
}
|
|
|
|
default:
|
2023-04-26 21:29:50 +03:00
|
|
|
break;
|
2021-07-09 14:01:11 +03:00
|
|
|
}
|
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
return styles;
|
2022-11-22 16:43:17 +03:00
|
|
|
};
|
2021-05-26 13:35:57 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
const { header, img, classes } = setStyles();
|
2022-11-22 16:43:17 +03:00
|
|
|
|
2021-05-26 13:35:57 +03:00
|
|
|
return (
|
2023-04-26 21:29:50 +03:00
|
|
|
<div className="candidate__wrapper">
|
|
|
|
<ProfileHeader />
|
|
|
|
<Navigation />
|
|
|
|
<div className="container candidate">
|
|
|
|
<ProfileBreadcrumbs
|
|
|
|
links={[
|
|
|
|
{ name: "Главная", link: "/profile" },
|
|
|
|
{
|
|
|
|
name: "Каталог свободных специалистов",
|
|
|
|
link: "/profile/catalog",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: `${currentCandidateObj.specification} ${
|
|
|
|
SKILLS[currentCandidateObj.position_id]
|
|
|
|
}, ${LEVELS[currentCandidateObj.level]}`,
|
|
|
|
link: `/candidate/${currentCandidateObj.id}`,
|
|
|
|
},
|
2023-04-05 19:38:38 +03:00
|
|
|
]}
|
2023-04-26 21:29:50 +03:00
|
|
|
/>
|
|
|
|
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12 candidate__header">
|
|
|
|
<div className="candidate__header__left">
|
|
|
|
<h3>
|
|
|
|
{currentCandidateObj.specification} {" "}
|
|
|
|
{SKILLS[currentCandidateObj.position_id]} {" "}
|
|
|
|
{LEVELS[currentCandidateObj.level]}
|
|
|
|
</h3>
|
|
|
|
<div
|
|
|
|
className="candidate__arrow"
|
|
|
|
onClick={() => navigate("/profile/catalog")}
|
|
|
|
>
|
|
|
|
<div className="candidate__arrow-img">
|
|
|
|
<img src={rightArrow} alt="" />
|
|
|
|
</div>
|
|
|
|
<div className="candidate__arrow-sp">
|
|
|
|
<span>Вернуться к списку</span>
|
2023-01-18 17:37:52 +03:00
|
|
|
</div>
|
2021-05-26 17:41:11 +03:00
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
</div>
|
2023-01-18 17:37:52 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
<div className="candidate__icon">
|
|
|
|
<h3>{header}</h3>
|
|
|
|
<img className={classes} src={img} alt="" />
|
2021-11-30 17:00:58 +03:00
|
|
|
</div>
|
2021-05-26 17:41:11 +03:00
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
</div>
|
|
|
|
<div className="candidate__main">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12 col-xl-4">
|
|
|
|
<Sidebar
|
|
|
|
candidate={currentCandidateObj}
|
|
|
|
position
|
|
|
|
activeSnippet={activeSnippet}
|
|
|
|
setActiveSnippet={setActiveSnippet}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{activeSnippet ? (
|
|
|
|
<div className="col-12 col-xl-8">
|
|
|
|
<div className="candidate__main-description">
|
|
|
|
<img src={rectangle} alt="" />
|
|
|
|
<p className="candidate__hashtag"># Описание опыта</p>
|
|
|
|
{text ? (
|
|
|
|
<div
|
|
|
|
className="candidate__text"
|
|
|
|
dangerouslySetInnerHTML={createMarkup(text)}
|
|
|
|
></div>
|
|
|
|
) : (
|
|
|
|
<p className="candidate__text-secondary">
|
|
|
|
{currentCandidateObj.vc_text
|
|
|
|
? currentCandidateObj.vc_text
|
|
|
|
: "Описание отсутствует..."}
|
|
|
|
</p>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<SkillSection skillsArr={skillValues} />
|
|
|
|
</div>
|
2023-01-18 17:37:52 +03:00
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
) : (
|
|
|
|
<div className="col-12 col-xl-8">
|
|
|
|
<div className="candidate__works works">
|
|
|
|
<div className="works__body">
|
|
|
|
<div className="works__body__info">
|
|
|
|
<p>Страница портфолио кода разработчика</p>
|
|
|
|
</div>
|
|
|
|
<div className="works__item item-works">
|
|
|
|
<Link to="/" className="item-works__body">
|
|
|
|
<div className="item-works__body__head">
|
|
|
|
<div className="item-works__body__info">
|
|
|
|
<img src={gitImgItem} alt="img" />
|
|
|
|
<div className="item-works__body__project">
|
|
|
|
<h5>cybershop-api</h5>
|
|
|
|
<p>Реактивная социальная сеть</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="item-works__body__head__arrow">
|
|
|
|
<img src={rightArrow} alt="arrow" />
|
2023-01-18 17:37:52 +03:00
|
|
|
</div>
|
2022-11-22 16:43:17 +03:00
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
<span>JavaScript </span>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
<div className="works__item item-works">
|
|
|
|
<Link to="/" className="item-works__body">
|
|
|
|
<div className="item-works__body__head">
|
|
|
|
<div className="item-works__body__info">
|
|
|
|
<img src={gitImgItem} alt="img" />
|
|
|
|
<div className="item-works__body__project">
|
|
|
|
<h5>cybershop-api</h5>
|
|
|
|
<p>Реактивная социальная сеть</p>
|
2022-11-22 16:43:17 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
<div className="item-works__body__head__arrow">
|
|
|
|
<img src={rightArrow} alt="arrow" />
|
|
|
|
</div>
|
2022-11-22 16:43:17 +03:00
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
<span>JavaScript </span>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
<div className="works__item item-works">
|
|
|
|
<Link to="/" className="item-works__body">
|
|
|
|
<div className="item-works__body__head">
|
|
|
|
<div className="item-works__body__info">
|
|
|
|
<img src={gitImgItem} alt="img" />
|
|
|
|
<div className="item-works__body__project">
|
|
|
|
<h5>cybershop-api</h5>
|
|
|
|
<p>Реактивная социальная сеть</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="item-works__body__head__arrow">
|
|
|
|
<img src={rightArrow} alt="arrow" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<span>JavaScript </span>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
2021-05-26 17:41:11 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
<Footer />
|
2023-04-05 19:38:38 +03:00
|
|
|
</div>
|
2023-04-26 21:29:50 +03:00
|
|
|
</div>
|
|
|
|
);
|
2022-11-22 16:43:17 +03:00
|
|
|
};
|
2021-05-26 13:35:57 +03:00
|
|
|
|
2023-04-26 21:29:50 +03:00
|
|
|
export default Candidate;
|