2018-12-05 01:43:01 -08:00
|
|
|
import { validationMixin } from 'vuelidate'
|
2018-12-05 07:42:33 -08:00
|
|
|
import { required, sameAs } from 'vuelidate/lib/validators'
|
2018-12-05 01:43:01 -08:00
|
|
|
import { mapActions, mapState } from 'vuex'
|
2018-11-06 12:48:05 -08:00
|
|
|
|
2017-04-15 09:12:23 -07:00
|
|
|
const registration = {
|
2018-12-05 01:43:01 -08:00
|
|
|
mixins: [validationMixin],
|
2017-04-15 09:12:23 -07:00
|
|
|
data: () => ({
|
2018-12-05 01:43:01 -08:00
|
|
|
user: {
|
|
|
|
email: '',
|
2018-12-05 07:42:33 -08:00
|
|
|
fullname: '',
|
2018-12-05 01:43:01 -08:00
|
|
|
username: '',
|
|
|
|
password: '',
|
|
|
|
confirm: ''
|
2018-12-14 16:05:47 -08:00
|
|
|
},
|
|
|
|
captcha: {}
|
2017-04-15 09:12:23 -07:00
|
|
|
}),
|
2018-12-05 01:43:01 -08:00
|
|
|
validations: {
|
|
|
|
user: {
|
2018-12-05 07:42:33 -08:00
|
|
|
email: { required },
|
2018-12-05 01:43:01 -08:00
|
|
|
username: { required },
|
2018-12-05 07:42:33 -08:00
|
|
|
fullname: { required },
|
2018-12-05 01:43:01 -08:00
|
|
|
password: { required },
|
2018-12-05 07:17:29 -08:00
|
|
|
confirm: {
|
|
|
|
required,
|
|
|
|
sameAsPassword: sameAs('password')
|
|
|
|
}
|
2018-12-05 01:43:01 -08:00
|
|
|
}
|
|
|
|
},
|
2017-06-20 00:37:51 -07:00
|
|
|
created () {
|
2018-12-05 07:17:29 -08:00
|
|
|
if ((!this.registrationOpen && !this.token) || this.signedIn) {
|
2019-07-05 00:02:14 -07:00
|
|
|
this.$router.push({ name: 'root' })
|
2017-06-20 00:37:51 -07:00
|
|
|
}
|
2018-12-14 16:05:47 -08:00
|
|
|
|
2018-12-16 11:47:52 -08:00
|
|
|
this.setCaptcha()
|
2017-06-20 00:37:51 -07:00
|
|
|
},
|
2017-06-19 06:35:35 -07:00
|
|
|
computed: {
|
2018-12-05 01:43:01 -08:00
|
|
|
token () { return this.$route.params.token },
|
2019-03-18 07:35:13 -07:00
|
|
|
bioPlaceholder () {
|
|
|
|
return this.$t('registration.bio_placeholder').replace(/\s*\n\s*/g, ' \n')
|
|
|
|
},
|
2018-12-05 01:43:01 -08:00
|
|
|
...mapState({
|
2018-12-05 07:17:29 -08:00
|
|
|
registrationOpen: (state) => state.instance.registrationOpen,
|
|
|
|
signedIn: (state) => !!state.users.currentUser,
|
2018-12-05 11:07:58 -08:00
|
|
|
isPending: (state) => state.users.signUpPending,
|
|
|
|
serverValidationErrors: (state) => state.users.signUpErrors,
|
2018-12-05 08:19:39 -08:00
|
|
|
termsOfService: (state) => state.instance.tos
|
2018-12-05 01:43:01 -08:00
|
|
|
})
|
2017-06-19 06:35:35 -07:00
|
|
|
},
|
2017-04-15 09:12:23 -07:00
|
|
|
methods: {
|
2018-12-16 09:53:41 -08:00
|
|
|
...mapActions(['signUp', 'getCaptcha']),
|
2018-12-05 07:17:29 -08:00
|
|
|
async submit () {
|
2017-04-15 09:12:23 -07:00
|
|
|
this.user.nickname = this.user.username
|
2018-08-05 00:01:38 -07:00
|
|
|
this.user.token = this.token
|
2018-12-20 13:25:09 -08:00
|
|
|
|
2018-12-16 09:55:09 -08:00
|
|
|
this.user.captcha_solution = this.captcha.solution
|
|
|
|
this.user.captcha_token = this.captcha.token
|
2018-12-20 13:25:09 -08:00
|
|
|
this.user.captcha_answer_data = this.captcha.answer_data
|
2018-12-05 01:43:01 -08:00
|
|
|
|
|
|
|
this.$v.$touch()
|
|
|
|
|
|
|
|
if (!this.$v.$invalid) {
|
2018-12-05 07:17:29 -08:00
|
|
|
try {
|
|
|
|
await this.signUp(this.user)
|
2019-07-05 00:02:14 -07:00
|
|
|
this.$router.push({ name: 'friends' })
|
2018-12-05 07:17:29 -08:00
|
|
|
} catch (error) {
|
2018-12-05 11:13:08 -08:00
|
|
|
console.warn('Registration failed: ' + error)
|
2018-12-05 07:17:29 -08:00
|
|
|
}
|
2018-12-05 01:43:01 -08:00
|
|
|
}
|
2018-12-16 11:47:52 -08:00
|
|
|
},
|
2018-12-16 11:55:11 -08:00
|
|
|
setCaptcha () {
|
2018-12-16 11:47:52 -08:00
|
|
|
this.getCaptcha().then(cpt => { this.captcha = cpt })
|
2017-04-15 09:12:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default registration
|