X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channels.component.ts;h=afbf960325fa6a5a83556c3dd694b9f05c4af49d;hb=0e45e336f62a411b3c423be46d16252355c754d7;hp=bb601e22725989edde949275c4dc0577df67a70f;hpb=ab398a05e9ffaacb8fc713bb2ba9717ac463b34c;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 bb601e227..afbf96032 100644 --- a/client/src/app/+video-channels/video-channels.component.ts +++ b/client/src/app/+video-channels/video-channels.component.ts @@ -3,10 +3,12 @@ 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 { AuthService, Notifier, RestExtractor, ScreenService } from '@app/core' -import { ListOverflowItem, VideoChannel, VideoChannelService } from '@app/shared/shared-main' +import { AuthService, MarkdownService, Notifier, RestExtractor, ScreenService } from '@app/core' +import { Account, ListOverflowItem, VideoChannel, VideoChannelService, VideoService } from '@app/shared/shared-main' +import { BlocklistService } from '@app/shared/shared-moderation' +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' +import { HttpStatusCode, UserRight } from '@shared/models' @Component({ templateUrl: './video-channels.component.html', @@ -14,12 +16,19 @@ import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes' }) export class VideoChannelsComponent implements OnInit, OnDestroy { @ViewChild('subscribeButton') subscribeButton: SubscribeButtonComponent + @ViewChild('supportModal') supportModal: SupportModalComponent videoChannel: VideoChannel + ownerAccount: Account hotkeys: Hotkey[] links: ListOverflowItem[] = [] isChannelManageable = false + channelVideosCount: number + ownerDescriptionHTML = '' + channelDescriptionHTML = '' + channelDescriptionExpanded = false + private routeSub: Subscription constructor ( @@ -27,15 +36,18 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { private notifier: Notifier, private authService: AuthService, private videoChannelService: VideoChannelService, + private videoService: VideoService, private restExtractor: RestExtractor, private hotkeysService: HotkeysService, - private screenService: ScreenService + private screenService: ScreenService, + private markdown: MarkdownService, + private blocklist: BlocklistService ) { } ngOnInit () { this.routeSub = this.route.params .pipe( - map(params => params[ 'videoChannelName' ]), + map(params => params['videoChannelName']), distinctUntilChanged(), switchMap(videoChannelName => this.videoChannelService.getVideoChannel(videoChannelName)), catchError(err => this.restExtractor.redirectTo404IfNotFound(err, 'other', [ @@ -43,23 +55,32 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { HttpStatusCode.NOT_FOUND_404 ])) ) - .subscribe(videoChannel => { + .subscribe(async videoChannel => { + this.channelDescriptionHTML = await this.markdown.textMarkdownToHTML({ + markdown: videoChannel.description, + withEmoji: true, + withHtml: true + }) + + this.ownerDescriptionHTML = await this.markdown.textMarkdownToHTML({ + markdown: videoChannel.ownerAccount.description, + withEmoji: true, + withHtml: true + }) + + // After the markdown renderer to avoid layout changes this.videoChannel = videoChannel + this.ownerAccount = new Account(this.videoChannel.ownerAccount) - if (this.authService.isLoggedIn()) { - this.authService.userInformationLoaded - .subscribe(() => { - const channelUserId = this.videoChannel.ownerAccount.userId - this.isChannelManageable = channelUserId && channelUserId === this.authService.getUser().id - }) - } + this.loadChannelVideosCount() + this.loadOwnerBlockStatus() }) this.hotkeys = [ new Hotkey('S', (event: KeyboardEvent): boolean => { - this.subscribeButton.subscribed ? - this.subscribeButton.unsubscribe() : - this.subscribeButton.subscribe() + if (this.subscribeButton.subscribed) this.subscribeButton.unsubscribe() + else this.subscribeButton.subscribe() + return false }, undefined, $localize`Subscribe to the account`) ] @@ -67,8 +88,7 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { this.links = [ { label: $localize`VIDEOS`, routerLink: 'videos' }, - { label: $localize`VIDEO PLAYLISTS`, routerLink: 'video-playlists' }, - { label: $localize`ABOUT`, routerLink: 'about' } + { label: $localize`PLAYLISTS`, routerLink: 'video-playlists' } ] } @@ -79,7 +99,7 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { if (this.isUserLoggedIn()) this.hotkeysService.remove(this.hotkeys) } - get isInSmallView () { + isInSmallView () { return this.screenService.isInSmallView() } @@ -87,12 +107,48 @@ export class VideoChannelsComponent implements OnInit, OnDestroy { return this.authService.isLoggedIn() } - get isManageable () { + isOwner () { + if (!this.isUserLoggedIn()) return false + + return this.videoChannel?.ownerAccount.userId === this.authService.getUser().id + } + + isManageable () { + if (!this.videoChannel.isLocal) return false if (!this.isUserLoggedIn()) return false - return this.videoChannel.ownerAccount.userId === this.authService.getUser().id + + return this.isOwner() || this.authService.getUser().hasRight(UserRight.MANAGE_ANY_VIDEO_CHANNEL) } activateCopiedMessage () { this.notifier.success($localize`Username copied`) } + + hasShowMoreDescription () { + return !this.channelDescriptionExpanded && this.channelDescriptionHTML.length > 100 + } + + showSupportModal () { + this.supportModal.show() + } + + getAccountUrl () { + return [ '/a', this.videoChannel.ownerBy ] + } + + private loadChannelVideosCount () { + this.videoService.getVideoChannelVideos({ + videoChannel: this.videoChannel, + videoPagination: { + currentPage: 1, + itemsPerPage: 0 + }, + sort: '-publishedAt' + }).subscribe(res => this.channelVideosCount = res.total) + } + + private loadOwnerBlockStatus () { + this.blocklist.getStatus({ accounts: [ this.ownerAccount.nameWithHostForced ], hosts: [ this.ownerAccount.host ] }) + .subscribe(status => this.ownerAccount.updateBlockStatus(status)) + } }