simple auth error handling
This commit is contained in:
parent
78ca049794
commit
b128e4b4cd
@ -27,6 +27,7 @@ const AuthForDevelopers = () => {
|
|||||||
|
|
||||||
const [username, setUsername] = useState('')
|
const [username, setUsername] = useState('')
|
||||||
const [password, setPassword] = useState('')
|
const [password, setPassword] = useState('')
|
||||||
|
const [error, setError] = useState(null);
|
||||||
|
|
||||||
if(isAuth) {
|
if(isAuth) {
|
||||||
return <Redirect to='/' />
|
return <Redirect to='/' />
|
||||||
@ -67,6 +68,10 @@ const AuthForDevelopers = () => {
|
|||||||
onChange={(e) => setPassword(e.target.value)}
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{ error && <div className={style.form__error}>
|
||||||
|
{error}
|
||||||
|
</div> }
|
||||||
|
|
||||||
<div className={style.form__buttons}>
|
<div className={style.form__buttons}>
|
||||||
<button
|
<button
|
||||||
className={style.form__btn}
|
className={style.form__btn}
|
||||||
@ -79,6 +84,10 @@ const AuthForDevelopers = () => {
|
|||||||
dispatch: ()=> {
|
dispatch: ()=> {
|
||||||
dispatch(auth(true))
|
dispatch(auth(true))
|
||||||
dispatch(loading(false))
|
dispatch(loading(false))
|
||||||
|
},
|
||||||
|
catchError: () => {
|
||||||
|
setError('Некорректные данные')
|
||||||
|
dispatch(loading(false))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} : ()=>{}}
|
} : ()=>{}}
|
||||||
|
@ -192,6 +192,13 @@
|
|||||||
color: #6aaf5c !important;
|
color: #6aaf5c !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form__error {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #b21;
|
||||||
|
margin-left: 45px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 575.98px) {
|
@media (max-width: 575.98px) {
|
||||||
.form__btn {
|
.form__btn {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
@ -28,6 +28,7 @@ const AuthForPartners = () => {
|
|||||||
|
|
||||||
const [username, setUsername] = useState('')
|
const [username, setUsername] = useState('')
|
||||||
const [password, setPassword] = useState('')
|
const [password, setPassword] = useState('')
|
||||||
|
const [error, setError] = useState(null);
|
||||||
|
|
||||||
if(isAuth) {
|
if(isAuth) {
|
||||||
return <Redirect to='/' />
|
return <Redirect to='/' />
|
||||||
@ -62,6 +63,10 @@ const AuthForPartners = () => {
|
|||||||
onChange={(e) => setPassword(e.target.value)}
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{ error && <div className={style.form__error}>
|
||||||
|
{error}
|
||||||
|
</div> }
|
||||||
|
|
||||||
<div className={style.form__buttons}>
|
<div className={style.form__buttons}>
|
||||||
<button
|
<button
|
||||||
className={style.form__btn}
|
className={style.form__btn}
|
||||||
@ -74,6 +79,10 @@ const AuthForPartners = () => {
|
|||||||
dispatch: ()=> {
|
dispatch: ()=> {
|
||||||
dispatch(auth(true))
|
dispatch(auth(true))
|
||||||
dispatch(loading(false))
|
dispatch(loading(false))
|
||||||
|
},
|
||||||
|
catchError: () => {
|
||||||
|
setError('Некорректные данные')
|
||||||
|
dispatch(loading(false))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} : ()=>{}}
|
} : ()=>{}}
|
||||||
|
@ -189,6 +189,13 @@
|
|||||||
color: #6aaf5c !important;
|
color: #6aaf5c !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form__error {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #b21;
|
||||||
|
margin-left: 45px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 575.98px) {
|
@media (max-width: 575.98px) {
|
||||||
.form__btn {
|
.form__btn {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
@ -64,7 +64,7 @@ export const fetchForm = async (link, info) => {
|
|||||||
} catch (error) {}
|
} catch (error) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const fetchAuth = async ({ username, password, dispatch }) => {
|
export const fetchAuth = async ({ username, password, dispatch, catchError }) => {
|
||||||
const baseURL = process.env.REACT_APP_BASE_URL;
|
const baseURL = process.env.REACT_APP_BASE_URL;
|
||||||
const apiURL = process.env.REACT_APP_API_URL;
|
const apiURL = process.env.REACT_APP_API_URL;
|
||||||
try {
|
try {
|
||||||
@ -84,6 +84,7 @@ export const fetchAuth = async ({ username, password, dispatch }) => {
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(!response.ok) {
|
if(!response.ok) {
|
||||||
|
catchError();
|
||||||
return response.statusText;
|
return response.statusText;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user