PeerTube/client/src/app/app.component.ts

121 lines
3.3 KiB
TypeScript
Raw Normal View History

2017-10-31 11:52:52 +01:00
import { Component, OnInit } from '@angular/core'
import { DomSanitizer, SafeHtml } from '@angular/platform-browser'
2018-05-31 18:12:15 +02:00
import { GuardsCheckStart, NavigationEnd, Router } from '@angular/router'
2018-03-01 13:57:29 +01:00
import { AuthService, RedirectService, ServerService } from '@app/core'
import { isInSmallView } from '@app/shared/misc/utils'
2018-05-31 18:12:15 +02:00
import { is18nPath } from '../../../shared/models/i18n'
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
})
export class AppComponent implements OnInit {
notificationOptions = {
2017-10-10 10:02:18 +02: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 21:22:00 +02:00
customCSS: SafeHtml
constructor (
2016-11-04 16:23:18 +01:00
private router: Router,
private authService: AuthService,
private serverService: ServerService,
2018-03-01 13:57:29 +01:00
private domSanitizer: DomSanitizer,
private redirectService: RedirectService
2018-05-31 18:12:15 +02:00
) { }
2016-05-24 23:00:58 +02:00
2018-01-31 10:19:34 +01:00
get serverVersion () {
return this.serverService.getConfig().serverVersion
}
2018-01-31 17:47:36 +01:00
get instanceName () {
return this.serverService.getConfig().instance.name
}
get defaultRoute () {
return RedirectService.DEFAULT_ROUTE
}
ngOnInit () {
2018-03-08 12:04:10 +01:00
document.getElementById('incompatible-browser').className += ' browser-ok'
2018-05-23 10:58:50 +02:00
this.router.events.subscribe(e => {
if (e instanceof NavigationEnd) {
const pathname = window.location.pathname
2018-05-31 18:12:15 +02:00
if (!pathname || pathname === '/' || is18nPath(pathname)) {
2018-05-23 10:58:50 +02:00
this.redirectService.redirectToHomepage()
}
}
})
2018-03-01 13:57:29 +01:00
this.authService.loadClientCredentials()
2018-03-27 16:18:25 +02:00
if (this.isUserLoggedIn()) {
// The service will automatically redirect to the login page if the token is not valid anymore
2017-10-25 17:31:11 +02:00
this.authService.refreshUserInformation()
}
2017-03-22 21:15:55 +01:00
// Load custom data from server
this.serverService.loadConfig()
this.serverService.loadVideoCategories()
this.serverService.loadVideoLanguages()
this.serverService.loadVideoLicences()
2017-10-31 11:52:52 +01:00
this.serverService.loadVideoPrivacies()
2017-05-01 18:05:28 +02:00
// Do not display menu on small screens
if (isInSmallView()) {
this.isMenuDisplayed = false
2017-05-01 18:05:28 +02: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()
2018-03-21 10:20:47 +01:00
// We test customCSS if 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)
}
}
})
}
2018-03-27 16:18:25 +02:00
isUserLoggedIn () {
return this.authService.isLoggedIn()
}
toggleMenu () {
2017-11-06 11:46:11 +01:00
window.scrollTo(0, 0)
this.isMenuDisplayed = !this.isMenuDisplayed
2017-04-26 21:22:00 +02:00
}
2016-03-14 13:50:19 +01:00
}