1 import { Component, OnInit } from '@angular/core'
2 import { I18n } from '@ngx-translate/i18n-polyfill'
3 import { Notifier, RedirectService } from '@app/core'
4 import { ServerService } from '@app/core/server'
5 import { FormReactive, UserService } from '@app/shared'
6 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
7 import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
10 selector: 'my-verify-account-ask-send-email',
11 templateUrl: './verify-account-ask-send-email.component.html',
12 styleUrls: [ './verify-account-ask-send-email.component.scss' ]
15 export class VerifyAccountAskSendEmailComponent extends FormReactive implements OnInit {
18 protected formValidatorService: FormValidatorService,
19 private userValidatorsService: UserValidatorsService,
20 private userService: UserService,
21 private serverService: ServerService,
22 private notifier: Notifier,
23 private redirectService: RedirectService,
29 get requiresEmailVerification () {
30 return this.serverService.getConfig().signup.requiresEmailVerification
35 'verify-email-email': this.userValidatorsService.USER_EMAIL
39 askSendVerifyEmail () {
40 const email = this.form.value['verify-email-email']
41 this.userService.askSendVerifyEmail(email)
44 const message = this.i18n(
45 'An email with verification link will be sent to {{email}}.',
48 this.notifier.success(message)
49 this.redirectService.redirectToHomepage()
53 this.notifier.error(err.message)