2017-03-04 11:45:47 +01:00
|
|
|
import { Component, OnInit, ViewContainerRef } from '@angular/core';
|
2016-09-06 22:40:57 +02:00
|
|
|
import { Router } from '@angular/router';
|
2016-03-14 13:50:19 +01:00
|
|
|
|
2017-04-04 21:37:03 +02:00
|
|
|
import { AuthService, ConfigService } from './core';
|
2017-03-22 21:15:55 +01:00
|
|
|
import { VideoService } from './videos';
|
2017-03-04 11:45:47 +01:00
|
|
|
import { UserService } from './shared';
|
|
|
|
|
2016-03-14 13:50:19 +01:00
|
|
|
@Component({
|
2016-11-04 16:23:18 +01:00
|
|
|
selector: 'my-app',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: [ './app.component.scss' ]
|
2016-03-14 13:50:19 +01:00
|
|
|
})
|
2017-03-04 11:45:47 +01:00
|
|
|
export class AppComponent implements OnInit {
|
2017-01-27 16:14:11 +01:00
|
|
|
notificationOptions = {
|
|
|
|
timeOut: 3000,
|
|
|
|
lastOnBottom: true,
|
|
|
|
clickToClose: true,
|
|
|
|
maxLength: 0,
|
|
|
|
maxStack: 7,
|
|
|
|
showProgressBar: false,
|
|
|
|
pauseOnHover: false,
|
|
|
|
preventDuplicates: false,
|
|
|
|
preventLastDuplicates: 'visible',
|
|
|
|
rtl: false
|
|
|
|
};
|
|
|
|
|
2017-04-26 21:22:00 +02:00
|
|
|
isMenuDisplayed = true;
|
|
|
|
|
2016-11-04 16:23:18 +01:00
|
|
|
constructor(
|
|
|
|
private router: Router,
|
2017-03-04 11:45:47 +01:00
|
|
|
private authService: AuthService,
|
2017-04-04 21:37:03 +02:00
|
|
|
private configService: ConfigService,
|
2017-03-04 11:45:47 +01:00
|
|
|
private userService: UserService,
|
2017-03-22 21:15:55 +01:00
|
|
|
private videoService: VideoService,
|
2016-11-04 16:23:18 +01:00
|
|
|
viewContainerRef: ViewContainerRef
|
|
|
|
) {}
|
2016-05-24 23:00:58 +02:00
|
|
|
|
2017-03-04 11:45:47 +01:00
|
|
|
ngOnInit() {
|
|
|
|
if (this.authService.isLoggedIn()) {
|
|
|
|
// The service will automatically redirect to the login page if the token is not valid anymore
|
|
|
|
this.userService.checkTokenValidity();
|
|
|
|
}
|
2017-03-22 21:15:55 +01:00
|
|
|
|
2017-04-04 21:37:03 +02:00
|
|
|
this.configService.loadConfig();
|
2017-03-22 21:15:55 +01:00
|
|
|
this.videoService.loadVideoCategories();
|
2017-03-27 21:11:37 +02:00
|
|
|
this.videoService.loadVideoLicences();
|
2017-04-07 14:57:05 +02:00
|
|
|
this.videoService.loadVideoLanguages();
|
2017-03-04 11:45:47 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 11:27:24 +02:00
|
|
|
isInAdmin() {
|
|
|
|
return this.router.url.indexOf('/admin/') !== -1;
|
2016-03-14 13:50:19 +01:00
|
|
|
}
|
2017-04-26 21:22:00 +02:00
|
|
|
|
|
|
|
toggleMenu() {
|
|
|
|
this.isMenuDisplayed = !this.isMenuDisplayed;
|
|
|
|
}
|
|
|
|
|
|
|
|
getMainColClasses() {
|
|
|
|
const colSizes = {
|
|
|
|
md: 10,
|
|
|
|
sm: 9,
|
|
|
|
xs: 9
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take all width is the menu is not displayed
|
|
|
|
if (this.isMenuDisplayed === false) {
|
|
|
|
Object.keys(colSizes).forEach(col => colSizes[col] = 12);
|
|
|
|
}
|
|
|
|
|
|
|
|
const classes = [ "main-col" ];
|
|
|
|
Object.keys(colSizes).forEach(col => classes.push(`col-${col}-${colSizes[col]}`));
|
|
|
|
|
|
|
|
return classes;
|
|
|
|
}
|
2016-03-14 13:50:19 +01:00
|
|
|
}
|