diff options
Diffstat (limited to 'client/src/app/menu.component.ts')
-rw-r--r-- | client/src/app/menu.component.ts | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/client/src/app/menu.component.ts b/client/src/app/menu.component.ts new file mode 100644 index 000000000..6cfc854dd --- /dev/null +++ b/client/src/app/menu.component.ts | |||
@@ -0,0 +1,45 @@ | |||
1 | import { Component, OnInit } from '@angular/core'; | ||
2 | import { Router } from '@angular/router'; | ||
3 | |||
4 | import { AuthService, AuthStatus } from './shared'; | ||
5 | |||
6 | @Component({ | ||
7 | selector: 'my-menu', | ||
8 | templateUrl: './menu.component.html' | ||
9 | }) | ||
10 | export class MenuComponent implements OnInit { | ||
11 | isLoggedIn: boolean; | ||
12 | |||
13 | constructor ( | ||
14 | private authService: AuthService, | ||
15 | private router: Router | ||
16 | ) {} | ||
17 | |||
18 | ngOnInit() { | ||
19 | this.isLoggedIn = this.authService.isLoggedIn(); | ||
20 | |||
21 | this.authService.loginChangedSource.subscribe( | ||
22 | status => { | ||
23 | if (status === AuthStatus.LoggedIn) { | ||
24 | this.isLoggedIn = true; | ||
25 | console.log('Logged in.'); | ||
26 | } else if (status === AuthStatus.LoggedOut) { | ||
27 | this.isLoggedIn = false; | ||
28 | console.log('Logged out.'); | ||
29 | } else { | ||
30 | console.error('Unknown auth status: ' + status); | ||
31 | } | ||
32 | } | ||
33 | ); | ||
34 | } | ||
35 | |||
36 | isUserAdmin() { | ||
37 | return this.authService.isAdmin(); | ||
38 | } | ||
39 | |||
40 | logout() { | ||
41 | this.authService.logout(); | ||
42 | // Redirect to home page | ||
43 | this.router.navigate(['/videos/list']); | ||
44 | } | ||
45 | } | ||