pleroma-fe/src/components/registration/registration.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

import { validationMixin } from 'vuelidate'
import { required, sameAs } from 'vuelidate/lib/validators'
import { mapActions, mapState } from 'vuex'
2017-04-16 02:12:23 +10:00
const registration = {
mixins: [validationMixin],
2017-04-16 02:12:23 +10:00
data: () => ({
user: {
email: '',
fullname: '',
username: '',
password: '',
confirm: ''
2018-12-15 11:05:47 +11:00
},
captcha: {}
2017-04-16 02:12:23 +10:00
}),
validations: {
user: {
email: { required },
username: { required },
fullname: { required },
password: { required },
confirm: {
required,
sameAsPassword: sameAs('password')
}
}
},
created () {
if ((!this.registrationOpen && !this.token) || this.signedIn) {
2018-12-10 09:21:52 +11:00
this.$router.push('/~/main/all')
}
2018-12-15 11:05:47 +11:00
2018-12-17 06:47:52 +11:00
this.setCaptcha()
},
computed: {
token () { return this.$route.params.token },
...mapState({
registrationOpen: (state) => state.instance.registrationOpen,
signedIn: (state) => !!state.users.currentUser,
isPending: (state) => state.users.signUpPending,
serverValidationErrors: (state) => state.users.signUpErrors,
2018-12-06 03:19:39 +11:00
termsOfService: (state) => state.instance.tos
})
},
2017-04-16 02:12:23 +10:00
methods: {
...mapActions(['signUp', 'getCaptcha']),
async submit () {
2017-04-16 02:12:23 +10:00
this.user.nickname = this.user.username
2018-08-05 17:01:38 +10:00
this.user.token = this.token
2018-12-17 04:55:09 +11:00
this.user.captcha_solution = this.captcha.solution
this.user.captcha_token = this.captcha.token
this.user.captcha_answer_data = this.captcha.answer_data
this.$v.$touch()
if (!this.$v.$invalid) {
try {
await this.signUp(this.user)
2018-12-10 09:21:52 +11:00
this.$router.push('/~/main/friends')
} catch (error) {
console.warn('Registration failed: ' + error)
}
}
2018-12-17 06:47:52 +11:00
},
2018-12-17 06:55:11 +11:00
setCaptcha () {
2018-12-17 06:47:52 +11:00
this.getCaptcha().then(cpt => { this.captcha = cpt })
2017-04-16 02:12:23 +10:00
}
}
}
export default registration