X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fangular%2Fvideos%2Fcomponents%2Flist%2Fvideos-list.component.ts;h=341afdaa683975765070aa3fe80d661ddc52666d;hb=322940742b4dca168de6dfed0d1ebf5926dab528;hp=6fc0c1f04b290f2f79ec271bace64ca04c59c082;hpb=46246b5f194caafba4e3a72e9365acd8b35785de;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/angular/videos/components/list/videos-list.component.ts b/client/angular/videos/components/list/videos-list.component.ts index 6fc0c1f04..341afdaa6 100644 --- a/client/angular/videos/components/list/videos-list.component.ts +++ b/client/angular/videos/components/list/videos-list.component.ts @@ -1,7 +1,10 @@ import { Component, OnInit } from '@angular/core'; import { ROUTER_DIRECTIVES, RouteParams } from '@angular/router-deprecated'; +import { PAGINATION_DIRECTIVES } from 'ng2-bootstrap/components/pagination'; + import { AuthService } from '../../../users/services/auth.service'; +import { Pagination } from '../../pagination'; import { User } from '../../../users/models/user'; import { VideosService } from '../../videos.service'; import { Video } from '../../video'; @@ -11,21 +14,26 @@ import { VideoMiniatureComponent } from './video-miniature.component'; selector: 'my-videos-list', styleUrls: [ 'app/angular/videos/components/list/videos-list.component.css' ], templateUrl: 'app/angular/videos/components/list/videos-list.component.html', - directives: [ ROUTER_DIRECTIVES, VideoMiniatureComponent ] + directives: [ ROUTER_DIRECTIVES, PAGINATION_DIRECTIVES, VideoMiniatureComponent ] }) export class VideosListComponent implements OnInit { user: User = null; videos: Video[] = []; + pagination: Pagination = { + currentPage: 1, + itemsPerPage: 9, + total: 0 + } private search: string; constructor( private _authService: AuthService, private _videosService: VideosService, - routeParams: RouteParams + private _routeParams: RouteParams ) { - this.search = routeParams.get('search'); + this.search = this._routeParams.get('search'); } ngOnInit() { @@ -40,13 +48,16 @@ export class VideosListComponent implements OnInit { let observable = null; if (this.search !== null) { - observable = this._videosService.searchVideos(this.search); + observable = this._videosService.searchVideos(this.search, this.pagination); } else { - observable = this._videosService.getVideos(); + observable = this._videosService.getVideos(this.pagination); } observable.subscribe( - videos => this.videos = videos, + ({ videos, totalVideos }) => { + this.videos = videos; + this.pagination.total = totalVideos; + }, error => alert(error) ); }