]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts
Fix HTML in account/channel description
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-custom-markup / peertube-custom-tags / channel-miniature-markup.component.ts
CommitLineData
8b61dcaf
C
1import { from } from 'rxjs'
2import { finalize, map, switchMap, tap } from 'rxjs/operators'
0ca454e3 3import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
8b61dcaf 4import { MarkdownService, Notifier, UserService } from '@app/core'
3da38d6e 5import { FindInBulkService } from '@app/shared/shared-search'
e9609325
C
6import { VideoSortField } from '@shared/models'
7import { Video, VideoChannel, VideoService } from '../../shared-main'
0ca454e3 8import { CustomMarkupComponent } from './shared'
2539932e
C
9
10/*
11 * Markup component that creates a channel miniature only
12*/
13
14@Component({
15 selector: 'my-channel-miniature-markup',
16 templateUrl: 'channel-miniature-markup.component.html',
17 styleUrls: [ 'channel-miniature-markup.component.scss' ]
18})
0ca454e3 19export class ChannelMiniatureMarkupComponent implements CustomMarkupComponent, OnInit {
2539932e 20 @Input() name: string
61cbafc1
C
21 @Input() displayLatestVideo: boolean
22 @Input() displayDescription: boolean
2539932e 23
0ca454e3
C
24 @Output() loaded = new EventEmitter<boolean>()
25
2539932e 26 channel: VideoChannel
61cbafc1
C
27 descriptionHTML: string
28 totalVideos: number
29 video: Video
2539932e
C
30
31 constructor (
61cbafc1 32 private markdown: MarkdownService,
3da38d6e 33 private findInBulk: FindInBulkService,
61cbafc1 34 private videoService: VideoService,
8b61dcaf
C
35 private userService: UserService,
36 private notifier: Notifier
2539932e
C
37 ) { }
38
39 ngOnInit () {
3da38d6e 40 this.findInBulk.getChannel(this.name)
8b61dcaf 41 .pipe(
9df52d66
C
42 tap(channel => {
43 this.channel = channel
44 }),
0e45e336
C
45 switchMap(() => from(this.markdown.textMarkdownToHTML({
46 markdown: this.channel.description,
47 withEmoji: true,
48 withHtml: true
49 }))),
9df52d66
C
50 tap(html => {
51 this.descriptionHTML = html
52 }),
8b61dcaf
C
53 switchMap(() => this.loadVideosObservable()),
54 finalize(() => this.loaded.emit(true))
1378c0d3
C
55 ).subscribe({
56 next: ({ total, data }) => {
8b61dcaf
C
57 this.totalVideos = total
58 this.video = data[0]
59 },
61cbafc1 60
1378c0d3
C
61 error: err => this.notifier.error($localize`Error in channel miniature component: ${err.message}`)
62 })
61cbafc1
C
63 }
64
65 getVideoChannelLink () {
66 return [ '/c', this.channel.nameWithHost ]
67 }
68
8b61dcaf 69 private loadVideosObservable () {
61cbafc1
C
70 const videoOptions = {
71 videoChannel: this.channel,
72 videoPagination: {
73 currentPage: 1,
74 itemsPerPage: 1
75 },
76 sort: '-publishedAt' as VideoSortField,
77 count: 1
78 }
79
8b61dcaf 80 return this.userService.getAnonymousOrLoggedUser()
61cbafc1
C
81 .pipe(
82 map(user => user.nsfwPolicy),
83 switchMap(nsfwPolicy => this.videoService.getVideoChannelVideos({ ...videoOptions, nsfwPolicy }))
84 )
2539932e
C
85 }
86}