guild_front/src/components/Candidate/Candidate.js

123 lines
3.8 KiB
JavaScript
Raw Normal View History

2021-05-26 13:35:57 +03:00
import React from 'react';
2021-05-28 16:21:28 +03:00
import { useHistory, useParams } from 'react-router-dom';
2021-07-02 16:02:47 +03:00
import { useSelector, useDispatch } from 'react-redux';
2021-07-08 11:03:47 +03:00
import {
currentCandidate,
selectCurrentCandidate,
selectProfiles,
selectFilteredCandidates,
} from '../../redux/outstaffingSlice';
2021-05-31 18:23:25 +03:00
import style from './Candidate.module.css';
2021-05-26 17:41:11 +03:00
import arrow from '../../images/right-arrow.png';
2021-05-27 17:44:11 +03:00
import rectangle from '../../images/rectangle_secondPage.png';
2021-06-01 15:25:01 +03:00
import Sidebar from '../Sidebar/Sidebar';
2021-07-02 16:02:47 +03:00
import SectionSkills from './SectionSkills';
2021-07-05 12:33:24 +03:00
import front from '../../images/front_end.png';
import back from '../../images/back_end.png';
import design from '../../images/design.png';
2021-07-03 17:37:30 +03:00
2021-07-02 16:02:47 +03:00
const Candidate = () => {
2021-05-26 15:59:00 +03:00
const history = useHistory();
2021-07-09 11:29:02 +03:00
2021-05-28 16:21:28 +03:00
const { id: candidateId } = useParams();
2021-05-26 15:59:00 +03:00
2021-07-02 16:02:47 +03:00
const dispatch = useDispatch();
2021-07-05 12:33:24 +03:00
const candidatesArr = useSelector(selectProfiles);
2021-07-08 11:03:47 +03:00
const filteredCandidates = useSelector(selectFilteredCandidates);
2021-07-05 12:33:24 +03:00
2021-07-08 11:03:47 +03:00
dispatch(
currentCandidate(
filteredCandidates.length > 0
? filteredCandidates.find((el) => Number(el.id) === Number(candidateId))
: candidatesArr.find((el) => Number(el.id) === Number(candidateId))
)
);
2021-07-05 12:33:24 +03:00
2021-07-02 16:02:47 +03:00
const currentCandidateObj = useSelector(selectCurrentCandidate);
2021-05-28 16:21:28 +03:00
2021-07-08 11:03:47 +03:00
const { position_id, skillValues, vc_text: text } = currentCandidateObj;
2021-06-09 13:12:01 +03:00
let classes;
2021-07-05 12:33:24 +03:00
let header;
let img;
2021-06-09 13:12:01 +03:00
2021-07-05 12:33:24 +03:00
if (Number(position_id) === 1) {
2021-06-09 13:12:01 +03:00
classes = style.back;
2021-07-05 12:33:24 +03:00
header = 'Backend';
img = back;
} else if (Number(position_id) === 2) {
2021-06-09 13:12:01 +03:00
classes = style.des;
2021-07-05 12:33:24 +03:00
header = 'Frontend';
img = front;
} else if (Number(position_id) === 3) {
2021-06-09 13:12:01 +03:00
classes = style.front;
2021-07-05 12:33:24 +03:00
header = 'Design';
img = design;
2021-06-09 13:12:01 +03:00
}
2021-05-26 13:35:57 +03:00
2021-07-03 17:37:30 +03:00
function createMarkup(text) {
return { __html: text.split('</p>').join('</p>') };
}
2021-05-26 13:35:57 +03:00
return (
2021-05-31 18:23:25 +03:00
<section className={style.candidate}>
2021-05-26 17:41:11 +03:00
<div className="container">
<div className="row">
<div className="col-12">
<div className={style.candidate__title}>
<h2>
<span>Аутстаффинг</span> it-персонала
</h2>
</div>
</div>
</div>
<div className="row">
<div className="col-12">
<div className={style.candidate__header}>
<div className={style.arrow} onClick={() => history.push('/')}>
2021-06-07 17:48:07 +03:00
<div className={style.arrow__img}>
<img src={arrow} alt="" />
</div>
<div className={style.arrow__sp}>
<span>Вернуться к списку</span>
</div>
2021-05-26 17:41:11 +03:00
</div>
2021-06-09 13:12:01 +03:00
<div className={style.icon}>
2021-07-05 12:33:24 +03:00
<h3>{header}</h3>
2021-06-09 13:12:01 +03:00
<img className={classes} src={img} alt="" />
2021-05-26 17:41:11 +03:00
</div>
</div>
</div>
</div>
<div className={style.candidate__main}>
<div className="row">
2021-06-09 13:12:01 +03:00
<div className="col-12 col-xl-4">
2021-07-02 17:55:32 +03:00
<Sidebar />
2021-05-26 17:41:11 +03:00
</div>
2021-06-09 13:12:01 +03:00
<div className="col-12 col-xl-8">
2021-05-27 17:44:11 +03:00
<div className={style.candidate__main__description}>
<img src={rectangle} alt="" />
2021-07-02 17:55:32 +03:00
<p className={style.hashtag}># Описание опыта</p>
2021-07-03 17:37:30 +03:00
{text ? (
<div className={style.candidate__text} dangerouslySetInnerHTML={createMarkup(text)}></div>
) : (
<p className={style.candidate__textSecondary}>Описание отсутствует...</p>
)}
2021-07-08 11:03:47 +03:00
<button type="submit" className={style.candidate__btn}>
2021-07-03 17:37:30 +03:00
Выбрать к собеседованию
</button>
2021-07-05 12:33:24 +03:00
<SectionSkills skillsArr={skillValues} />
2021-05-26 17:41:11 +03:00
</div>
</div>
</div>
</div>
</div>
</section>
2021-05-26 13:35:57 +03:00
);
};
export default Candidate;