diff options
author | Chocobozzz <me@florianbigard.com> | 2019-03-21 16:49:46 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-04-02 11:45:02 +0200 |
commit | 489290b8b16bede6ddfb773adad55dee6471ccfd (patch) | |
tree | 8d3bb73c80df18f1e4d15b23a7e4080a6bc5985e /client/src/app/+video-channels/video-channel-videos | |
parent | 7ccddd7b5250bd25a917a6e77e58b87b9484a2a4 (diff) | |
download | PeerTube-489290b8b16bede6ddfb773adad55dee6471ccfd.tar.gz PeerTube-489290b8b16bede6ddfb773adad55dee6471ccfd.tar.zst PeerTube-489290b8b16bede6ddfb773adad55dee6471ccfd.zip |
Restore videos list components
Diffstat (limited to 'client/src/app/+video-channels/video-channel-videos')
-rw-r--r-- | client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts b/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts index dea378a6e..8af31000e 100644 --- a/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts +++ b/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts | |||
@@ -1,6 +1,5 @@ | |||
1 | import { Component, OnDestroy, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { Location } from '@angular/common' | ||
4 | import { immutableAssign } from '@app/shared/misc/utils' | 3 | import { immutableAssign } from '@app/shared/misc/utils' |
5 | import { AuthService } from '../../core/auth' | 4 | import { AuthService } from '../../core/auth' |
6 | import { ConfirmService } from '../../core/confirm' | 5 | import { ConfirmService } from '../../core/confirm' |
@@ -12,7 +11,7 @@ import { tap } from 'rxjs/operators' | |||
12 | import { I18n } from '@ngx-translate/i18n-polyfill' | 11 | import { I18n } from '@ngx-translate/i18n-polyfill' |
13 | import { Subscription } from 'rxjs' | 12 | import { Subscription } from 'rxjs' |
14 | import { ScreenService } from '@app/shared/misc/screen.service' | 13 | import { ScreenService } from '@app/shared/misc/screen.service' |
15 | import { Notifier } from '@app/core' | 14 | import { Notifier, ServerService } from '@app/core' |
16 | 15 | ||
17 | @Component({ | 16 | @Component({ |
18 | selector: 'my-video-channel-videos', | 17 | selector: 'my-video-channel-videos', |
@@ -25,7 +24,6 @@ import { Notifier } from '@app/core' | |||
25 | export class VideoChannelVideosComponent extends AbstractVideoList implements OnInit, OnDestroy { | 24 | export class VideoChannelVideosComponent extends AbstractVideoList implements OnInit, OnDestroy { |
26 | titlePage: string | 25 | titlePage: string |
27 | marginContent = false // Disable margin | 26 | marginContent = false // Disable margin |
28 | currentRoute = '/video-channels/videos' | ||
29 | loadOnInit = false | 27 | loadOnInit = false |
30 | 28 | ||
31 | private videoChannel: VideoChannel | 29 | private videoChannel: VideoChannel |
@@ -33,13 +31,13 @@ export class VideoChannelVideosComponent extends AbstractVideoList implements On | |||
33 | 31 | ||
34 | constructor ( | 32 | constructor ( |
35 | protected router: Router, | 33 | protected router: Router, |
34 | protected serverService: ServerService, | ||
36 | protected route: ActivatedRoute, | 35 | protected route: ActivatedRoute, |
37 | protected authService: AuthService, | 36 | protected authService: AuthService, |
38 | protected notifier: Notifier, | 37 | protected notifier: Notifier, |
39 | protected confirmService: ConfirmService, | 38 | protected confirmService: ConfirmService, |
40 | protected location: Location, | ||
41 | protected screenService: ScreenService, | 39 | protected screenService: ScreenService, |
42 | protected i18n: I18n, | 40 | private i18n: I18n, |
43 | private videoChannelService: VideoChannelService, | 41 | private videoChannelService: VideoChannelService, |
44 | private videoService: VideoService | 42 | private videoService: VideoService |
45 | ) { | 43 | ) { |
@@ -55,7 +53,6 @@ export class VideoChannelVideosComponent extends AbstractVideoList implements On | |||
55 | this.videoChannelSub = this.videoChannelService.videoChannelLoaded | 53 | this.videoChannelSub = this.videoChannelService.videoChannelLoaded |
56 | .subscribe(videoChannel => { | 54 | .subscribe(videoChannel => { |
57 | this.videoChannel = videoChannel | 55 | this.videoChannel = videoChannel |
58 | this.currentRoute = '/video-channels/' + this.videoChannel.nameWithHost + '/videos' | ||
59 | 56 | ||
60 | this.reloadVideos() | 57 | this.reloadVideos() |
61 | this.generateSyndicationList() | 58 | this.generateSyndicationList() |