1 import { Component, OnInit } from '@angular/core'
2 import { NotificationsService } from 'angular2-notifications'
3 import { FormReactive, UserService } from '../../../shared'
4 import { I18n } from '@ngx-translate/i18n-polyfill'
5 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
6 import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
7 import { filter } from 'rxjs/operators'
10 selector: 'my-account-change-password',
11 templateUrl: './my-account-change-password.component.html',
12 styleUrls: [ './my-account-change-password.component.scss' ]
14 export class MyAccountChangePasswordComponent extends FormReactive implements OnInit {
18 protected formValidatorService: FormValidatorService,
19 private userValidatorsService: UserValidatorsService,
20 private notificationsService: NotificationsService,
21 private userService: UserService,
29 'new-password': this.userValidatorsService.USER_PASSWORD,
30 'new-confirmed-password': this.userValidatorsService.USER_CONFIRM_PASSWORD
33 const confirmPasswordControl = this.form.get('new-confirmed-password')
35 confirmPasswordControl.valueChanges
36 .pipe(filter(v => v !== this.form.value[ 'new-password' ]))
37 .subscribe(() => confirmPasswordControl.setErrors({ matchPassword: true }))
41 this.userService.changePassword(this.form.value[ 'new-password' ]).subscribe(
43 this.notificationsService.success(this.i18n('Success'), this.i18n('Password updated.'))
48 err => this.error = err.message