Add ability to sort by global views

This commit is contained in:
Chocobozzz 2022-04-15 15:14:32 +02:00
parent 2b0d17ccf4
commit db19581fb2
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 3 additions and 1 deletions

View file

@ -197,11 +197,12 @@ export class VideosListCommonPageComponent implements OnInit, OnDestroy, Disable
return
}
if ([ 'hot', 'trending', 'likes' ].includes(sanitizedSort)) {
if ([ 'hot', 'trending', 'likes', 'views' ].includes(sanitizedSort)) {
this.title = $localize`Trending`
if (sanitizedSort === 'hot') this.titleTooltip = $localize`Videos with the most interactions for recent videos`
if (sanitizedSort === 'likes') this.titleTooltip = $localize`Videos that have the most likes`
if (sanitizedSort === 'views') this.titleTooltip = undefined
if (sanitizedSort === 'trending') {
if (this.trendingDays === 1) this.titleTooltip = $localize`Videos with the most views during the last 24 hours`

View file

@ -48,6 +48,7 @@
<ng-option i18n *ngIf="isTrendingSortEnabled('most-viewed')" value="-trending">Sort by <strong>"Recent Views"</strong></ng-option>
<ng-option i18n *ngIf="isTrendingSortEnabled('hot')" value="-hot">Sort by <strong>"Hot"</strong></ng-option>
<ng-option i18n *ngIf="isTrendingSortEnabled('most-liked')" value="-likes">Sort by <strong>"Likes"</strong></ng-option>
<ng-option i18n value="-views">Sort by <strong>"Global Views"</strong></ng-option>
</ng-select>
</div>