aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/video-list/video-recently-added.component.ts
blob: 6168fac9512b0a13a7fae01f28717826d5119acc (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 

                                                             
                                                                          

                                                               


                                       

                                                               
  
                                                                                      
                              
                                         
                                











                                                                    



                                                                  
import { Component, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { NotificationsService } from 'angular2-notifications'
import { AbstractVideoList } from '../../shared/video/abstract-video-list'
import { SortField } from '../../shared/video/sort-field.type'
import { VideoService } from '../../shared/video/video.service'

@Component({
  selector: 'my-videos-recently-added',
  styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
  templateUrl: '../../shared/video/abstract-video-list.html'
})
export class VideoRecentlyAddedComponent extends AbstractVideoList implements OnInit {
  titlePage = 'Recently added'
  currentRoute = '/videos/recently-added'
  sort: SortField = '-createdAt'

  constructor (protected router: Router,
               protected route: ActivatedRoute,
               protected notificationsService: NotificationsService,
               private videoService: VideoService) {
    super()
  }

  ngOnInit () {
    super.ngOnInit()
  }

  getVideosObservable () {
    return this.videoService.getVideos(this.pagination, this.sort)
  }
}