akkoma-fe/src/components/login_form/login_form.js

33 lines
765 B
JavaScript
Raw Normal View History

2018-10-26 13:16:23 +00:00
import oauthApi from "../../services/new_api/oauth.js";
2016-10-27 16:02:41 +00:00
const LoginForm = {
data: () => ({
user: {},
authError: false
2016-10-27 16:02:41 +00:00
}),
computed: {
loggingIn () { return this.$store.state.users.loggingIn },
2018-09-09 18:21:23 +00:00
registrationOpen () { return this.$store.state.instance.registrationOpen }
2016-10-27 16:02:41 +00:00
},
methods: {
2018-10-26 13:16:23 +00:00
oAuthLogin () {
oauthApi.login({
oauth: this.$store.state.oauth,
instance: this.$store.state.instance.server,
commit: this.$store.commit
});
},
2016-10-27 16:02:41 +00:00
submit () {
this.$store.dispatch('loginUser', this.user).then(
() => {},
(error) => {
this.authError = error
this.user.username = ''
this.user.password = ''
}
)
2016-10-27 16:02:41 +00:00
}
}
}
export default LoginForm