2017-06-16 07:32:15 -05:00
|
|
|
import { Component, OnInit, ViewContainerRef } from '@angular/core'
|
|
|
|
import { Router } from '@angular/router'
|
2016-03-14 07:50:19 -05:00
|
|
|
|
2017-10-09 12:12:40 -05:00
|
|
|
import { AuthService, ServerService } from './core'
|
2017-06-16 07:32:15 -05:00
|
|
|
import { UserService } from './shared'
|
2017-03-04 04:45:47 -06:00
|
|
|
|
2016-03-14 07:50:19 -05:00
|
|
|
@Component({
|
2016-11-04 10:23:18 -05:00
|
|
|
selector: 'my-app',
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
styleUrls: [ './app.component.scss' ]
|
2016-03-14 07:50:19 -05:00
|
|
|
})
|
2017-03-04 04:45:47 -06:00
|
|
|
export class AppComponent implements OnInit {
|
2017-01-27 09:14:11 -06:00
|
|
|
notificationOptions = {
|
2017-10-10 03:02:18 -05:00
|
|
|
timeOut: 5000,
|
2017-01-27 09:14:11 -06:00
|
|
|
lastOnBottom: true,
|
|
|
|
clickToClose: true,
|
|
|
|
maxLength: 0,
|
|
|
|
maxStack: 7,
|
|
|
|
showProgressBar: false,
|
|
|
|
pauseOnHover: false,
|
|
|
|
preventDuplicates: false,
|
|
|
|
preventLastDuplicates: 'visible',
|
|
|
|
rtl: false
|
2017-06-16 07:32:15 -05:00
|
|
|
}
|
2017-01-27 09:14:11 -06:00
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
isMenuDisplayed = true
|
2017-04-26 14:22:00 -05:00
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
constructor (
|
2016-11-04 10:23:18 -05:00
|
|
|
private router: Router,
|
2017-03-04 04:45:47 -06:00
|
|
|
private authService: AuthService,
|
2017-10-09 12:12:40 -05:00
|
|
|
private serverService: ServerService,
|
2017-10-09 07:28:44 -05:00
|
|
|
private userService: UserService
|
2016-11-04 10:23:18 -05:00
|
|
|
) {}
|
2016-05-24 16:00:58 -05:00
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
ngOnInit () {
|
2017-09-14 04:57:49 -05:00
|
|
|
this.authService.loadClientCredentials()
|
|
|
|
|
2017-03-04 04:45:47 -06:00
|
|
|
if (this.authService.isLoggedIn()) {
|
|
|
|
// The service will automatically redirect to the login page if the token is not valid anymore
|
2017-10-25 10:31:11 -05:00
|
|
|
this.authService.refreshUserInformation()
|
2017-03-04 04:45:47 -06:00
|
|
|
}
|
2017-03-22 15:15:55 -05:00
|
|
|
|
2017-10-09 12:12:40 -05:00
|
|
|
// Load custom data from server
|
|
|
|
this.serverService.loadConfig()
|
|
|
|
this.serverService.loadVideoCategories()
|
|
|
|
this.serverService.loadVideoLanguages()
|
|
|
|
this.serverService.loadVideoLicences()
|
2017-05-01 11:05:28 -05:00
|
|
|
|
|
|
|
// Do not display menu on small screens
|
|
|
|
if (window.innerWidth < 600) {
|
2017-06-16 07:32:15 -05:00
|
|
|
this.isMenuDisplayed = false
|
2017-05-01 11:05:28 -05:00
|
|
|
}
|
2017-03-04 04:45:47 -06:00
|
|
|
}
|
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
isInAdmin () {
|
|
|
|
return this.router.url.indexOf('/admin/') !== -1
|
2016-03-14 07:50:19 -05:00
|
|
|
}
|
2017-04-26 14:22:00 -05:00
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
toggleMenu () {
|
|
|
|
this.isMenuDisplayed = !this.isMenuDisplayed
|
2017-04-26 14:22:00 -05:00
|
|
|
}
|
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
getMainColClasses () {
|
2017-04-26 14:22:00 -05:00
|
|
|
const colSizes = {
|
|
|
|
md: 10,
|
|
|
|
sm: 9,
|
|
|
|
xs: 9
|
2017-06-16 07:32:15 -05:00
|
|
|
}
|
2017-04-26 14:22:00 -05:00
|
|
|
|
|
|
|
// Take all width is the menu is not displayed
|
|
|
|
if (this.isMenuDisplayed === false) {
|
2017-06-16 07:32:15 -05:00
|
|
|
Object.keys(colSizes).forEach(col => colSizes[col] = 12)
|
2017-04-26 14:22:00 -05:00
|
|
|
}
|
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
const classes = [ 'main-col' ]
|
|
|
|
Object.keys(colSizes).forEach(col => classes.push(`col-${col}-${colSizes[col]}`))
|
2017-04-26 14:22:00 -05:00
|
|
|
|
2017-06-16 07:32:15 -05:00
|
|
|
return classes
|
2017-04-26 14:22:00 -05:00
|
|
|
}
|
2016-03-14 07:50:19 -05:00
|
|
|
}
|