1
0
Fork 0

Use instance name for page titles

This commit is contained in:
Chocobozzz 2018-03-22 14:13:30 +01:00
parent 0c49373af9
commit 63ac2857aa
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 9 additions and 7 deletions

View file

@ -1,6 +1,7 @@
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { AboutModule } from '@app/about'
import { ServerService } from '@app/core'
import { ResetPasswordModule } from '@app/reset-password'
import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core'
@ -17,15 +18,14 @@ import { SharedModule } from './shared'
import { SignupModule } from './signup'
import { VideosModule } from './videos'
export function metaFactory (): MetaLoader {
export function metaFactory (serverService: ServerService): MetaLoader {
return new MetaStaticLoader({
pageTitlePositioning: PageTitlePositioning.PrependPageTitle,
pageTitleSeparator: ' - ',
applicationName: 'PeerTube',
get applicationName () { return serverService.getConfig().instance.name },
defaults: {
title: 'PeerTube',
description: 'PeerTube, a federated (ActivityPub) video streaming platform ' +
'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular. '
get title () { return serverService.getConfig().instance.name },
get description () { return serverService.getConfig().instance.shortDescription }
}
})
}
@ -57,7 +57,8 @@ export function metaFactory (): MetaLoader {
MetaModule.forRoot({
provide: MetaLoader,
useFactory: (metaFactory)
useFactory: (metaFactory),
deps: [ ServerService ]
})
],
providers: [ ]

View file

@ -21,7 +21,8 @@ export class ServerService {
private config: ServerConfig = {
instance: {
name: 'PeerTube',
shortDescription: '',
shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform ' +
'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.',
defaultClientRoute: '',
customizations: {
javascript: '',