1
0
Fork 0
peertube/client/src/app/app.component.ts

82 lines
1.9 KiB
TypeScript
Raw Normal View History

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