1 import { from } from 'rxjs'
2 import { finalize, map, switchMap, tap } from 'rxjs/operators'
3 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
4 import { MarkdownService, Notifier, UserService } from '@app/core'
5 import { FindInBulkService } from '@app/shared/shared-search'
6 import { VideoSortField } from '@shared/models'
7 import { Video, VideoChannel, VideoService } from '../../shared-main'
8 import { CustomMarkupComponent } from './shared'
11 * Markup component that creates a channel miniature only
15 selector: 'my-channel-miniature-markup',
16 templateUrl: 'channel-miniature-markup.component.html',
17 styleUrls: [ 'channel-miniature-markup.component.scss' ]
19 export class ChannelMiniatureMarkupComponent implements CustomMarkupComponent, OnInit {
21 @Input() displayLatestVideo: boolean
22 @Input() displayDescription: boolean
24 @Output() loaded = new EventEmitter<boolean>()
27 descriptionHTML: string
32 private markdown: MarkdownService,
33 private findInBulk: FindInBulkService,
34 private videoService: VideoService,
35 private userService: UserService,
36 private notifier: Notifier
40 this.findInBulk.getChannel(this.name)
43 this.channel = channel
45 switchMap(() => from(this.markdown.textMarkdownToHTML(this.channel.description))),
47 this.descriptionHTML = html
49 switchMap(() => this.loadVideosObservable()),
50 finalize(() => this.loaded.emit(true))
52 next: ({ total, data }) => {
53 this.totalVideos = total
57 error: err => this.notifier.error($localize`Error in channel miniature component: ${err.message}`)
61 getVideoChannelLink () {
62 return [ '/c', this.channel.nameWithHost ]
65 private loadVideosObservable () {
66 const videoOptions = {
67 videoChannel: this.channel,
72 sort: '-publishedAt' as VideoSortField,
76 return this.userService.getAnonymousOrLoggedUser()
78 map(user => user.nsfwPolicy),
79 switchMap(nsfwPolicy => this.videoService.getVideoChannelVideos({ ...videoOptions, nsfwPolicy }))