import React from 'react'; import { useHistory, useParams } from 'react-router-dom'; import { useSelector, useDispatch } from 'react-redux'; import { currentCandidate, selectCurrentCandidate, selectProfiles } from '../../redux/outstaffingSlice'; import style from './Candidate.module.css'; import arrow from '../../images/right-arrow.png'; import rectangle from '../../images/rectangle_secondPage.png'; import Sidebar from '../Sidebar/Sidebar'; import SectionSkills from './SectionSkills'; import front from '../../images/front_end.png'; import back from '../../images/back_end.png'; import design from '../../images/design.png'; const Candidate = () => { const history = useHistory(); const { id: candidateId } = useParams(); const dispatch = useDispatch(); const candidatesArr = useSelector(selectProfiles); dispatch(currentCandidate(candidatesArr.find((el) => Number(el.id) === Number(candidateId)))); const currentCandidateObj = useSelector(selectCurrentCandidate); console.log('currentCandidateObj ', currentCandidateObj); const { fio: name, position_id, skillValues, vc_text: text } = currentCandidateObj; let classes; let header; let img; if (Number(position_id) === 1) { classes = style.back; header = 'Backend'; img = back; } else if (Number(position_id) === 2) { classes = style.des; header = 'Frontend'; img = front; } else if (Number(position_id) === 3) { classes = style.front; header = 'Design'; img = design; } function createMarkup(text) { return { __html: text.split('

').join('

') }; } return (

Аутстаффинг it-персонала

history.push('/')}>
Вернуться к списку

{header}

{name}

# Описание опыта

{text ? (
) : (

Описание отсутствует...

)}
); }; export default Candidate;