Rewrite infinite scroll
[oweals/peertube.git] / client / src / app / shared / video / video-thumbnail.component.ts
1 import { Component, Input } from '@angular/core'
2 import { isInMobileView } from '@app/shared/misc/utils'
3 import { Video } from './video.model'
4
5 @Component({
6   selector: 'my-video-thumbnail',
7   styleUrls: [ './video-thumbnail.component.scss' ],
8   templateUrl: './video-thumbnail.component.html'
9 })
10 export class VideoThumbnailComponent {
11   @Input() video: Video
12   @Input() nsfw = false
13
14   getImageUrl () {
15     if (!this.video) return ''
16
17     if (isInMobileView()) {
18       return this.video.previewUrl
19     }
20
21     return this.video.thumbnailUrl
22   }
23 }