2023-01-13 13:02:48 +03:00
|
|
|
import React, {useState} from 'react'
|
|
|
|
import {Link} from 'react-router-dom'
|
|
|
|
import {useDispatch, useSelector} from 'react-redux'
|
|
|
|
import {withSwalInstance} from 'sweetalert2-react'
|
|
|
|
import swal from 'sweetalert2'
|
2021-11-30 16:00:58 +02:00
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
import {Loader} from '../Loader/Loader'
|
|
|
|
|
|
|
|
import {auth, setUserInfo} from '../../redux/outstaffingSlice'
|
|
|
|
import {loading} from '../../redux/loaderSlice'
|
|
|
|
import {setRole} from '../../redux/roleSlice'
|
2021-11-30 16:00:58 +02:00
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
import {selectIsLoading} from '../../redux/loaderSlice'
|
2021-11-30 16:00:58 +02:00
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
import ellipse from '../../images/ellipse.png'
|
2021-11-30 16:00:58 +02:00
|
|
|
|
|
|
|
import './authBox.scss'
|
2023-01-13 13:02:48 +03:00
|
|
|
import {useRequest} from "../../hooks/useRequest";
|
2021-11-30 16:00:58 +02:00
|
|
|
|
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
const SweetAlert = withSwalInstance(swal);
|
|
|
|
|
|
|
|
export const AuthBox = ({title, altTitle, roleChangeLink}) => {
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
|
|
|
const {apiRequest} = useRequest();
|
|
|
|
|
|
|
|
const isLoading = useSelector(selectIsLoading);
|
|
|
|
|
|
|
|
const [username, setUsername] = useState('');
|
|
|
|
const [password, setPassword] = useState('');
|
|
|
|
const [error, setError] = useState(null);
|
|
|
|
|
|
|
|
const submitHandler = () => {
|
|
|
|
|
|
|
|
if (!isLoading) {
|
|
|
|
dispatch(loading(true));
|
|
|
|
apiRequest('/user/login',
|
|
|
|
{
|
|
|
|
method: 'POST',
|
|
|
|
data: JSON.stringify({
|
|
|
|
username,
|
|
|
|
password
|
|
|
|
})
|
|
|
|
}).then((res) => {
|
|
|
|
|
|
|
|
if (!res.access_token) {
|
2022-06-01 19:59:54 +03:00
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
setError('Некорректные данные для входа');
|
|
|
|
dispatch(loading(false))
|
2022-06-01 19:59:54 +03:00
|
|
|
|
2023-01-13 13:02:48 +03:00
|
|
|
} else {
|
|
|
|
|
|
|
|
localStorage.setItem('auth_token', res.access_token);
|
|
|
|
localStorage.setItem('id', res.id);
|
|
|
|
localStorage.setItem('cardId', res.card_id);
|
|
|
|
localStorage.setItem(
|
|
|
|
'access_token_expired_at',
|
|
|
|
res.access_token_expired_at
|
|
|
|
);
|
|
|
|
dispatch(auth(true));
|
|
|
|
dispatch(setUserInfo(res));
|
|
|
|
dispatch(loading(false));
|
|
|
|
dispatch(setRole('ROLE_PARTNER'))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
2022-06-01 19:59:54 +03:00
|
|
|
|
2021-11-30 16:00:58 +02:00
|
|
|
return (
|
2023-01-13 13:02:48 +03:00
|
|
|
<div className='auth-box'>
|
|
|
|
<h2 className='auth-box__header'>
|
|
|
|
Войти в <span>систему</span>
|
|
|
|
</h2>
|
|
|
|
<div className='auth-box__title'>
|
|
|
|
<img src={ellipse} alt=''/>
|
|
|
|
<span>{title}</span>
|
2021-11-30 16:00:58 +02:00
|
|
|
</div>
|
2023-01-13 13:02:48 +03:00
|
|
|
<form className='auth-box__form'>
|
|
|
|
<label htmlFor='login'>Ваш логин:</label>
|
|
|
|
<input
|
|
|
|
id='login'
|
|
|
|
type='text'
|
|
|
|
placeholder='Логин'
|
|
|
|
value={username}
|
|
|
|
onChange={(e) => setUsername(e.target.value)}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<label htmlFor='password'>Пароль:</label>
|
|
|
|
<input
|
|
|
|
id='password'
|
|
|
|
type='password'
|
|
|
|
placeholder='Пароль'
|
|
|
|
value={password}
|
|
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{error && (
|
|
|
|
<div className='auth-box__form-error'>
|
|
|
|
<SweetAlert
|
|
|
|
show={!!error}
|
|
|
|
title='Ошибка'
|
|
|
|
text={error}
|
|
|
|
onConfirm={() => setError(null)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<div className='auth-box__form-buttons'>
|
|
|
|
<button
|
|
|
|
className='auth-box__form-btn'
|
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
submitHandler()
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{isLoading ? <Loader/> : 'Войти'}
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<Link to={roleChangeLink}>
|
|
|
|
<button className='auth-box__form-btn--role auth-box__auth-link'>
|
|
|
|
{altTitle}
|
|
|
|
</button>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2021-11-30 16:00:58 +02:00
|
|
|
)
|
2023-01-13 13:02:48 +03:00
|
|
|
};
|