2022-11-22 16:43:17 +03:00
|
|
|
|
import React, {useEffect} from 'react'
|
2023-01-13 13:02:48 +03:00
|
|
|
|
import {useParams, Link, useNavigate} from 'react-router-dom'
|
2022-11-22 16:43:17 +03:00
|
|
|
|
import {useSelector, useDispatch} from 'react-redux'
|
2021-11-30 17:00:58 +03:00
|
|
|
|
import {
|
|
|
|
|
currentCandidate,
|
|
|
|
|
selectCurrentCandidate,
|
|
|
|
|
auth
|
|
|
|
|
} from '../../redux/outstaffingSlice'
|
2022-12-28 09:45:26 +03:00
|
|
|
|
import {getRole} from '../../redux/roleSlice'
|
|
|
|
|
import {useState} from 'react'
|
|
|
|
|
import {createMarkup} from "../../helper";
|
2021-11-30 17:00:58 +03:00
|
|
|
|
import arrow from '../../images/right-arrow.png'
|
|
|
|
|
import rectangle from '../../images/rectangle_secondPage.png'
|
|
|
|
|
import Sidebar from '../CandidateSidebar/CandidateSidebar'
|
|
|
|
|
import SkillSection from '../SkillSection/SkillSection'
|
|
|
|
|
import front from '../../images/front_end.png'
|
|
|
|
|
import back from '../../images/back_end.png'
|
|
|
|
|
import design from '../../images/design.png'
|
2022-11-22 16:43:17 +03:00
|
|
|
|
import {fetchGet} from '../../server/server'
|
|
|
|
|
import {Footer} from '../Footer/Footer'
|
2021-11-30 17:00:58 +03:00
|
|
|
|
|
|
|
|
|
import './candidate.scss'
|
2021-08-18 15:56:24 +03:00
|
|
|
|
|
2021-07-02 16:02:47 +03:00
|
|
|
|
const Candidate = () => {
|
2022-11-22 16:43:17 +03:00
|
|
|
|
const {id: candidateId} = useParams();
|
2023-01-13 13:02:48 +03:00
|
|
|
|
const navigate = useNavigate();
|
2022-11-22 16:43:17 +03:00
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
const role = useSelector(getRole);
|
|
|
|
|
const [activeSnippet, setActiveSnippet] = useState(true);
|
2021-07-02 16:02:47 +03:00
|
|
|
|
|
2021-08-18 15:56:24 +03:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
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(() => {
|
2021-11-30 17:00:58 +03:00
|
|
|
|
fetchGet({
|
2021-12-07 10:58:19 +03:00
|
|
|
|
link: `${process.env.REACT_APP_API_URL}/api/profile/${candidateId}`,
|
2021-11-30 17:00:58 +03:00
|
|
|
|
params: Number(candidateId),
|
|
|
|
|
role,
|
|
|
|
|
logout: () => dispatch(auth(false))
|
|
|
|
|
}).then((el) => dispatch(currentCandidate(el)))
|
2022-11-22 16:43:17 +03:00
|
|
|
|
}, [dispatch, candidateId]);
|
2021-07-05 12:33:24 +03:00
|
|
|
|
|
2022-11-22 16:43:17 +03:00
|
|
|
|
const currentCandidateObj = useSelector(selectCurrentCandidate);
|
2021-05-28 16:21:28 +03:00
|
|
|
|
|
2022-11-22 16:43:17 +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 = {
|
|
|
|
|
classes: '',
|
|
|
|
|
header: '',
|
2021-11-30 17:00:58 +03:00
|
|
|
|
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: {
|
2022-11-22 16:43:17 +03:00
|
|
|
|
styles.classes = 'back';
|
|
|
|
|
styles.header = 'Backend';
|
|
|
|
|
styles.img = back;
|
2021-07-09 14:01:11 +03:00
|
|
|
|
|
2021-11-30 17:00:58 +03:00
|
|
|
|
break
|
2021-07-09 14:01:11 +03:00
|
|
|
|
}
|
|
|
|
|
case 2: {
|
2022-11-22 16:43:17 +03:00
|
|
|
|
styles.classes = 'des';
|
|
|
|
|
styles.header = 'Frontend';
|
|
|
|
|
styles.img = front;
|
2021-11-30 17:00:58 +03:00
|
|
|
|
break
|
2021-07-09 14:01:11 +03:00
|
|
|
|
}
|
|
|
|
|
case 3: {
|
2022-11-22 16:43:17 +03:00
|
|
|
|
styles.classes = 'front';
|
|
|
|
|
styles.header = 'Design';
|
|
|
|
|
styles.img = design;
|
2021-11-30 17:00:58 +03:00
|
|
|
|
break
|
2021-07-09 14:01:11 +03:00
|
|
|
|
}
|
|
|
|
|
default:
|
2021-11-30 17:00:58 +03:00
|
|
|
|
break
|
2021-07-09 14:01:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-30 17:00:58 +03:00
|
|
|
|
return styles
|
2022-11-22 16:43:17 +03:00
|
|
|
|
};
|
2021-05-26 13:35:57 +03:00
|
|
|
|
|
2022-11-22 16:43:17 +03:00
|
|
|
|
const {header, img, classes} = setStyles();
|
|
|
|
|
|
2021-05-26 13:35:57 +03:00
|
|
|
|
return (
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<div className='candidate'>
|
|
|
|
|
<div className='row'>
|
|
|
|
|
<div className='col-12'>
|
|
|
|
|
<div className='candidate__title'>
|
|
|
|
|
<h2>
|
|
|
|
|
<span>Аутстаффинг</span> it-персонала
|
|
|
|
|
</h2>
|
|
|
|
|
</div>
|
2021-05-26 17:41:11 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-11-30 17:00:58 +03:00
|
|
|
|
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<div className='row'>
|
|
|
|
|
<div className='col-12 candidate__header'>
|
|
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
|
<div className='candidate__arrow' onClick={() => navigate('/')}>
|
2021-11-30 17:00:58 +03:00
|
|
|
|
<div className='candidate__arrow-img'>
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<img src={arrow} alt=''/>
|
2021-05-26 17:41:11 +03:00
|
|
|
|
</div>
|
2021-11-30 17:00:58 +03:00
|
|
|
|
<div className='candidate__arrow-sp'>
|
|
|
|
|
<span>Вернуться к списку</span>
|
2021-05-26 17:41:11 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-11-30 17:00:58 +03:00
|
|
|
|
|
|
|
|
|
<div className='candidate__icon'>
|
|
|
|
|
<h3>{header}</h3>
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<img className={classes} src={img} alt=''/>
|
2021-11-30 17:00:58 +03:00
|
|
|
|
</div>
|
2022-11-22 16:43:17 +03:00
|
|
|
|
|
2021-05-26 17:41:11 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<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>
|
|
|
|
|
)}
|
|
|
|
|
{/* <Link to={`/candidate/${currentCandidateObj.id}/form`}>
|
2021-08-18 15:56:24 +03:00
|
|
|
|
<button type="submit" className='candidate__btn'>
|
2021-07-12 17:30:36 +03:00
|
|
|
|
Выбрать к собеседованию
|
|
|
|
|
</button>
|
2021-08-19 16:17:06 +03:00
|
|
|
|
</Link> */}
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<SkillSection skillsArr={skillValues}/>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) :
|
|
|
|
|
(
|
|
|
|
|
// <div className="col-12 col-xl-8">
|
|
|
|
|
// <CodeSnippetlighter />
|
|
|
|
|
// </div>
|
|
|
|
|
<div className="col-12 col-xl-8">
|
|
|
|
|
<div className="candidate__works works">
|
|
|
|
|
<div className="works__body">
|
|
|
|
|
<div className="works__item item-works">
|
|
|
|
|
<div className="item-works__body">
|
|
|
|
|
<Link to="/" className="item-works__link">Vuetifyis.com</Link>
|
|
|
|
|
<div className="item-works__text">Forked from peluprvi/vuetifyjs.com <br/> Vuetifyjs.com
|
|
|
|
|
documentation
|
|
|
|
|
</div>
|
|
|
|
|
<div className="item-works__mark">Angular</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="works__item item-works">
|
|
|
|
|
<div className="item-works__body">
|
|
|
|
|
<Link to="/" className="item-works__link">Vuetifyis.com</Link>
|
|
|
|
|
<div className="item-works__text">Forked from peluprvi/vuetifyjs.com <br/> Vuetifyjs.com
|
|
|
|
|
documentation
|
|
|
|
|
</div>
|
|
|
|
|
<div className="item-works__mark">Angular</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="works__item item-works">
|
|
|
|
|
<div className="item-works__body">
|
|
|
|
|
<Link to="/" className="item-works__link">Vuetifyis.com</Link>
|
|
|
|
|
<div className="item-works__text">Forked from peluprvi/vuetifyjs.com <br/> Vuetifyjs.com
|
|
|
|
|
documentation
|
|
|
|
|
</div>
|
|
|
|
|
<div className="item-works__mark item-works__mark_yellow">Laravel</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-26 17:41:11 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-11-22 16:43:17 +03:00
|
|
|
|
<Footer/>
|
2021-11-30 17:00:58 +03:00
|
|
|
|
</div>
|
|
|
|
|
)
|
2022-11-22 16:43:17 +03:00
|
|
|
|
};
|
2021-05-26 13:35:57 +03:00
|
|
|
|
|
2021-11-30 17:00:58 +03:00
|
|
|
|
export default Candidate
|