PeerTube/client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.componen...

86 lines
2.1 KiB
TypeScript
Raw Normal View History

import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
import { AuthService } from '@app/core'
2021-06-09 09:32:47 +02:00
import { VideoFilter, VideoSortField } from '@shared/models'
import { Video, VideoService } from '../../shared-main'
import { MiniatureDisplayOptions } from '../../shared-video-miniature'
import { CustomMarkupComponent } from './shared'
/*
* Markup component list videos depending on criterias
*/
@Component({
selector: 'my-videos-list-markup',
templateUrl: 'videos-list-markup.component.html',
styleUrls: [ 'videos-list-markup.component.scss' ]
})
export class VideosListMarkupComponent implements CustomMarkupComponent, OnInit {
2021-06-09 09:32:47 +02:00
@Input() sort: string
@Input() categoryOneOf: number[]
@Input() languageOneOf: string[]
2021-06-09 09:32:47 +02:00
@Input() count: number
@Input() onlyDisplayTitle: boolean
@Input() filter: VideoFilter
2021-06-09 10:59:20 +02:00
@Input() maxRows: number
@Output() loaded = new EventEmitter<boolean>()
videos: Video[]
displayOptions: MiniatureDisplayOptions = {
2021-06-09 09:32:47 +02:00
date: false,
views: true,
by: true,
avatar: false,
privacyLabel: false,
privacyText: false,
state: false,
blacklistInfo: false
}
constructor (
private auth: AuthService,
private videoService: VideoService
) { }
getUser () {
return this.auth.getUser()
}
2021-06-09 10:59:20 +02:00
limitRowsStyle () {
if (this.maxRows <= 0) return {}
return {
'grid-template-rows': `repeat(${this.maxRows}, 1fr)`,
'grid-auto-rows': '0', // Set height to 0 for autogenerated grid rows
'overflow-y': 'hidden' // Hide grid items that overflow
}
}
ngOnInit () {
2021-06-09 09:32:47 +02:00
if (this.onlyDisplayTitle) {
for (const key of Object.keys(this.displayOptions)) {
this.displayOptions[key] = false
}
}
const options = {
videoPagination: {
currentPage: 1,
itemsPerPage: this.count
},
categoryOneOf: this.categoryOneOf,
languageOneOf: this.languageOneOf,
2021-06-09 09:32:47 +02:00
filter: this.filter,
sort: this.sort as VideoSortField
}
this.videoService.getVideos(options)
.subscribe({
next: ({ data }) => this.videos = data,
complete: () => this.loaded.emit(true)
})
}
}