import { Subscription } from 'rxjs' import { first, tap } from 'rxjs/operators' import { Component, ComponentFactoryResolver, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' import { AuthService, ConfirmService, LocalStorageService, Notifier, ScreenService, ServerService, UserService } from '@app/core' import { immutableAssign } from '@app/helpers' import { VideoChannel, VideoChannelService, VideoService } from '@app/shared/shared-main' import { AbstractVideoList } from '@app/shared/shared-video-miniature' import { VideoFilter } from '@shared/models' @Component({ selector: 'my-video-channel-videos', templateUrl: '../../shared/shared-video-miniature/abstract-video-list.html', styleUrls: [ '../../shared/shared-video-miniature/abstract-video-list.scss' ] }) export class VideoChannelVideosComponent extends AbstractVideoList implements OnInit, OnDestroy { titlePage: string loadOnInit = false filter: VideoFilter = null private videoChannel: VideoChannel private videoChannelSub: Subscription constructor ( protected router: Router, protected serverService: ServerService, protected route: ActivatedRoute, protected authService: AuthService, protected userService: UserService, protected notifier: Notifier, protected confirmService: ConfirmService, protected screenService: ScreenService, protected storageService: LocalStorageService, protected cfr: ComponentFactoryResolver, private videoChannelService: VideoChannelService, private videoService: VideoService ) { super() this.titlePage = $localize`Published videos` this.displayOptions = { ...this.displayOptions, avatar: false } } ngOnInit () { super.ngOnInit() this.enableAllFilterIfPossible() // Parent get the video channel for us this.videoChannelSub = this.videoChannelService.videoChannelLoaded .pipe(first()) .subscribe(videoChannel => { this.videoChannel = videoChannel this.reloadVideos() this.generateSyndicationList() }) } ngOnDestroy () { if (this.videoChannelSub) this.videoChannelSub.unsubscribe() super.ngOnDestroy() } getVideosObservable (page: number) { const newPagination = immutableAssign(this.pagination, { currentPage: page }) const options = { videoChannel: this.videoChannel, videoPagination: newPagination, sort: this.sort, nsfwPolicy: this.nsfwPolicy, videoFilter: this.filter } return this.videoService .getVideoChannelVideos(options) .pipe( tap(({ total }) => { this.titlePage = total === 1 ? $localize`Published 1 video` : $localize`Published ${total} videos` }) ) } generateSyndicationList () { this.syndicationItems = this.videoService.getVideoChannelFeedUrls(this.videoChannel.id) } toggleModerationDisplay () { this.filter = this.buildLocalFilter(this.filter, null) this.reloadVideos() } }