}
onSearch(search: Search) {
- console.log(search);
if (search.value !== '') {
this._router.navigate(['VideosList', { search: search.value, field: search.field }]);
} else {
--- /dev/null
+export type SortField = "name" | "-name"
+ | "duration" | "-duration"
+ | "createdDate" | "-createdDate";
--- /dev/null
+<select [(ngModel)]="currentSort" (ngModelChange)="onSortChange()">
+ <option *ngFor="let choice of choiceKeys" [value]="choice">
+ {{ getStringChoice(choice) }}
+ </option>
+</select>
--- /dev/null
+import { Component, Input, Output, EventEmitter } from '@angular/core';
+
+import { SortField } from './sort';
+
+@Component({
+ selector: 'my-video-sort',
+ // styleUrls: [ 'app/angular/videos/components/list/video-sort.component.css' ],
+ templateUrl: 'app/angular/videos/components/list/video-sort.component.html'
+})
+
+export class VideoSortComponent {
+ @Output() sort = new EventEmitter<any>();
+
+ @Input() currentSort: SortField;
+
+ sortChoices = {
+ 'name': 'Name - Asc',
+ '-name': "Name - Desc",
+ 'duration': "Duration - Asc",
+ '-duration': "Duration - Desc",
+ 'createdDate': "Created Date - Asc",
+ '-createdDate': "Created Date - Desc"
+ }
+
+ get choiceKeys() {
+ return Object.keys(this.sortChoices);
+ }
+
+ getStringChoice(choiceKey: SortField): string {
+ return this.sortChoices[choiceKey];
+ }
+
+ onSortChange() {
+ this.sort.emit(this.currentSort);
+ }
+}
+<div class="videos-info">
+ <span class="videos-total-results"> {{ pagination.total }}</span>
+ <my-video-sort [currentSort]="sort" (sort)="onSort($event)"></my-video-sort>
+</div>
+
<div class="videos-miniatures">
<div *ngIf="videos.length === 0">There is no video.</div>
import { Component, OnInit } from '@angular/core';
-import { ROUTER_DIRECTIVES, RouteParams } from '@angular/router-deprecated';
+import { ROUTER_DIRECTIVES, RouteParams, Router } from '@angular/router-deprecated';
import { PAGINATION_DIRECTIVES } from 'ng2-bootstrap/components/pagination';
import { Video } from '../../video';
import { VideoMiniatureComponent } from './video-miniature.component';
import { Search, SearchField } from '../../../app/search';
+import { VideoSortComponent } from './video-sort.component';
+import { SortField } from './sort';
@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, PAGINATION_DIRECTIVES, VideoMiniatureComponent ]
+ directives: [ ROUTER_DIRECTIVES, PAGINATION_DIRECTIVES, VideoMiniatureComponent, VideoSortComponent ]
})
export class VideosListComponent implements OnInit {
itemsPerPage: 9,
total: 0
}
+ sort: SortField;
private search: Search;
constructor(
private _authService: AuthService,
private _videosService: VideosService,
- private _routeParams: RouteParams
+ 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() {
let observable = null;
if (this.search.value !== null) {
- observable = this._videosService.searchVideos(this.search, this.pagination);
+ observable = this._videosService.searchVideos(this.search, this.pagination, this.sort);
} else {
- observable = this._videosService.getVideos(this.pagination);
+ observable = this._videosService.getVideos(this.pagination, this.sort);
}
observable.subscribe(
this.videos.splice(this.videos.indexOf(video), 1);
}
+ onSort(sort: SortField) {
+ this.sort = sort;
+ this._router.navigate(['VideosList', { sort: this.sort }]);
+ this.getVideos();
+ }
}
import { Video } from './video';
import { AuthService } from '../users/services/auth.service';
import { Search } from '../app/search';
+import { SortField } from './components/list/sort';
@Injectable()
export class VideosService {
constructor (private http: Http, private _authService: AuthService) {}
- getVideos(pagination: Pagination) {
+ getVideos(pagination: Pagination, sort: SortField) {
const params = this.createPaginationParams(pagination);
+
+ if (sort) params.set('sort', sort)
+
return this.http.get(this._baseVideoUrl, { search: params })
.map(res => res.json())
.map(this.extractVideos)
.catch(this.handleError);
}
- searchVideos(search: Search, pagination: Pagination) {
+ searchVideos(search: Search, pagination: Pagination, sort: SortField) {
const params = this.createPaginationParams(pagination);
+
if (search.field) params.set('field', search.field);
+ if (sort) params.set('sort', sort)
+
return this.http.get(this._baseVideoUrl + 'search/' + encodeURIComponent(search.value), { search: params })
.map(res => res.json())
.map(this.extractVideos)
<script src="/app/node_modules/webtorrent/webtorrent.min.js"></script>
+ <script src="/app/node_modules/ng2-bootstrap/bundles/ng2-bootstrap.min.js"></script>
+
<!-- 2. Configure SystemJS -->
<script src="/app/systemjs.config.js"></script>
<script>
"angular/users/models/user.ts",
"angular/users/services/auth.service.ts",
"angular/videos/components/add/videos-add.component.ts",
+ "angular/videos/components/list/sort.ts",
"angular/videos/components/list/video-miniature.component.ts",
+ "angular/videos/components/list/video-sort.component.ts",
"angular/videos/components/list/videos-list.component.ts",
"angular/videos/components/watch/videos-watch.component.ts",
"angular/videos/pagination.ts",