]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts
Playlist miniature consistent font size
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-custom-markup / peertube-custom-tags / videos-list-markup.component.ts
index 8d9e223daffdd10ec2f68e39e06c8046fdf3c8c4..d4402dd9f75d9d43bc0ac94450ffe35b073e6bce 100644 (file)
@@ -1,6 +1,6 @@
 import { Component, Input, OnInit } from '@angular/core'
 import { AuthService } from '@app/core'
-import { VideoSortField } from '@shared/models'
+import { VideoFilter, VideoSortField } from '@shared/models'
 import { Video, VideoService } from '../../shared-main'
 import { MiniatureDisplayOptions } from '../../shared-video-miniature'
 
@@ -14,17 +14,18 @@ import { MiniatureDisplayOptions } from '../../shared-video-miniature'
   styleUrls: [ 'videos-list-markup.component.scss' ]
 })
 export class VideosListMarkupComponent implements OnInit {
-  @Input() title: string
-  @Input() description: string
-  @Input() sort = '-publishedAt'
+  @Input() sort: string
   @Input() categoryOneOf: number[]
   @Input() languageOneOf: string[]
-  @Input() count = 10
+  @Input() count: number
+  @Input() onlyDisplayTitle: boolean
+  @Input() filter: VideoFilter
+  @Input() maxRows: number
 
   videos: Video[]
 
   displayOptions: MiniatureDisplayOptions = {
-    date: true,
+    date: false,
     views: true,
     by: true,
     avatar: false,
@@ -43,7 +44,23 @@ export class VideosListMarkupComponent implements OnInit {
     return this.auth.getUser()
   }
 
+  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 () {
+    if (this.onlyDisplayTitle) {
+      for (const key of Object.keys(this.displayOptions)) {
+        this.displayOptions[key] = false
+      }
+    }
+
     const options = {
       videoPagination: {
         currentPage: 1,
@@ -51,6 +68,7 @@ export class VideosListMarkupComponent implements OnInit {
       },
       categoryOneOf: this.categoryOneOf,
       languageOneOf: this.languageOneOf,
+      filter: this.filter,
       sort: this.sort as VideoSortField
     }