79 lines
1.8 KiB
TypeScript
79 lines
1.8 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { ActivatedRoute, Router, ROUTER_DIRECTIVES } from '@angular/router';
|
|
|
|
import { FriendService } from './friends';
|
|
import {
|
|
AuthService,
|
|
AuthStatus,
|
|
SearchComponent,
|
|
SearchService
|
|
} from './shared';
|
|
import { VideoService } from './videos';
|
|
|
|
@Component({
|
|
selector: 'my-app',
|
|
template: require('./app.component.html'),
|
|
styles: [ require('./app.component.scss') ],
|
|
directives: [ ROUTER_DIRECTIVES, SearchComponent ],
|
|
providers: [ FriendService, VideoService, SearchService ]
|
|
})
|
|
|
|
export class AppComponent {
|
|
choices = [];
|
|
isLoggedIn: boolean;
|
|
|
|
constructor(
|
|
private authService: AuthService,
|
|
private friendService: FriendService,
|
|
private route: ActivatedRoute,
|
|
private router: Router
|
|
) {
|
|
this.isLoggedIn = this.authService.isLoggedIn();
|
|
|
|
this.authService.loginChangedSource.subscribe(
|
|
status => {
|
|
if (status === AuthStatus.LoggedIn) {
|
|
this.isLoggedIn = true;
|
|
console.log('Logged in.');
|
|
} else if (status === AuthStatus.LoggedOut) {
|
|
this.isLoggedIn = false;
|
|
console.log('Logged out.');
|
|
} else {
|
|
console.error('Unknown auth status: ' + status);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
isUserAdmin() {
|
|
return this.authService.isAdmin();
|
|
}
|
|
|
|
logout() {
|
|
this.authService.logout();
|
|
// Redirect to home page
|
|
this.router.navigate(['/videos/list']);
|
|
}
|
|
|
|
makeFriends() {
|
|
this.friendService.makeFriends().subscribe(
|
|
status => {
|
|
if (status === 409) {
|
|
alert('Already made friends!');
|
|
} else {
|
|
alert('Made friends!');
|
|
}
|
|
},
|
|
error => alert(error)
|
|
);
|
|
}
|
|
|
|
quitFriends() {
|
|
this.friendService.quitFriends().subscribe(
|
|
status => {
|
|
alert('Quit friends!');
|
|
},
|
|
error => alert(error)
|
|
);
|
|
}
|
|
}
|