From 8e286cdca4ccfbd1ee5edc4b4446a6f81e7586a4 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Fri, 26 Feb 2021 14:08:09 +0100 Subject: add sort select to my videos, change default sort to -publishedAt fixes #3779 --- client/src/app/+my-library/my-videos/my-videos.component.html | 11 +++++++++++ client/src/app/+my-library/my-videos/my-videos.component.scss | 4 ++++ client/src/app/+my-library/my-videos/my-videos.component.ts | 7 ++++++- 3 files changed, 21 insertions(+), 1 deletion(-) (limited to 'client/src/app') diff --git a/client/src/app/+my-library/my-videos/my-videos.component.html b/client/src/app/+my-library/my-videos/my-videos.component.html index 6e6bf12f4..b0d49efa2 100644 --- a/client/src/app/+my-library/my-videos/my-videos.component.html +++ b/client/src/app/+my-library/my-videos/my-videos.component.html @@ -25,6 +25,17 @@ Clear filters + +
+ +
() getVideosObservableFunction = this.getVideosObservable.bind(this) + sort: VideoSortField = '-publishedAt' user: User @@ -80,6 +81,10 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook { this.videosSearchChanged.next() } + onChangeSortColumn () { + this.videosSelection.reloadVideos() + } + disableForReuse () { this.videosSelection.disableForReuse() } @@ -91,7 +96,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook { getVideosObservable (page: number, sort: VideoSortField) { const newPagination = immutableAssign(this.pagination, { currentPage: page }) - return this.videoService.getMyVideos(newPagination, sort, this.videosSearch) + return this.videoService.getMyVideos(newPagination, this.sort, this.videosSearch) .pipe( tap(res => this.pagination.totalItems = res.total) ) -- cgit v1.2.3