import React, { useEffect, useState } from "react"; import { useDispatch, useSelector } from "react-redux"; import { NavLink, useNavigate } from "react-router-dom"; import { auth, getProfileInfo, setProfileInfo } from "@redux/outstaffingSlice"; import { urlForLocal } from "@utils/helper"; import { apiRequest } from "@api/request"; import { Loader } from "@components/Common/Loader/Loader"; import avatarMok from "assets/images/avatarMok.png"; import "./profileHeader.scss"; export const ProfileHeader = () => { const navigate = useNavigate(); const dispatch = useDispatch(); const profileInfo = useSelector(getProfileInfo); const currentPath = window.location.pathname; const [user] = useState( localStorage.getItem("role_status") === "18" ? "partner" : "developer" ); const [isLoggingOut, setIsLoggingOut] = useState(false); const [navInfo] = useState({ developer: [ { path: "/summary", name: "Резюме" }, { path: "/calendar", name: "Отчеты" }, { path: "/tracker", name: "Трекер" }, // { // path: "/payouts", // name: "Выплаты" // }, { path: "/quiz", name: "Тесты" }, { path: "/settings", name: "Настройки" } ], partner: [ { path: "/catalog", name: "Каталог" }, { path: "/requests", name: "Запросы" }, { path: "/employees", name: "Персонал" }, { path: "/tracker", name: "Трекер" }, // { // path: "/treaties", // name: "Договоры" // }, { path: "/settings", name: "Настройки" } ] }); useEffect(() => { if (!Object.keys(profileInfo).length) apiRequest(`/user/me`).then((profileInfo) => { dispatch( setProfileInfo( profileInfo.userCard ? profileInfo.userCard : profileInfo ) ); }); }, []); const handler = () => { setIsLoggingOut(true); localStorage.clear(); dispatch(auth(false)); setIsLoggingOut(false); navigate("/auth"); dispatch(setProfileInfo({})); }; const [active, setActive] = useState(false); const toggleBar = () => { if (active) { setActive(false); } else { setActive(true); } }; const closeMenu = () => { setActive(false); }; return (
itguild. {user === "developer" ? "для разработчиков" : "для партнеров"}
toggleBar()}>
{/*
*/}
{active &&
}
); };