X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channels.component.ts;h=41fdb5e799e2f44fa9a5c11fa1e31a900924be29;hb=0a25749f14a083d2c388b6229cbdbba695d0387e;hp=5eca64fb55697e9c1c71c2250edbb807869d20d1;hpb=170726f523ff48f89da45473fc53ca54784f43dd;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+video-channels/video-channels.component.ts b/client/src/app/+video-channels/video-channels.component.ts index 5eca64fb5..41fdb5e79 100644 --- a/client/src/app/+video-channels/video-channels.component.ts +++ b/client/src/app/+video-channels/video-channels.component.ts @@ -1,24 +1,128 @@ -import { Component, OnInit } from '@angular/core' +import { Hotkey, HotkeysService } from 'angular2-hotkeys' +import { Subscription } from 'rxjs' +import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators' +import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core' import { ActivatedRoute } from '@angular/router' -import { VideoChannel } from '@app/shared/video-channel/video-channel.model' -import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' +import { AuthService, MarkdownService, Notifier, RestExtractor, ScreenService } from '@app/core' +import { ListOverflowItem, VideoChannel, VideoChannelService, VideoService } from '@app/shared/shared-main' +import { SupportModalComponent } from '@app/shared/shared-support-modal' +import { SubscribeButtonComponent } from '@app/shared/shared-user-subscription' +import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes' @Component({ templateUrl: './video-channels.component.html', styleUrls: [ './video-channels.component.scss' ] }) -export class VideoChannelsComponent implements OnInit { +export class VideoChannelsComponent implements OnInit, OnDestroy { + @ViewChild('subscribeButton') subscribeButton: SubscribeButtonComponent + @ViewChild('supportModal') supportModal: SupportModalComponent + videoChannel: VideoChannel + hotkeys: Hotkey[] + links: ListOverflowItem[] = [] + isChannelManageable = false + + channelVideosCount: number + ownerDescriptionHTML = '' + channelDescriptionHTML = '' + channelDescriptionExpanded = false + + private routeSub: Subscription constructor ( private route: ActivatedRoute, - private videoChannelService: VideoChannelService - ) {} + private notifier: Notifier, + private authService: AuthService, + private videoChannelService: VideoChannelService, + private videoService: VideoService, + private restExtractor: RestExtractor, + private hotkeysService: HotkeysService, + private screenService: ScreenService, + private markdown: MarkdownService + ) { } ngOnInit () { - const videoChannelId = this.route.snapshot.params['videoChannelId'] + this.routeSub = this.route.params + .pipe( + map(params => params[ 'videoChannelName' ]), + distinctUntilChanged(), + switchMap(videoChannelName => this.videoChannelService.getVideoChannel(videoChannelName)), + catchError(err => this.restExtractor.redirectTo404IfNotFound(err, 'other', [ + HttpStatusCode.BAD_REQUEST_400, + HttpStatusCode.NOT_FOUND_404 + ])) + ) + .subscribe(async videoChannel => { + this.channelDescriptionHTML = await this.markdown.textMarkdownToHTML(videoChannel.description) + this.ownerDescriptionHTML = await this.markdown.textMarkdownToHTML(videoChannel.ownerAccount.description) + + // After the markdown renderer to avoid layout changes + this.videoChannel = videoChannel + + this.loadChannelVideosCount() + }) + + this.hotkeys = [ + new Hotkey('S', (event: KeyboardEvent): boolean => { + this.subscribeButton.subscribed ? + this.subscribeButton.unsubscribe() : + this.subscribeButton.subscribe() + return false + }, undefined, $localize`Subscribe to the account`) + ] + if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys) + + this.links = [ + { label: $localize`VIDEOS`, routerLink: 'videos' }, + { label: $localize`PLAYLISTS`, routerLink: 'video-playlists' } + ] + } + + ngOnDestroy () { + if (this.routeSub) this.routeSub.unsubscribe() + + // Unbind hotkeys + if (this.isUserLoggedIn()) this.hotkeysService.remove(this.hotkeys) + } + + isInSmallView () { + return this.screenService.isInSmallView() + } + + isUserLoggedIn () { + return this.authService.isLoggedIn() + } + + isManageable () { + if (!this.isUserLoggedIn()) return false + + return this.videoChannel?.ownerAccount.userId === this.authService.getUser().id + } + + activateCopiedMessage () { + this.notifier.success($localize`Username copied`) + } + + hasShowMoreDescription () { + return !this.channelDescriptionExpanded && this.channelDescriptionHTML.length > 100 + } + + showSupportModal () { + this.supportModal.show() + } + + getAccountUrl () { + return [ '/accounts', this.videoChannel.ownerBy ] + } - this.videoChannelService.getVideoChannel(videoChannelId) - .subscribe(videoChannel => this.videoChannel = videoChannel) + private loadChannelVideosCount () { + this.videoService.getVideoChannelVideos({ + videoChannel: this.videoChannel, + videoPagination: { + currentPage: 1, + itemsPerPage: 0 + }, + sort: '-publishedAt' + }).subscribe(res => this.channelVideosCount = res.total) } }