diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/app.component.ts | 3 | ||||
-rw-r--r-- | client/src/app/app.module.ts | 26 | ||||
-rw-r--r-- | client/src/app/videos/video-watch/video-watch.component.ts | 4 |
3 files changed, 19 insertions, 14 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 47d2bfdd2..8b4b4118b 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts | |||
@@ -1,8 +1,6 @@ | |||
1 | import { Component, OnInit, ViewContainerRef } from '@angular/core'; | 1 | import { Component, OnInit, ViewContainerRef } from '@angular/core'; |
2 | import { Router } from '@angular/router'; | 2 | import { Router } from '@angular/router'; |
3 | 3 | ||
4 | import { MetaService } from 'ng2-meta'; | ||
5 | |||
6 | import { AuthService } from './core'; | 4 | import { AuthService } from './core'; |
7 | import { UserService } from './shared'; | 5 | import { UserService } from './shared'; |
8 | 6 | ||
@@ -27,7 +25,6 @@ export class AppComponent implements OnInit { | |||
27 | 25 | ||
28 | constructor( | 26 | constructor( |
29 | private router: Router, | 27 | private router: Router, |
30 | private metaService: MetaService, | ||
31 | private authService: AuthService, | 28 | private authService: AuthService, |
32 | private userService: UserService, | 29 | private userService: UserService, |
33 | viewContainerRef: ViewContainerRef | 30 | viewContainerRef: ViewContainerRef |
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 482a9b5b7..02da38b38 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts | |||
@@ -2,7 +2,7 @@ import { ApplicationRef, NgModule } from '@angular/core'; | |||
2 | import { BrowserModule } from '@angular/platform-browser'; | 2 | import { BrowserModule } from '@angular/platform-browser'; |
3 | import { removeNgStyles, createNewHosts } from '@angularclass/hmr'; | 3 | import { removeNgStyles, createNewHosts } from '@angularclass/hmr'; |
4 | 4 | ||
5 | import { MetaModule, MetaConfig } from 'ng2-meta'; | 5 | import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@nglibs/meta'; |
6 | import 'bootstrap-loader'; | 6 | import 'bootstrap-loader'; |
7 | 7 | ||
8 | import { ENV_PROVIDERS } from './environment'; | 8 | import { ENV_PROVIDERS } from './environment'; |
@@ -16,14 +16,17 @@ import { LoginModule } from './login'; | |||
16 | import { SharedModule } from './shared'; | 16 | import { SharedModule } from './shared'; |
17 | import { VideosModule } from './videos'; | 17 | import { VideosModule } from './videos'; |
18 | 18 | ||
19 | const metaConfig: MetaConfig = { | 19 | export function metaFactory(): MetaLoader { |
20 | //Append a title suffix such as a site name to all titles | 20 | return new MetaStaticLoader({ |
21 | //Defaults to false | 21 | pageTitlePositioning: PageTitlePositioning.PrependPageTitle, |
22 | useTitleSuffix: true, | 22 | pageTitleSeparator: ' - ', |
23 | defaults: { | 23 | applicationName: 'PeerTube', |
24 | title: 'PeerTube' | 24 | defaults: { |
25 | } | 25 | title: 'PeerTube', |
26 | }; | 26 | description: 'PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser' |
27 | } | ||
28 | }); | ||
29 | } | ||
27 | 30 | ||
28 | // Application wide providers | 31 | // Application wide providers |
29 | const APP_PROVIDERS = [ | 32 | const APP_PROVIDERS = [ |
@@ -43,7 +46,10 @@ const APP_PROVIDERS = [ | |||
43 | 46 | ||
44 | AppRoutingModule, | 47 | AppRoutingModule, |
45 | 48 | ||
46 | MetaModule.forRoot(metaConfig), | 49 | MetaModule.forRoot({ |
50 | provide: MetaLoader, | ||
51 | useFactory: (metaFactory) | ||
52 | }), | ||
47 | 53 | ||
48 | AccountModule, | 54 | AccountModule, |
49 | CoreModule, | 55 | CoreModule, |
diff --git a/client/src/app/videos/video-watch/video-watch.component.ts b/client/src/app/videos/video-watch/video-watch.component.ts index ed6b30102..5678f6df8 100644 --- a/client/src/app/videos/video-watch/video-watch.component.ts +++ b/client/src/app/videos/video-watch/video-watch.component.ts | |||
@@ -3,7 +3,7 @@ import { ActivatedRoute } from '@angular/router'; | |||
3 | import { Subscription } from 'rxjs/Subscription'; | 3 | import { Subscription } from 'rxjs/Subscription'; |
4 | 4 | ||
5 | import * as videojs from 'video.js'; | 5 | import * as videojs from 'video.js'; |
6 | import { MetaService } from 'ng2-meta'; | 6 | import { MetaService } from '@nglibs/meta'; |
7 | import { NotificationsService } from 'angular2-notifications'; | 7 | import { NotificationsService } from 'angular2-notifications'; |
8 | 8 | ||
9 | import { AuthService } from '../../core'; | 9 | import { AuthService } from '../../core'; |
@@ -228,6 +228,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
228 | } | 228 | } |
229 | 229 | ||
230 | private setOpenGraphTags() { | 230 | private setOpenGraphTags() { |
231 | this.metaService.setTitle(this.video.name); | ||
232 | |||
231 | this.metaService.setTag('og:type', 'video'); | 233 | this.metaService.setTag('og:type', 'video'); |
232 | 234 | ||
233 | this.metaService.setTag('og:title', this.video.name); | 235 | this.metaService.setTag('og:title', this.video.name); |