PeerTube/client/src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.comp...

63 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-07-01 17:28:47 +02:00
import { finalize } from 'rxjs/operators'
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
2021-07-01 17:28:47 +02:00
import { AuthService, Notifier } from '@app/core'
import { Video, VideoService } from '../../shared-main'
import { MiniatureDisplayOptions } from '../../shared-video-miniature'
import { CustomMarkupComponent } from './shared'
2021-08-02 15:29:09 +02:00
import { FindInBulkService } from '@app/shared/shared-search'
/*
* Markup component that creates a video miniature only
*/
@Component({
selector: 'my-video-miniature-markup',
templateUrl: 'video-miniature-markup.component.html',
styleUrls: [ 'video-miniature-markup.component.scss' ]
})
export class VideoMiniatureMarkupComponent implements CustomMarkupComponent, OnInit {
@Input() uuid: string
2021-06-09 09:32:47 +02:00
@Input() onlyDisplayTitle: boolean
@Output() loaded = new EventEmitter<boolean>()
video: Video
displayOptions: MiniatureDisplayOptions = {
date: true,
views: true,
by: true,
avatar: false,
privacyLabel: false,
privacyText: false,
state: false,
blacklistInfo: false
}
constructor (
private auth: AuthService,
2021-08-02 15:29:09 +02:00
private findInBulk: FindInBulkService,
2021-07-01 17:28:47 +02:00
private notifier: Notifier
) { }
getUser () {
return this.auth.getUser()
}
ngOnInit () {
2021-06-09 09:32:47 +02:00
if (this.onlyDisplayTitle) {
for (const key of Object.keys(this.displayOptions)) {
this.displayOptions[key] = false
}
}
2021-08-02 15:29:09 +02:00
this.findInBulk.getVideo(this.uuid)
2021-07-01 17:28:47 +02:00
.pipe(finalize(() => this.loaded.emit(true)))
2021-08-17 11:27:47 +02:00
.subscribe({
next: video => this.video = video,
2021-08-17 11:27:47 +02:00
error: err => this.notifier.error($localize`Error in video miniature component: ${err.message}`)
})
}
}