d89c0fc414
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
122 lines
2.9 KiB
Vue
122 lines
2.9 KiB
Vue
<template>
|
|
<section class="section container">
|
|
<div class="columns is-mobile is-centered">
|
|
<div class="column is-half-desktop">
|
|
<h1 class="title">
|
|
{{ $t("Resend confirmation email") }}
|
|
</h1>
|
|
<form v-if="!validationSent" @submit="resendConfirmationAction">
|
|
<b-field :label="$t('Email address')">
|
|
<b-input
|
|
aria-required="true"
|
|
required
|
|
type="email"
|
|
v-model="credentials.email"
|
|
/>
|
|
</b-field>
|
|
<p class="control">
|
|
<b-button type="is-primary" native-type="submit">
|
|
{{ $t("Send the confirmation email again") }}
|
|
</b-button>
|
|
<router-link
|
|
:to="{ name: RouteName.LOGIN }"
|
|
class="button is-text"
|
|
>{{ $t("Cancel") }}</router-link
|
|
>
|
|
</p>
|
|
</form>
|
|
<div v-else>
|
|
<b-message type="is-success" :closable="false" title="Success">
|
|
{{
|
|
$t(
|
|
"If an account with this email exists, we just sent another confirmation email to {email}",
|
|
{ email: credentials.email }
|
|
)
|
|
}}
|
|
</b-message>
|
|
<b-message type="is-info">
|
|
{{
|
|
$t(
|
|
"Please check your spam folder if you didn't receive the email."
|
|
)
|
|
}}
|
|
</b-message>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue } from "vue-property-decorator";
|
|
import {
|
|
validateEmailField,
|
|
validateRequiredField,
|
|
} from "../../utils/validators";
|
|
import { RESEND_CONFIRMATION_EMAIL } from "../../graphql/auth";
|
|
import RouteName from "../../router/name";
|
|
|
|
@Component({
|
|
metaInfo() {
|
|
return {
|
|
title: this.$t("Resend confirmation email") as string,
|
|
meta: [{ name: "robots", content: "noindex" }],
|
|
};
|
|
},
|
|
})
|
|
export default class ResendConfirmation extends Vue {
|
|
@Prop({ type: String, required: false, default: "" }) email!: string;
|
|
|
|
credentials = {
|
|
email: "",
|
|
};
|
|
|
|
validationSent = false;
|
|
|
|
error = false;
|
|
|
|
RouteName = RouteName;
|
|
|
|
state = {
|
|
email: {
|
|
status: null,
|
|
msg: "",
|
|
},
|
|
};
|
|
|
|
rules = {
|
|
required: validateRequiredField,
|
|
email: validateEmailField,
|
|
};
|
|
|
|
mounted(): void {
|
|
this.credentials.email = this.email;
|
|
}
|
|
|
|
async resendConfirmationAction(e: Event): Promise<void> {
|
|
e.preventDefault();
|
|
this.error = false;
|
|
|
|
try {
|
|
await this.$apollo.mutate({
|
|
mutation: RESEND_CONFIRMATION_EMAIL,
|
|
variables: {
|
|
email: this.credentials.email,
|
|
},
|
|
});
|
|
} catch (err) {
|
|
console.error(err);
|
|
this.error = true;
|
|
} finally {
|
|
this.validationSent = true;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container .columns {
|
|
margin: 1rem auto 3rem;
|
|
}
|
|
</style>
|