blob: 1e0ba0fe8c2a666538c870c552a64b1ab472deba (
plain) (
tree)
|
|
import { Component, OnInit } from '@angular/core';
import { Validators } from '@angular/common';
import { FormControl, FormGroup, REACTIVE_FORM_DIRECTIVES } from '@angular/forms';
import { Router } from '@angular/router';
import { AuthService } from '../shared';
@Component({
selector: 'my-login',
template: require('./login.component.html'),
directives: [ REACTIVE_FORM_DIRECTIVES ]
})
export class LoginComponent implements OnInit {
error: string = null;
username = '';
password: '';
loginForm: FormGroup;
constructor(
private authService: AuthService,
private router: Router
) {}
ngOnInit() {
this.loginForm = new FormGroup({
username: new FormControl('', [ <any>Validators.required ]),
password: new FormControl('', [ <any>Validators.required ]),
});
}
login() {
this.authService.login(this.username, this.password).subscribe(
result => {
this.error = null;
this.router.navigate(['/videos/list']);
},
error => {
console.error(error.json);
if (error.json.error === 'invalid_grant') {
this.error = 'Credentials are invalid.';
} else {
this.error = `${error.json.error}: ${error.json.error_description}`;
}
}
);
}
}
|