2023-03-13 18:35:26 +03:00
|
|
|
import React, { useEffect, useRef, useState } from "react";
|
2023-05-24 13:49:09 +03:00
|
|
|
import { useNavigate } from "react-router-dom";
|
2023-01-13 13:02:48 +03:00
|
|
|
|
2023-05-24 13:49:09 +03:00
|
|
|
import { useDispatch, useSelector } from "react-redux";
|
2023-03-13 18:35:26 +03:00
|
|
|
import { auth, selectAuth, setUserInfo } from "../../redux/outstaffingSlice";
|
|
|
|
import { loading } from "../../redux/loaderSlice";
|
|
|
|
import { setRole } from "../../redux/roleSlice";
|
|
|
|
import { selectIsLoading } from "../../redux/loaderSlice";
|
2021-11-30 16:00:58 +02:00
|
|
|
|
2023-05-24 13:49:09 +03:00
|
|
|
import ModalRegistration from "../UI/ModalRegistration/ModalRegistration";
|
|
|
|
import ModalErrorLogin from "../UI/ModalErrorLogin/ModalErrorLogin";
|
|
|
|
import { Loader } from "../Loader/Loader";
|
2023-03-13 18:35:26 +03:00
|
|
|
import { apiRequest } from "../../api/request";
|
2023-01-18 17:37:52 +03:00
|
|
|
|
2023-05-25 16:42:37 +03:00
|
|
|
import ellipse from "../../assets/icons/ellipse.png";
|
2021-11-30 16:00:58 +02:00
|
|
|
|
2023-03-13 18:35:26 +03:00
|
|
|
import "./authBox.scss";
|
2021-11-30 16:00:58 +02:00
|
|
|
|
2023-03-14 18:49:45 +03:00
|
|
|
export const AuthBox = ({ title }) => {
|
2023-01-13 13:02:48 +03:00
|
|
|
const dispatch = useDispatch();
|
2023-01-25 16:50:36 +03:00
|
|
|
const ref = useRef();
|
2023-01-18 17:37:52 +03:00
|
|
|
const navigate = useNavigate();
|
2023-01-13 13:02:48 +03:00
|
|
|
|
2023-01-18 17:37:52 +03:00
|
|
|
const isAuth = useSelector(selectAuth);
|
2023-01-13 13:02:48 +03:00
|
|
|
const isLoading = useSelector(selectIsLoading);
|
|
|
|
|
|
|
|
const [error, setError] = useState(null);
|
2023-03-22 15:33:12 +03:00
|
|
|
const [modalError, setModalError] = useState(false);
|
2023-03-28 20:42:18 +03:00
|
|
|
const [modalReg, setModalReg] = useState(false);
|
2023-01-18 17:37:52 +03:00
|
|
|
|
2023-02-02 18:10:44 +03:00
|
|
|
useEffect(() => {
|
2023-03-13 18:35:26 +03:00
|
|
|
if (!localStorage.getItem("auth_token")) {
|
|
|
|
dispatch(auth(false));
|
2023-01-20 16:20:06 +03:00
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
2023-02-02 18:10:44 +03:00
|
|
|
useEffect(() => {
|
|
|
|
if (isAuth) {
|
2023-03-13 18:35:26 +03:00
|
|
|
navigate("/");
|
2023-02-02 18:10:44 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
const submitHandler = () => {
|
2023-02-02 18:10:44 +03:00
|
|
|
let formData = new FormData(ref.current);
|
2023-01-13 13:02:48 +03:00
|
|
|
if (!isLoading) {
|
|
|
|
dispatch(loading(true));
|
2023-03-13 18:35:26 +03:00
|
|
|
apiRequest("/user/login", {
|
|
|
|
method: "POST",
|
|
|
|
data: formData,
|
|
|
|
}).then((res) => {
|
2023-01-13 13:02:48 +03:00
|
|
|
if (!res.access_token) {
|
2023-03-13 18:35:26 +03:00
|
|
|
setError("Некорректные данные для входа");
|
2023-03-22 15:33:12 +03:00
|
|
|
setModalError(true);
|
2023-03-13 18:35:26 +03:00
|
|
|
dispatch(loading(false));
|
2023-01-13 13:02:48 +03:00
|
|
|
} else {
|
2023-03-13 18:35:26 +03:00
|
|
|
localStorage.setItem("auth_token", res.access_token);
|
|
|
|
localStorage.setItem("id", res.id);
|
|
|
|
localStorage.setItem("cardId", res.card_id);
|
|
|
|
localStorage.setItem("role_status", res.status);
|
2023-01-13 13:02:48 +03:00
|
|
|
localStorage.setItem(
|
2023-03-13 18:35:26 +03:00
|
|
|
"access_token_expired_at",
|
|
|
|
res.access_token_expired_at
|
2023-01-13 13:02:48 +03:00
|
|
|
);
|
|
|
|
dispatch(auth(true));
|
|
|
|
dispatch(setUserInfo(res));
|
|
|
|
dispatch(loading(false));
|
2023-03-13 18:35:26 +03:00
|
|
|
dispatch(setRole("ROLE_PARTNER"));
|
2023-01-13 13:02:48 +03:00
|
|
|
}
|
2023-03-13 18:35:26 +03:00
|
|
|
});
|
2023-01-13 13:02:48 +03:00
|
|
|
}
|
|
|
|
};
|
2022-06-01 19:59:54 +03:00
|
|
|
|
2021-11-30 16:00:58 +02:00
|
|
|
return (
|
2023-03-13 18:35:26 +03:00
|
|
|
<div className="auth-box">
|
|
|
|
<h2 className="auth-box__header">
|
|
|
|
Войти в <span>систему</span>
|
|
|
|
</h2>
|
|
|
|
<div className="auth-box__title">
|
2023-05-24 13:49:09 +03:00
|
|
|
<img src={ellipse} alt="." />
|
2023-03-13 18:35:26 +03:00
|
|
|
<span>{title}</span>
|
2023-01-13 13:02:48 +03:00
|
|
|
</div>
|
2023-03-13 18:35:26 +03:00
|
|
|
<form ref={ref} className="auth-box__form">
|
|
|
|
<label htmlFor="login">Ваш логин:</label>
|
|
|
|
<input id="login" type="text" name="username" placeholder="Логин" />
|
|
|
|
|
|
|
|
<label htmlFor="password">Пароль:</label>
|
|
|
|
<input
|
|
|
|
id="password"
|
|
|
|
type="password"
|
|
|
|
name="password"
|
|
|
|
placeholder="Пароль"
|
|
|
|
/>
|
|
|
|
|
|
|
|
{error && (
|
|
|
|
<div className="auth-box__form-error">
|
2023-03-22 15:33:12 +03:00
|
|
|
<ModalErrorLogin
|
|
|
|
active={modalError}
|
|
|
|
setActive={setModalError}
|
|
|
|
title={error}
|
|
|
|
/>
|
2023-03-13 18:35:26 +03:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<div className="auth-box__form-buttons">
|
|
|
|
<button
|
|
|
|
className="auth-box__form-btn"
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
submitHandler();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{isLoading ? <Loader /> : "Войти"}
|
|
|
|
</button>
|
|
|
|
|
2023-03-28 20:42:18 +03:00
|
|
|
<ModalRegistration active={modalReg} setActive={setModalReg} />
|
2023-03-14 18:49:45 +03:00
|
|
|
<button
|
|
|
|
className="auth-box__form-btn--role auth-box__auth-link"
|
2023-03-22 15:33:12 +03:00
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
2023-03-28 20:42:18 +03:00
|
|
|
setModalReg(true);
|
2023-03-22 15:33:12 +03:00
|
|
|
}}
|
2023-03-14 18:49:45 +03:00
|
|
|
>
|
|
|
|
Регистрация
|
|
|
|
</button>
|
2023-03-13 18:35:26 +03:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
2023-01-13 13:02:48 +03:00
|
|
|
};
|