X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channel-videos%2Fvideo-channel-videos.component.ts;h=c1dc25aaf3b2706410ffc25e8562805ef3e05c5e;hb=93cae47925e4dd68b7d34a41927b2740b4fab1b4;hp=3cda630d307320627f8d63e7e3ee269a607bf99d;hpb=170726f523ff48f89da45473fc53ca54784f43dd;p=github%2FChocobozzz%2FPeerTube.git 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 3cda630d3..c1dc25aaf 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,16 +1,17 @@ import { Component, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { Location } from '@angular/common' import { immutableAssign } from '@app/shared/misc/utils' -import { NotificationsService } from 'angular2-notifications' -import 'rxjs/add/observable/from' -import 'rxjs/add/operator/concatAll' import { AuthService } from '../../core/auth' import { ConfirmService } from '../../core/confirm' import { AbstractVideoList } from '../../shared/video/abstract-video-list' import { VideoService } from '../../shared/video/video.service' import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' import { VideoChannel } from '@app/shared/video-channel/video-channel.model' +import { first, tap } from 'rxjs/operators' +import { I18n } from '@ngx-translate/i18n-polyfill' +import { Subscription } from 'rxjs' +import { ScreenService } from '@app/shared/misc/screen.service' +import { Notifier, ServerService } from '@app/core' @Component({ selector: 'my-video-channel-videos', @@ -21,48 +22,59 @@ import { VideoChannel } from '@app/shared/video-channel/video-channel.model' ] }) export class VideoChannelVideosComponent extends AbstractVideoList implements OnInit, OnDestroy { - titlePage = 'Published videos' - marginContent = false // Disable margin - currentRoute = '/video-channel/videos' + titlePage: string loadOnInit = false private videoChannel: VideoChannel + private videoChannelSub: Subscription constructor ( + protected i18n: I18n, protected router: Router, + protected serverService: ServerService, protected route: ActivatedRoute, protected authService: AuthService, - protected notificationsService: NotificationsService, + protected notifier: Notifier, protected confirmService: ConfirmService, - protected location: Location, + protected screenService: ScreenService, private videoChannelService: VideoChannelService, private videoService: VideoService ) { super() + + this.titlePage = this.i18n('Published videos') } ngOnInit () { super.ngOnInit() // Parent get the video channel for us - this.videoChannelService.videoChannelLoaded - .subscribe(videoChannel => { - this.videoChannel = videoChannel - this.currentRoute = '/video-channel/' + this.videoChannel.uuid + '/videos' + this.videoChannelSub = this.videoChannelService.videoChannelLoaded + .pipe(first()) + .subscribe(videoChannel => { + this.videoChannel = videoChannel - this.loadMoreVideos(this.pagination.currentPage) - this.generateSyndicationList() - }) + this.reloadVideos() + this.generateSyndicationList() + }) } ngOnDestroy () { + if (this.videoChannelSub) this.videoChannelSub.unsubscribe() + super.ngOnDestroy() } getVideosObservable (page: number) { const newPagination = immutableAssign(this.pagination, { currentPage: page }) - return this.videoService.getVideoChannelVideos(this.videoChannel, newPagination, this.sort) + return this.videoService + .getVideoChannelVideos(this.videoChannel, newPagination, this.sort) + .pipe( + tap(({ total }) => { + this.titlePage = this.i18n('Published {{total}} videos', { total }) + }) + ) } generateSyndicationList () {