mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
230 lines
6.8 KiB
Vue
230 lines
6.8 KiB
Vue
<template>
|
|
<ds-form
|
|
v-model="formData"
|
|
:schema="formSchema"
|
|
@input="handleInput"
|
|
@input-valid="handleInputValid"
|
|
>
|
|
<!-- Wolle <h1>
|
|
{{
|
|
invitation
|
|
? $t('profile.invites.title', metadata)
|
|
: $t('components.registration.signup.title', metadata)
|
|
}}
|
|
</h1> -->
|
|
<!-- Wolle <ds-text
|
|
v-if="token"
|
|
v-html="$t('registration.signup.form.invitation-code', { code: token })"
|
|
/> -->
|
|
<ds-text>
|
|
{{
|
|
invitation
|
|
? $t('profile.invites.description')
|
|
: $t('components.registration.signup.form.description')
|
|
}}
|
|
</ds-text>
|
|
<ds-input
|
|
:placeholder="invitation ? $t('profile.invites.emailPlaceholder') : $t('login.email')"
|
|
type="email"
|
|
id="email"
|
|
model="email"
|
|
name="email"
|
|
icon="envelope"
|
|
/>
|
|
<slot></slot>
|
|
<ds-text v-if="sliderData.collectedInputData.emailSend">
|
|
<input id="checkbox" type="checkbox" v-model="sendEmailAgain" :checked="sendEmailAgain" />
|
|
<label for="checkbox0">
|
|
<!-- Wolle {{ $t('termsAndConditions.termsAndConditionsConfirmed') }} -->
|
|
{{ $t('components.email.form.sendEmailAgain') }}
|
|
</label>
|
|
</ds-text>
|
|
</ds-form>
|
|
</template>
|
|
|
|
<script>
|
|
import gql from 'graphql-tag'
|
|
import metadata from '~/constants/metadata'
|
|
import { isEmail } from 'validator'
|
|
import normalizeEmail from '~/components/utils/NormalizeEmail'
|
|
import translateErrorMessage from '~/components/utils/TranslateErrorMessage'
|
|
// Wolle import { SweetalertIcon } from 'vue-sweetalert-icons'
|
|
|
|
export const SignupMutation = gql`
|
|
mutation($email: String!, $inviteCode: String) {
|
|
Signup(email: $email, inviteCode: $inviteCode) {
|
|
email
|
|
}
|
|
}
|
|
`
|
|
export default {
|
|
name: 'RegistrationSlideEmail',
|
|
components: {
|
|
// Wolle SweetalertIcon,
|
|
},
|
|
props: {
|
|
sliderData: { type: Object, required: true },
|
|
// token: { type: String, default: null }, // Wolle not used???
|
|
invitation: { type: Boolean, default: false }, // Wolle ???
|
|
},
|
|
data() {
|
|
return {
|
|
metadata,
|
|
formData: {
|
|
email: '',
|
|
},
|
|
formSchema: {
|
|
email: {
|
|
type: 'email',
|
|
required: true,
|
|
message: this.$t('common.validations.email'),
|
|
},
|
|
},
|
|
// TODO: Our styleguide does not support checkmarks.
|
|
// Integrate termsAndConditionsConfirmed into `this.formData` once we
|
|
// have checkmarks available.
|
|
sendEmailAgain: false,
|
|
}
|
|
},
|
|
mounted: function () {
|
|
this.$nextTick(function () {
|
|
// Code that will run only after the entire view has been rendered
|
|
|
|
this.formData.email = this.sliderData.collectedInputData.email
|
|
? this.sliderData.collectedInputData.email
|
|
: ''
|
|
this.sendValidation()
|
|
|
|
this.sliderData.setSliderValuesCallback(this.validInput, {
|
|
sliderSettings: {
|
|
...this.buttonValues().sliderSettings,
|
|
buttonSliderCallback: this.onNextClick,
|
|
},
|
|
})
|
|
})
|
|
},
|
|
watch: {
|
|
sendEmailAgain() {
|
|
this.setButtonValues()
|
|
},
|
|
},
|
|
computed: {
|
|
sliderIndex() {
|
|
return this.sliderData.sliderIndex // to have a shorter notation
|
|
},
|
|
validInput() {
|
|
return isEmail(this.formData.email)
|
|
},
|
|
},
|
|
methods: {
|
|
async sendValidation() {
|
|
if (this.formData.email && isEmail(this.formData.email)) {
|
|
this.formData.email = normalizeEmail(this.formData.email)
|
|
}
|
|
const { email } = this.formData
|
|
|
|
this.sliderData.setSliderValuesCallback(this.validInput, { collectedInputData: { email } })
|
|
},
|
|
async handleInput() {
|
|
this.sendValidation()
|
|
},
|
|
async handleInputValid() {
|
|
this.sendValidation()
|
|
},
|
|
buttonValues() {
|
|
return {
|
|
sliderSettings: {
|
|
buttonTitleIdent: this.sliderData.collectedInputData.emailSend
|
|
? this.sendEmailAgain
|
|
? 'components.email.buttonTitle.resend'
|
|
: 'components.email.buttonTitle.skipResend'
|
|
: 'components.email.buttonTitle.send',
|
|
buttonIcon: this.sliderData.collectedInputData.emailSend
|
|
? this.sendEmailAgain
|
|
? 'envelope'
|
|
: 'arrow-right'
|
|
: 'envelope',
|
|
},
|
|
}
|
|
},
|
|
setButtonValues() {
|
|
this.sliderData.setSliderValuesCallback(this.validInput, this.buttonValues())
|
|
},
|
|
isVariablesRequested(variables) {
|
|
return (
|
|
this.sliderData.sliders[this.sliderIndex].data.request &&
|
|
this.sliderData.sliders[this.sliderIndex].data.request.variables &&
|
|
this.sliderData.sliders[this.sliderIndex].data.request.variables.email === variables.email
|
|
)
|
|
},
|
|
async onNextClick() {
|
|
const { email } = this.formData
|
|
const { inviteCode = null } = this.sliderData.collectedInputData
|
|
const variables = { email, inviteCode }
|
|
|
|
if (this.sliderData.collectedInputData.emailSend && !this.sendEmailAgain) {
|
|
return true
|
|
}
|
|
|
|
if (
|
|
!this.sliderData.collectedInputData.emailSend ||
|
|
this.sendEmailAgain ||
|
|
!this.isVariablesRequested(variables)
|
|
) {
|
|
try {
|
|
this.sliderData.setSliderValuesCallback(null, {
|
|
sliderSettings: { buttonLoading: true },
|
|
})
|
|
const response = await this.$apollo.mutate({ mutation: SignupMutation, variables }) // e-mail is send in emailMiddleware of backend
|
|
this.sliderData.setSliderValuesCallback(null, {
|
|
sliderData: { request: { variables }, response: response.data },
|
|
})
|
|
|
|
if (this.sliderData.sliders[this.sliderIndex].data.response) {
|
|
this.sliderData.setSliderValuesCallback(this.validInput, {
|
|
collectedInputData: { emailSend: true },
|
|
})
|
|
this.setButtonValues()
|
|
|
|
const { email: responseEmail } = this.sliderData.sliders[
|
|
this.sliderIndex
|
|
].data.response.Signup
|
|
this.$toast.success(
|
|
this.$t('components.registration.email.form.success', { email: responseEmail }),
|
|
)
|
|
}
|
|
this.sliderData.setSliderValuesCallback(null, {
|
|
sliderSettings: { buttonLoading: false },
|
|
})
|
|
return true
|
|
} catch (err) {
|
|
this.sliderData.setSliderValuesCallback(this.validInput, {
|
|
sliderData: { request: null, response: null },
|
|
collectedInputData: { emailSend: false },
|
|
sliderSettings: { buttonLoading: false },
|
|
})
|
|
this.setButtonValues()
|
|
|
|
this.$toast.error(
|
|
translateErrorMessage(
|
|
err.message,
|
|
{
|
|
'A user account with this email already exists':
|
|
'components.registration.signup.form.errors.email-exists',
|
|
},
|
|
this.$t,
|
|
),
|
|
)
|
|
return false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
.space-top {
|
|
margin-top: 6ex;
|
|
}
|
|
</style>
|