]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts
Merge branch 'release/5.0.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-custom-markup / peertube-custom-tags / video-miniature-markup.component.ts
1 import { finalize } from 'rxjs/operators'
2 import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
3 import { AuthService, Notifier } from '@app/core'
4 import { FindInBulkService } from '@app/shared/shared-search'
5 import { Video } from '../../shared-main'
6 import { MiniatureDisplayOptions } from '../../shared-video-miniature'
7 import { CustomMarkupComponent } from './shared'
8
9 /*
10 * Markup component that creates a video miniature only
11 */
12
13 @Component({
14 selector: 'my-video-miniature-markup',
15 templateUrl: 'video-miniature-markup.component.html',
16 styleUrls: [ 'video-miniature-markup.component.scss' ],
17 changeDetection: ChangeDetectionStrategy.OnPush
18 })
19 export class VideoMiniatureMarkupComponent implements CustomMarkupComponent, OnInit {
20 @Input() uuid: string
21 @Input() onlyDisplayTitle: boolean
22 @Input() video: Video
23
24 @Output() loaded = new EventEmitter<boolean>()
25
26 displayOptions: MiniatureDisplayOptions = {
27 date: true,
28 views: true,
29 by: true,
30 avatar: false,
31 privacyLabel: false,
32 privacyText: false,
33 state: false,
34 blacklistInfo: false
35 }
36
37 constructor (
38 private auth: AuthService,
39 private findInBulk: FindInBulkService,
40 private notifier: Notifier
41 ) { }
42
43 getUser () {
44 return this.auth.getUser()
45 }
46
47 ngOnInit () {
48 if (this.onlyDisplayTitle) {
49 for (const key of Object.keys(this.displayOptions)) {
50 this.displayOptions[key] = false
51 }
52 }
53
54 if (this.video) return
55
56 this.findInBulk.getVideo(this.uuid)
57 .pipe(finalize(() => this.loaded.emit(true)))
58 .subscribe({
59 next: video => this.video = video,
60
61 error: err => this.notifier.error($localize`Error in video miniature component: ${err.message}`)
62 })
63 }
64 }