import React from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { selectItems, selectedItems, filteredCandidates } from '../../redux/outstaffingSlice'; import { fetchItemsForId } from '../../server/server'; import style from './Outstaffing.module.css'; import { fetchProfile } from '../../server/server'; const handlePositionClick = ({dispatch, positionId, isSelected, onSelect}) => { if(isSelected) { fetchProfile(`${process.env.REACT_APP_API_URL}/api/profile?limit=`, 4).then((profileArr) => { dispatch(filteredCandidates(profileArr)); dispatch(selectedItems([])); onSelect(positionId); } ); } else { fetchItemsForId(`${process.env.REACT_APP_API_URL}/api/profile?position_id=`, positionId).then((el) => { dispatch(filteredCandidates(el)); dispatch(selectedItems([])); onSelect(positionId); } ); } }; const OutstaffingBlock = ({ dataTags = [], selected, img, header, positionId, isSelected, onSelect }) => { const dispatch = useDispatch(); const itemsArr = useSelector(selectItems); const handleBlockClick = (item, id) => { if (!itemsArr.find((el) => item === el.value)) { dispatch(selectedItems([...itemsArr, { id, value: item, label: item }])); } }; let classes; dataTags.forEach((el) => { if (el.name === 'skills_back') { classes = style.back; } else if (el.name === 'skills_design') { classes = style.des; } else if (el.name === 'skills_front') { classes = style.front; } }); return (
# Популярный стек
{dataTags && (