mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
108 lines
2.4 KiB
Vue
108 lines
2.4 KiB
Vue
<template>
|
|
<ds-form
|
|
v-if="!submitted"
|
|
@input="handleInput"
|
|
@input-valid="handleInputValid"
|
|
v-model="formData"
|
|
:schema="formSchema"
|
|
@submit="handleSubmit"
|
|
>
|
|
<ds-space margin="small">
|
|
<ds-input
|
|
:placeholder="$t('login.email')"
|
|
type="email"
|
|
id="email"
|
|
model="email"
|
|
name="email"
|
|
icon="envelope"
|
|
/>
|
|
</ds-space>
|
|
<ds-space margin-botton="large">
|
|
<ds-text align="left">{{ $t('components.password-reset.request.form.description') }}</ds-text>
|
|
</ds-space>
|
|
<ds-button
|
|
:disabled="disabled"
|
|
:loading="$apollo.loading"
|
|
primary
|
|
fullwidth
|
|
name="submit"
|
|
type="submit"
|
|
icon="envelope"
|
|
>
|
|
{{ $t('components.password-reset.request.form.submit') }}
|
|
</ds-button>
|
|
<slot></slot>
|
|
</ds-form>
|
|
<div v-else>
|
|
<transition name="ds-transition-fade">
|
|
<ds-flex centered>
|
|
<sweetalert-icon icon="info" />
|
|
</ds-flex>
|
|
</transition>
|
|
<ds-text v-html="submitMessage" align="left" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import gql from 'graphql-tag'
|
|
import { SweetalertIcon } from 'vue-sweetalert-icons'
|
|
import normalizeEmail from '~/components/utils/NormalizeEmail'
|
|
|
|
export default {
|
|
components: {
|
|
SweetalertIcon,
|
|
},
|
|
data() {
|
|
return {
|
|
formData: {
|
|
email: '',
|
|
},
|
|
formSchema: {
|
|
email: {
|
|
type: 'email',
|
|
required: true,
|
|
message: this.$t('common.validations.email'),
|
|
},
|
|
},
|
|
disabled: true,
|
|
submitted: false,
|
|
}
|
|
},
|
|
computed: {
|
|
email() {
|
|
return normalizeEmail(this.formData.email)
|
|
},
|
|
submitMessage() {
|
|
const { email } = this
|
|
return this.$t('components.password-reset.request.form.submitted', { email })
|
|
},
|
|
},
|
|
methods: {
|
|
handleInput() {
|
|
this.disabled = true
|
|
},
|
|
handleInputValid() {
|
|
this.disabled = false
|
|
},
|
|
async handleSubmit() {
|
|
const mutation = gql`
|
|
mutation($email: String!) {
|
|
requestPasswordReset(email: $email)
|
|
}
|
|
`
|
|
try {
|
|
const { email } = this
|
|
await this.$apollo.mutate({ mutation, variables: { email } })
|
|
this.submitted = true
|
|
|
|
setTimeout(() => {
|
|
this.$emit('handleSubmitted', { email })
|
|
}, 3000)
|
|
} catch (err) {
|
|
this.$toast.error(err.message)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|