aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommended-videos.component.ts
blob: aa4dd0ee28e956eb724ad82350377677b941557d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Component, Input, OnChanges } from '@angular/core'
import { Observable } from 'rxjs'
import { Video } from '@app/shared/video/video.model'
import { RecommendedVideosStore } from '@app/videos/recommendations/recommended-videos.store'
import { User } from '@app/shared'

@Component({
  selector: 'my-recommended-videos',
  templateUrl: './recommended-videos.component.html'
})
export class RecommendedVideosComponent implements OnChanges {
  @Input() inputVideo: Video
  @Input() user: User

  readonly hasVideos$: Observable<boolean>
  readonly videos$: Observable<Video[]>

  constructor (
    private store: RecommendedVideosStore
  ) {
    this.videos$ = this.store.recommendations$
    this.hasVideos$ = this.store.hasRecommendations$
  }

  public ngOnChanges (): void {
    if (this.inputVideo) {
      this.store.requestNewRecommendations(this.inputVideo.uuid)
    }
  }

}