Skip to content

Commit

Permalink
fix: send the right message when credential is wrong - Ref gestion-de…
Browse files Browse the repository at this point in the history
…-projet#2168
  • Loading branch information
Mehdi-BOUYAHIA committed Jul 21, 2023
1 parent 195b476 commit d2d36a7
Showing 1 changed file with 15 additions and 31 deletions.
46 changes: 15 additions & 31 deletions src/views/Login/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,31 +216,6 @@ const Login = () => {
)
}

if (response.error) {
setLoading(false)
return (
setError(true),
setErrorMessage(
'Une erreur DJANGO est survenue. Si elle persiste, veuillez contacter le support au : dsi-id-recherche-support-cohort360@aphp.fr.'
)
)
}

if (response.status !== 200) {
setLoading(false)
return (
setError(true),
setErrorMessage(
'Une erreur DJANGO est survenue. Si elle persiste, veuillez contacter le support au : dsi-id-recherche-support-cohort360@aphp.fr.'
)
)
}

if (!response.data.jwt) {
setLoading(false)
return setError(true), setErrorMessage("Votre nom d'utilisateur ou votre mot de passe est incorrect.")
}

const { status, data = {} } = response

if (status === 200) {
Expand Down Expand Up @@ -281,13 +256,22 @@ const Login = () => {

getPractitionerData(practitioner, lastConnection, maintenance, accessExpirations)
} else {
setLoading(false)
return (
setError(true),
setErrorMessage(
'Une erreur DJANGO est survenue. Si elle persiste, veuillez contacter le support au : dsi-id-recherche-support-cohort360@aphp.fr.'
const invalidCredential = 'Invalid Credentials - Invalid username or password'

if (response.response.status === 401 && response.response.data.errors[0] === invalidCredential) {
setLoading(false)
return setError(true), setErrorMessage("Votre nom d'utilisateur ou votre mot de passe est incorrect.")
}

if (response.status !== 200) {
setLoading(false)
return (
setError(true),
setErrorMessage(
'Une erreur DJANGO est survenue. Si elle persiste, veuillez contacter le support au : dsi-id-recherche-support-cohort360@aphp.fr.'
)
)
)
}
}
}

Expand Down

0 comments on commit d2d36a7

Please sign in to comment.