]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+accounts/account-video-channels/account-video-channels.component.ts
Sort channels by -updatedAt
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / account-video-channels / account-video-channels.component.ts
1 import { from, Subject, Subscription } from 'rxjs'
2 import { concatMap, map, switchMap, tap } from 'rxjs/operators'
3 import { Component, OnDestroy, OnInit } from '@angular/core'
4 import { ComponentPagination, hasMoreItems, MarkdownService, ScreenService, User, UserService } from '@app/core'
5 import { Account, AccountService, Video, VideoChannel, VideoChannelService, VideoService } from '@app/shared/shared-main'
6 import { NSFWPolicyType, VideoSortField } from '@shared/models'
7 import { MiniatureDisplayOptions } from '@app/shared/shared-video-miniature'
8
9 @Component({
10 selector: 'my-account-video-channels',
11 templateUrl: './account-video-channels.component.html',
12 styleUrls: [ './account-video-channels.component.scss' ]
13 })
14 export class AccountVideoChannelsComponent implements OnInit, OnDestroy {
15 account: Account
16 videoChannels: VideoChannel[] = []
17
18 videos: { [id: number]: { total: number, videos: Video[] } } = {}
19
20 channelsDescriptionHTML: { [ id: number ]: string } = {}
21
22 channelPagination: ComponentPagination = {
23 currentPage: 1,
24 itemsPerPage: 2,
25 totalItems: null
26 }
27
28 videosPagination: ComponentPagination = {
29 currentPage: 1,
30 itemsPerPage: 5,
31 totalItems: null
32 }
33 videosSort: VideoSortField = '-publishedAt'
34
35 onChannelDataSubject = new Subject<any>()
36
37 userMiniature: User
38 nsfwPolicy: NSFWPolicyType
39 miniatureDisplayOptions: MiniatureDisplayOptions = {
40 date: true,
41 views: true,
42 by: false,
43 avatar: false,
44 privacyLabel: false,
45 privacyText: false,
46 state: false,
47 blacklistInfo: false
48 }
49
50 private accountSub: Subscription
51
52 constructor (
53 private accountService: AccountService,
54 private videoChannelService: VideoChannelService,
55 private videoService: VideoService,
56 private markdown: MarkdownService,
57 private userService: UserService
58 ) { }
59
60 ngOnInit () {
61 // Parent get the account for us
62 this.accountSub = this.accountService.accountLoaded
63 .subscribe(account => {
64 this.account = account
65
66 this.loadMoreChannels()
67 })
68
69 this.userService.getAnonymousOrLoggedUser()
70 .subscribe(user => {
71 this.userMiniature = user
72
73 this.nsfwPolicy = user.nsfwPolicy
74 })
75 }
76
77 ngOnDestroy () {
78 if (this.accountSub) this.accountSub.unsubscribe()
79 }
80
81 loadMoreChannels () {
82 const options = {
83 account: this.account,
84 componentPagination: this.channelPagination,
85 sort: '-updatedAt'
86 }
87
88 this.videoChannelService.listAccountVideoChannels(options)
89 .pipe(
90 tap(res => this.channelPagination.totalItems = res.total),
91 switchMap(res => from(res.data)),
92 concatMap(videoChannel => {
93 const options = {
94 videoChannel,
95 videoPagination: this.videosPagination,
96 sort: this.videosSort,
97 nsfwPolicy: this.nsfwPolicy
98 }
99
100 return this.videoService.getVideoChannelVideos(options)
101 .pipe(map(data => ({ videoChannel, videos: data.data, total: data.total })))
102 })
103 )
104 .subscribe(async ({ videoChannel, videos, total }) => {
105 this.channelsDescriptionHTML[videoChannel.id] = await this.markdown.textMarkdownToHTML(videoChannel.description)
106
107 this.videoChannels.push(videoChannel)
108
109 this.videos[videoChannel.id] = { videos, total }
110
111 this.onChannelDataSubject.next([ videoChannel ])
112 })
113 }
114
115 getVideosOf (videoChannel: VideoChannel) {
116 const obj = this.videos[ videoChannel.id ]
117 if (!obj) return []
118
119 return obj.videos
120 }
121
122 getTotalVideosOf (videoChannel: VideoChannel) {
123 const obj = this.videos[ videoChannel.id ]
124 if (!obj) return undefined
125
126 return obj.total
127 }
128
129 getChannelDescription (videoChannel: VideoChannel) {
130 return this.channelsDescriptionHTML[videoChannel.id]
131 }
132
133 onNearOfBottom () {
134 if (!hasMoreItems(this.channelPagination)) return
135
136 this.channelPagination.currentPage += 1
137
138 this.loadMoreChannels()
139 }
140
141 getVideoChannelLink (videoChannel: VideoChannel) {
142 return [ '/video-channels', videoChannel.nameWithHost ]
143 }
144 }