aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/account/account.component.ts
blob: 54939f43bc4ef117804afa1300a59773c63e4cd3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                             
                                                  
                                                                                  






                                                   

                                          


                                                 


                                








                                           


                                                                                                                


       
                    


                            
                                                         



                                                                                    
                                                                   





                                                   
import { Validators } from '@angular/common';
import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup, REACTIVE_FORM_DIRECTIVES } from '@angular/forms';
import { Router } from '@angular/router';

import { AccountService } from './account.service';

@Component({
  selector: 'my-account',
  template: require('./account.component.html'),
  providers: [ AccountService ],
  directives: [ REACTIVE_FORM_DIRECTIVES ]
})

export class AccountComponent implements OnInit {
  newPassword = '';
  newConfirmedPassword = '';
  changePasswordForm: FormGroup;
  information: string = null;
  error: string = null;

  constructor(
    private accountService: AccountService,
    private router: Router
  ) {}

  ngOnInit() {
    this.changePasswordForm = new FormGroup({
      'new-password': new FormControl('', [ <any>Validators.required, <any>Validators.minLength(6) ]),
      'new-confirmed-password': new FormControl('', [ <any>Validators.required, <any>Validators.minLength(6) ]),
    });
  }

  changePassword() {
    this.information = null;
    this.error = null;

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

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

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