X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.component.ts;h=3c06b320e03a873b1eb94f974026e58f56f513cd;hb=92fb909c9b4a92a00b0d0da7629e6fb003de281b;hp=f487e6c482dab245824e8c7efa8f325d1f0ec715;hpb=7ddd02c9b8c1e088f6679a2227f105e6439fc992;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index f487e6c48..3c06b320e 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -1,14 +1,16 @@ -import { Component, ViewContainerRef } from '@angular/core'; +import { Component, OnInit, ViewContainerRef } from '@angular/core'; import { Router } from '@angular/router'; -import { MetaService } from 'ng2-meta'; +import { AuthService, ConfigService } from './core'; +import { VideoService } from './videos'; +import { UserService } from './shared'; + @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: [ './app.component.scss' ] }) - -export class AppComponent { +export class AppComponent implements OnInit { notificationOptions = { timeOut: 3000, lastOnBottom: true, @@ -24,10 +26,24 @@ export class AppComponent { constructor( private router: Router, - private metaService: MetaService, + private authService: AuthService, + private configService: ConfigService, + private userService: UserService, + private videoService: VideoService, viewContainerRef: ViewContainerRef ) {} + ngOnInit() { + if (this.authService.isLoggedIn()) { + // The service will automatically redirect to the login page if the token is not valid anymore + this.userService.checkTokenValidity(); + } + + this.configService.loadConfig(); + this.videoService.loadVideoCategories(); + this.videoService.loadVideoLicences(); + } + isInAdmin() { return this.router.url.indexOf('/admin/') !== -1; }