]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts
Fetch things in bulk for the homepage
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-custom-markup / peertube-custom-tags / channel-miniature-markup.component.ts
... / ...
CommitLineData
1import { from } from 'rxjs'
2import { finalize, map, switchMap, tap } from 'rxjs/operators'
3import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
4import { MarkdownService, Notifier, UserService } from '@app/core'
5import { FindInBulkService } from '@app/shared/shared-search'
6import { Video, VideoSortField } from '@shared/models/videos'
7import { VideoChannel, VideoService } from '../../shared-main'
8import { CustomMarkupComponent } from './shared'
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})
19export class ChannelMiniatureMarkupComponent implements CustomMarkupComponent, OnInit {
20 @Input() name: string
21 @Input() displayLatestVideo: boolean
22 @Input() displayDescription: boolean
23
24 @Output() loaded = new EventEmitter<boolean>()
25
26 channel: VideoChannel
27 descriptionHTML: string
28 totalVideos: number
29 video: Video
30
31 constructor (
32 private markdown: MarkdownService,
33 private findInBulk: FindInBulkService,
34 private videoService: VideoService,
35 private userService: UserService,
36 private notifier: Notifier
37 ) { }
38
39 ngOnInit () {
40 this.findInBulk.getChannel(this.name)
41 .pipe(
42 tap(channel => this.channel = channel),
43 switchMap(() => from(this.markdown.textMarkdownToHTML(this.channel.description))),
44 tap(html => this.descriptionHTML = html),
45 switchMap(() => this.loadVideosObservable()),
46 finalize(() => this.loaded.emit(true))
47 ).subscribe(
48 ({ total, data }) => {
49 this.totalVideos = total
50 this.video = data[0]
51 },
52
53 err => this.notifier.error('Error in channel miniature component: ' + err.message)
54 )
55 }
56
57 getVideoChannelLink () {
58 return [ '/c', this.channel.nameWithHost ]
59 }
60
61 private loadVideosObservable () {
62 const videoOptions = {
63 videoChannel: this.channel,
64 videoPagination: {
65 currentPage: 1,
66 itemsPerPage: 1
67 },
68 sort: '-publishedAt' as VideoSortField,
69 count: 1
70 }
71
72 return this.userService.getAnonymousOrLoggedUser()
73 .pipe(
74 map(user => user.nsfwPolicy),
75 switchMap(nsfwPolicy => this.videoService.getVideoChannelVideos({ ...videoOptions, nsfwPolicy }))
76 )
77 }
78}