mirror of https://github.com/Chocobozzz/PeerTube
102 lines
2.5 KiB
TypeScript
102 lines
2.5 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Router, ROUTER_DIRECTIVES, RouteParams } from '@angular/router-deprecated';
|
|
|
|
import { PAGINATION_DIRECTIVES } from 'ng2-bootstrap/components/pagination';
|
|
|
|
import {
|
|
LoaderComponent,
|
|
Pagination,
|
|
SortField,
|
|
Video,
|
|
VideoService
|
|
} from '../shared/index';
|
|
import { Search, SearchField } from '../../shared/index';
|
|
import { AuthService, User } from '../../users/index';
|
|
import { VideoMiniatureComponent } from './video-miniature.component';
|
|
import { VideoSortComponent } from './video-sort.component';
|
|
|
|
@Component({
|
|
selector: 'my-videos-list',
|
|
styleUrls: [ 'client/app/videos/video-list/video-list.component.css' ],
|
|
templateUrl: 'client/app/videos/video-list/video-list.component.html',
|
|
directives: [ ROUTER_DIRECTIVES, PAGINATION_DIRECTIVES, VideoMiniatureComponent, VideoSortComponent, LoaderComponent ]
|
|
})
|
|
|
|
export class VideoListComponent implements OnInit {
|
|
user: User = null;
|
|
videos: Video[] = [];
|
|
pagination: Pagination = {
|
|
currentPage: 1,
|
|
itemsPerPage: 9,
|
|
total: 0
|
|
};
|
|
sort: SortField;
|
|
loading = false;
|
|
|
|
private search: Search;
|
|
|
|
constructor(
|
|
private authService: AuthService,
|
|
private videoService: VideoService,
|
|
private routeParams: RouteParams,
|
|
private router: Router
|
|
) {
|
|
this.search = {
|
|
value: this.routeParams.get('search'),
|
|
field: <SearchField>this.routeParams.get('field')
|
|
};
|
|
|
|
this.sort = <SortField>this.routeParams.get('sort') || '-createdDate';
|
|
}
|
|
|
|
ngOnInit() {
|
|
if (this.authService.isLoggedIn()) {
|
|
this.user = User.load();
|
|
}
|
|
|
|
this.getVideos();
|
|
}
|
|
|
|
getVideos() {
|
|
this.loading = true;
|
|
this.videos = [];
|
|
|
|
let observable = null;
|
|
|
|
if (this.search.value !== null) {
|
|
observable = this.videoService.searchVideos(this.search, this.pagination, this.sort);
|
|
} else {
|
|
observable = this.videoService.getVideos(this.pagination, this.sort);
|
|
}
|
|
|
|
observable.subscribe(
|
|
({ videos, totalVideos }) => {
|
|
this.videos = videos;
|
|
this.pagination.total = totalVideos;
|
|
this.loading = false;
|
|
},
|
|
error => alert(error)
|
|
);
|
|
}
|
|
|
|
onRemoved(video: Video) {
|
|
this.videos.splice(this.videos.indexOf(video), 1);
|
|
}
|
|
|
|
onSort(sort: SortField) {
|
|
this.sort = sort;
|
|
|
|
const params: any = {
|
|
sort: this.sort
|
|
};
|
|
|
|
if (this.search.value) {
|
|
params.search = this.search.value;
|
|
params.field = this.search.field;
|
|
}
|
|
|
|
this.router.navigate(['VideosList', params]);
|
|
this.getVideos();
|
|
}
|
|
}
|