]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/shared/shared-video-miniature/video-miniature.component.ts
Deprecate filter video query
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-miniature.component.ts
... / ...
CommitLineData
1import { switchMap } from 'rxjs/operators'
2import {
3 ChangeDetectionStrategy,
4 ChangeDetectorRef,
5 Component,
6 EventEmitter,
7 Inject,
8 Input,
9 LOCALE_ID,
10 OnInit,
11 Output
12} from '@angular/core'
13import { AuthService, ScreenService, ServerService, User } from '@app/core'
14import { HTMLServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '@shared/models'
15import { LinkType } from '../../../types/link.type'
16import { ActorAvatarSize } from '../shared-actor-image/actor-avatar.component'
17import { Video } from '../shared-main'
18import { VideoPlaylistService } from '../shared-video-playlist'
19import { VideoActionsDisplayType } from './video-actions-dropdown.component'
20
21export 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})
38export 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.preferAuthorDisplayName
105 ? this.video.account.displayName
106 : this.video.byAccount
107 }
108
109 get authorChannel () {
110 return this.serverConfig.client.videos.miniature.preferAuthorDisplayName
111 ? this.video.channel.displayName
112 : this.video.byVideoChannel
113 }
114
115 get isVideoBlur () {
116 return this.video.isVideoNSFWForUser(this.user, this.serverConfig)
117 }
118
119 ngOnInit () {
120 this.serverConfig = this.serverService.getHTMLConfig()
121 this.buildVideoLink()
122
123 this.setUpBy()
124
125 this.channelLinkTitle = $localize`${this.video.channel.name} (channel page)`
126
127 // We rely on mouseenter to lazy load actions
128 if (this.screenService.isInTouchScreen()) {
129 this.loadActions()
130 }
131 }
132
133 buildVideoLink () {
134 if (this.videoLinkType === 'internal' || !this.video.url) {
135 this.videoRouterLink = Video.buildWatchUrl(this.video)
136 return
137 }
138
139 if (this.videoLinkType === 'external') {
140 this.videoRouterLink = null
141 this.videoHref = this.video.url
142 this.videoTarget = '_blank'
143 return
144 }
145
146 // Lazy load
147 this.videoRouterLink = [ '/search/lazy-load-video', { url: this.video.url } ]
148 }
149
150 displayOwnerAccount () {
151 return this.ownerDisplayType === 'account'
152 }
153
154 displayOwnerVideoChannel () {
155 return this.ownerDisplayType === 'videoChannel'
156 }
157
158 isUnlistedVideo () {
159 return this.video.privacy.id === VideoPrivacy.UNLISTED
160 }
161
162 isPrivateVideo () {
163 return this.video.privacy.id === VideoPrivacy.PRIVATE
164 }
165
166 getStateLabel (video: Video) {
167 if (!video.state) return ''
168
169 if (video.privacy.id !== VideoPrivacy.PRIVATE && video.state.id === VideoState.PUBLISHED) {
170 return $localize`Published`
171 }
172
173 if (video.scheduledUpdate) {
174 const updateAt = new Date(video.scheduledUpdate.updateAt.toString()).toLocaleString(this.localeId)
175 return $localize`Publication scheduled on ` + updateAt
176 }
177
178 if (video.state.id === VideoState.TO_TRANSCODE && video.waitTranscoding === true) {
179 return $localize`Waiting transcoding`
180 }
181
182 if (video.state.id === VideoState.TO_TRANSCODE) {
183 return $localize`To transcode`
184 }
185
186 if (video.state.id === VideoState.TO_IMPORT) {
187 return $localize`To import`
188 }
189
190 return ''
191 }
192
193 loadActions () {
194 if (this.displayVideoActions) this.showActions = true
195
196 this.loadWatchLater()
197 }
198
199 onVideoBlocked () {
200 this.videoBlocked.emit()
201 }
202
203 onVideoUnblocked () {
204 this.videoUnblocked.emit()
205 }
206
207 onVideoRemoved () {
208 this.videoRemoved.emit()
209 }
210
211 onVideoAccountMuted () {
212 this.videoAccountMuted.emit()
213 }
214
215 isUserLoggedIn () {
216 return this.authService.isLoggedIn()
217 }
218
219 onWatchLaterClick (currentState: boolean) {
220 if (currentState === true) this.removeFromWatchLater()
221 else this.addToWatchLater()
222
223 this.inWatchLaterPlaylist = !currentState
224 }
225
226 addToWatchLater () {
227 const body = { videoId: this.video.id }
228
229 this.videoPlaylistService.addVideoInPlaylist(this.watchLaterPlaylist.id, body)
230 .subscribe(
231 res => {
232 this.watchLaterPlaylist.playlistElementId = res.videoPlaylistElement.id
233 }
234 )
235 }
236
237 removeFromWatchLater () {
238 this.videoPlaylistService.removeVideoFromPlaylist(this.watchLaterPlaylist.id, this.watchLaterPlaylist.playlistElementId, this.video.id)
239 .subscribe(
240 _ => { /* empty */ }
241 )
242 }
243
244 isWatchLaterPlaylistDisplayed () {
245 return this.displayVideoActions && this.isUserLoggedIn() && this.inWatchLaterPlaylist !== undefined
246 }
247
248 getClasses () {
249 return {
250 'display-as-row': this.displayAsRow
251 }
252 }
253
254 private setUpBy () {
255 const accountName = this.video.account.name
256
257 // If the video channel name is an UUID (not really displayable, we changed this behaviour in v1.0.0-beta.12)
258 // Or has not been customized (default created channel display name)
259 // -> Use the account name
260 if (
261 this.video.channel.displayName === `Default ${accountName} channel` ||
262 this.video.channel.displayName === `Main ${accountName} channel` ||
263 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}$/)
264 ) {
265 this.ownerDisplayType = 'account'
266 } else {
267 this.ownerDisplayType = 'videoChannel'
268 }
269 }
270
271 private loadWatchLater () {
272 if (!this.isUserLoggedIn() || this.inWatchLaterPlaylist !== undefined) return
273
274 this.authService.userInformationLoaded
275 .pipe(switchMap(() => this.videoPlaylistService.listenToVideoPlaylistChange(this.video.id)))
276 .subscribe(existResult => {
277 const watchLaterPlaylist = this.authService.getUser().specialPlaylists.find(p => p.type === VideoPlaylistType.WATCH_LATER)
278 const existsInWatchLater = existResult.find(r => r.playlistId === watchLaterPlaylist.id)
279 this.inWatchLaterPlaylist = false
280
281 this.watchLaterPlaylist = {
282 id: watchLaterPlaylist.id
283 }
284
285 if (existsInWatchLater) {
286 this.inWatchLaterPlaylist = true
287 this.watchLaterPlaylist.playlistElementId = existsInWatchLater.playlistElementId
288 }
289
290 this.cd.markForCheck()
291 })
292
293 this.videoPlaylistService.runPlaylistCheck(this.video.id)
294 }
295}