]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video-miniature/video-miniature.component.ts
add option to always show channel display name (#4422)
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-miniature.component.ts
1 import { switchMap } from 'rxjs/operators'
2 import {
3 ChangeDetectionStrategy,
4 ChangeDetectorRef,
5 Component,
6 EventEmitter,
7 Inject,
8 Input,
9 LOCALE_ID,
10 OnInit,
11 Output
12 } from '@angular/core'
13 import { AuthService, ScreenService, ServerService, User } from '@app/core'
14 import { HTMLServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '@shared/models'
15 import { LinkType } from '../../../types/link.type'
16 import { ActorAvatarSize } from '../shared-actor-image/actor-avatar.component'
17 import { Video } from '../shared-main'
18 import { VideoPlaylistService } from '../shared-video-playlist'
19 import { VideoActionsDisplayType } from './video-actions-dropdown.component'
20
21 export type MiniatureDisplayOptions = {
22 date?: boolean
23 views?: boolean
24 by?: boolean
25 avatar?: boolean
26 privacyLabel?: boolean
27 privacyText?: boolean
28 state?: boolean
29 blacklistInfo?: boolean
30 nsfw?: boolean
31 }
32 @Component({
33 selector: 'my-video-miniature',
34 styleUrls: [ './video-miniature.component.scss' ],
35 templateUrl: './video-miniature.component.html',
36 changeDetection: ChangeDetectionStrategy.OnPush
37 })
38 export class VideoMiniatureComponent implements OnInit {
39 @Input() user: User
40 @Input() video: Video
41
42 @Input() displayOptions: MiniatureDisplayOptions = {
43 date: true,
44 views: true,
45 by: true,
46 avatar: false,
47 privacyLabel: false,
48 privacyText: false,
49 state: false,
50 blacklistInfo: false
51 }
52 @Input() displayVideoActions = true
53
54 @Input() actorImageSize: ActorAvatarSize = '40'
55
56 @Input() displayAsRow = false
57
58 @Input() videoLinkType: LinkType = 'internal'
59
60 @Output() videoBlocked = new EventEmitter()
61 @Output() videoUnblocked = new EventEmitter()
62 @Output() videoRemoved = new EventEmitter()
63 @Output() videoAccountMuted = new EventEmitter()
64
65 videoActionsDisplayOptions: VideoActionsDisplayType = {
66 playlist: true,
67 download: false,
68 update: true,
69 blacklist: true,
70 delete: true,
71 report: true,
72 duplicate: true,
73 mute: true
74 }
75 showActions = false
76 serverConfig: HTMLServerConfig
77
78 addToWatchLaterText: string
79 addedToWatchLaterText: string
80 inWatchLaterPlaylist: boolean
81 channelLinkTitle = ''
82
83 watchLaterPlaylist: {
84 id: number
85 playlistElementId?: number
86 }
87
88 videoRouterLink: string | any[] = []
89 videoHref: string
90 videoTarget: string
91
92 private ownerDisplayType: 'account' | 'videoChannel'
93
94 constructor (
95 private screenService: ScreenService,
96 private serverService: ServerService,
97 private authService: AuthService,
98 private videoPlaylistService: VideoPlaylistService,
99 private cd: ChangeDetectorRef,
100 @Inject(LOCALE_ID) private localeId: string
101 ) {}
102
103 get authorAccount () {
104 return this.serverConfig.client.videos.miniature.showAuthorDisplayName ? this.video.account.displayName : this.video.byAccount
105 }
106
107 get authorChannel () {
108 return this.serverConfig.client.videos.miniature.showAuthorDisplayName ? this.video.channel.displayName : this.video.byVideoChannel
109 }
110
111 get isVideoBlur () {
112 return this.video.isVideoNSFWForUser(this.user, this.serverConfig)
113 }
114
115 ngOnInit () {
116 this.serverConfig = this.serverService.getHTMLConfig()
117 this.buildVideoLink()
118
119 this.setUpBy()
120
121 this.channelLinkTitle = $localize`${this.video.channel.name} (channel page)`
122
123 // We rely on mouseenter to lazy load actions
124 if (this.screenService.isInTouchScreen()) {
125 this.loadActions()
126 }
127 }
128
129 buildVideoLink () {
130 if (this.videoLinkType === 'internal' || !this.video.url) {
131 this.videoRouterLink = Video.buildWatchUrl(this.video)
132 return
133 }
134
135 if (this.videoLinkType === 'external') {
136 this.videoRouterLink = null
137 this.videoHref = this.video.url
138 this.videoTarget = '_blank'
139 return
140 }
141
142 // Lazy load
143 this.videoRouterLink = [ '/search/lazy-load-video', { url: this.video.url } ]
144 }
145
146 displayOwnerAccount () {
147 return this.ownerDisplayType === 'account'
148 }
149
150 displayOwnerVideoChannel () {
151 return this.ownerDisplayType === 'videoChannel'
152 }
153
154 isUnlistedVideo () {
155 return this.video.privacy.id === VideoPrivacy.UNLISTED
156 }
157
158 isPrivateVideo () {
159 return this.video.privacy.id === VideoPrivacy.PRIVATE
160 }
161
162 getStateLabel (video: Video) {
163 if (!video.state) return ''
164
165 if (video.privacy.id !== VideoPrivacy.PRIVATE && video.state.id === VideoState.PUBLISHED) {
166 return $localize`Published`
167 }
168
169 if (video.scheduledUpdate) {
170 const updateAt = new Date(video.scheduledUpdate.updateAt.toString()).toLocaleString(this.localeId)
171 return $localize`Publication scheduled on ` + updateAt
172 }
173
174 if (video.state.id === VideoState.TO_TRANSCODE && video.waitTranscoding === true) {
175 return $localize`Waiting transcoding`
176 }
177
178 if (video.state.id === VideoState.TO_TRANSCODE) {
179 return $localize`To transcode`
180 }
181
182 if (video.state.id === VideoState.TO_IMPORT) {
183 return $localize`To import`
184 }
185
186 return ''
187 }
188
189 loadActions () {
190 if (this.displayVideoActions) this.showActions = true
191
192 this.loadWatchLater()
193 }
194
195 onVideoBlocked () {
196 this.videoBlocked.emit()
197 }
198
199 onVideoUnblocked () {
200 this.videoUnblocked.emit()
201 }
202
203 onVideoRemoved () {
204 this.videoRemoved.emit()
205 }
206
207 onVideoAccountMuted () {
208 this.videoAccountMuted.emit()
209 }
210
211 isUserLoggedIn () {
212 return this.authService.isLoggedIn()
213 }
214
215 onWatchLaterClick (currentState: boolean) {
216 if (currentState === true) this.removeFromWatchLater()
217 else this.addToWatchLater()
218
219 this.inWatchLaterPlaylist = !currentState
220 }
221
222 addToWatchLater () {
223 const body = { videoId: this.video.id }
224
225 this.videoPlaylistService.addVideoInPlaylist(this.watchLaterPlaylist.id, body)
226 .subscribe(
227 res => {
228 this.watchLaterPlaylist.playlistElementId = res.videoPlaylistElement.id
229 }
230 )
231 }
232
233 removeFromWatchLater () {
234 this.videoPlaylistService.removeVideoFromPlaylist(this.watchLaterPlaylist.id, this.watchLaterPlaylist.playlistElementId, this.video.id)
235 .subscribe(
236 _ => { /* empty */ }
237 )
238 }
239
240 isWatchLaterPlaylistDisplayed () {
241 return this.displayVideoActions && this.isUserLoggedIn() && this.inWatchLaterPlaylist !== undefined
242 }
243
244 getClasses () {
245 return {
246 'display-as-row': this.displayAsRow
247 }
248 }
249
250 private setUpBy () {
251 const accountName = this.video.account.name
252
253 // If the video channel name is an UUID (not really displayable, we changed this behaviour in v1.0.0-beta.12)
254 // Or has not been customized (default created channel display name)
255 // -> Use the account name
256 if (
257 this.video.channel.displayName === `Default ${accountName} channel` ||
258 this.video.channel.displayName === `Main ${accountName} channel` ||
259 this.video.channel.name.match(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/)
260 ) {
261 this.ownerDisplayType = 'account'
262 } else {
263 this.ownerDisplayType = 'videoChannel'
264 }
265 }
266
267 private loadWatchLater () {
268 if (!this.isUserLoggedIn() || this.inWatchLaterPlaylist !== undefined) return
269
270 this.authService.userInformationLoaded
271 .pipe(switchMap(() => this.videoPlaylistService.listenToVideoPlaylistChange(this.video.id)))
272 .subscribe(existResult => {
273 const watchLaterPlaylist = this.authService.getUser().specialPlaylists.find(p => p.type === VideoPlaylistType.WATCH_LATER)
274 const existsInWatchLater = existResult.find(r => r.playlistId === watchLaterPlaylist.id)
275 this.inWatchLaterPlaylist = false
276
277 this.watchLaterPlaylist = {
278 id: watchLaterPlaylist.id
279 }
280
281 if (existsInWatchLater) {
282 this.inWatchLaterPlaylist = true
283 this.watchLaterPlaylist.playlistElementId = existsInWatchLater.playlistElementId
284 }
285
286 this.cd.markForCheck()
287 })
288
289 this.videoPlaylistService.runPlaylistCheck(this.video.id)
290 }
291 }