mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
convert post-api.login code to using async/await for Login.jsx
This commit is contained in:
parent
986d299961
commit
55586b9b2a
@ -41,7 +41,7 @@ class LoginPage extends Component {
|
||||
|
||||
handlePasswordChange = value => this.safeSetState({ password: value, error: '' });
|
||||
|
||||
handleSubmit = event => {
|
||||
handleSubmit = async event => {
|
||||
const { username, password, loading } = this.state;
|
||||
|
||||
event.preventDefault();
|
||||
@ -49,15 +49,15 @@ class LoginPage extends Component {
|
||||
if (!loading) {
|
||||
this.safeSetState({ loading: true });
|
||||
|
||||
api.login(username, password)
|
||||
.catch(error => {
|
||||
if (error.response.status === 401) {
|
||||
this.safeSetState({ error: LOGIN_ERROR_MESSAGE });
|
||||
}
|
||||
})
|
||||
.finally(() => {
|
||||
this.safeSetState({ loading: false });
|
||||
});
|
||||
try {
|
||||
await api.login(username, password);
|
||||
} catch (error) {
|
||||
if (error.response.status === 401) {
|
||||
this.safeSetState({ error: LOGIN_ERROR_MESSAGE });
|
||||
}
|
||||
} finally {
|
||||
this.safeSetState({ loading: false });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user