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

113 lines
3.1 KiB
TypeScript
Raw Normal View History

2017-10-31 10:52:52 +00:00
import { Component, OnInit } from '@angular/core'
import { DomSanitizer, SafeHtml } from '@angular/platform-browser'
2018-02-20 15:13:05 +00:00
import { GuardsCheckStart, Router } from '@angular/router'
2018-03-01 12:57:29 +00:00
import { AuthService, RedirectService, ServerService } from '@app/core'
import { isInSmallView } from '@app/shared/misc/utils'
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
customCSS: SafeHtml
constructor (
2016-11-04 15:23:18 +00:00
private router: Router,
private authService: AuthService,
private serverService: ServerService,
2018-03-01 12:57:29 +00:00
private domSanitizer: DomSanitizer,
private redirectService: RedirectService
2016-11-04 15:23:18 +00:00
) {}
2016-05-24 21:00:58 +00:00
2018-01-31 09:19:34 +00:00
get serverVersion () {
return this.serverService.getConfig().serverVersion
}
2018-01-31 16:47:36 +00:00
get instanceName () {
return this.serverService.getConfig().instance.name
}
ngOnInit () {
2018-03-01 16:25:57 +00:00
const pathname = window.location.pathname
if (!pathname || pathname === '/') {
2018-03-01 12:57:29 +00:00
this.redirectService.redirectToHomepage()
}
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 (isInSmallView()) {
this.isMenuDisplayed = false
2017-05-01 16:05:28 +00:00
}
this.router.events.subscribe(
e => {
// User clicked on a link in the menu, change the page
if (e instanceof GuardsCheckStart && isInSmallView()) {
this.isMenuDisplayed = false
}
}
)
this.serverService.configLoaded
.subscribe(() => {
const config = this.serverService.getConfig()
// We test customCSS in case or the admin removed the css
if (this.customCSS || config.instance.customizations.css) {
const styleTag = '<style>' + config.instance.customizations.css + '</style>'
this.customCSS = this.domSanitizer.bypassSecurityTrustHtml(styleTag)
}
if (config.instance.customizations.javascript) {
try {
// tslint:disable:no-eval
eval(config.instance.customizations.javascript)
} catch (err) {
console.error('Cannot eval custom JavaScript.', err)
}
}
})
}
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
// Take all width is the menu is not displayed
2017-12-01 08:20:19 +00:00
if (this.isMenuDisplayed === false) return [ 'expanded' ]
2017-04-26 19:22:00 +00:00
2017-12-01 08:20:19 +00:00
return []
2017-04-26 19:22:00 +00:00
}
2016-03-14 12:50:19 +00:00
}