aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account.component.ts
blob: 851eaf198e1ae73dc9b4d84e6d95c815a7d76e80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import {  } from '@angular/common';
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms';
import { Router } from '@angular/router';

import { AccountService } from './account.service';
import { FormReactive, USER_PASSWORD } from '../shared';

@Component({
  selector: 'my-account',
  templateUrl: './account.component.html'
})

export class AccountComponent extends FormReactive implements OnInit {
  information: string = null;
  error: string = null;

  form: FormGroup;
  formErrors = {
    'new-password': '',
    'new-confirmed-password': ''
  };
  validationMessages = {
    'new-password': USER_PASSWORD.MESSAGES,
    'new-confirmed-password': USER_PASSWORD.MESSAGES
  };

  constructor(
    private accountService: AccountService,
    private formBuilder: FormBuilder,
    private router: Router
  ) {
    super();
  }

  buildForm() {
    this.form = this.formBuilder.group({
      'new-password': [ '', USER_PASSWORD.VALIDATORS ],
      'new-confirmed-password': [ '', USER_PASSWORD.VALIDATORS ],
    });

    this.form.valueChanges.subscribe(data => this.onValueChanged(data));
  }

  ngOnInit() {
    this.buildForm();
  }

  changePassword() {
    const newPassword = this.form.value['new-password'];
    const newConfirmedPassword = this.form.value['new-confirmed-password'];

    this.information = null;
    this.error = null;

    if (newPassword !== newConfirmedPassword) {
      this.error = 'The new password and the confirmed password do not correspond.';
      return;
    }

    this.accountService.changePassword(newPassword).subscribe(
      ok => this.information = 'Password updated.',

      err => this.error = err
    );
  }
}