aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list/my-videos.component.ts
blob: 648741a40b2cf3c00a9b18bc17388c07dfc63f39 (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
32
33
34
35
36
import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'

import { NotificationsService } from 'angular2-notifications'

import { AbstractVideoList } from './shared'
import { VideoService } from '../shared'

@Component({
  selector: 'my-videos',
  styleUrls: [ './shared/abstract-video-list.scss' ],
  templateUrl: './shared/abstract-video-list.html'
})
export class MyVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {

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

  ngOnInit () {
    super.ngOnInit()
  }

  ngOnDestroy () {
    this.subActivatedRoute.unsubscribe()
  }

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