From 3d4e112d16471703f51a542c0cc6e73a6f5db628 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Tue, 2 Feb 2021 12:59:41 +0100 Subject: add best trending strategy based on Reddit's best inspired from https://www.reddit.com/r/changelog/comments/7spgg0/best_is_the_new_hotness/ this implementation only adds freshness, and doesn't personalize based on subscribed communities yet. --- .../+videos/video-list/trending/video-trending-header.component.ts | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'client/src/app/+videos/video-list/trending') diff --git a/client/src/app/+videos/video-list/trending/video-trending-header.component.ts b/client/src/app/+videos/video-list/trending/video-trending-header.component.ts index 33eaa2c1e..a4a1e358f 100644 --- a/client/src/app/+videos/video-list/trending/video-trending-header.component.ts +++ b/client/src/app/+videos/video-list/trending/video-trending-header.component.ts @@ -35,6 +35,13 @@ export class VideoTrendingHeaderComponent extends VideoListHeaderComponent imple super(data) this.buttons = [ + { + label: $localize`:A variant of Trending videos based on the number of recent interactions, minus user history:Best`, + iconName: 'award', + value: 'best', + tooltip: $localize`Videos totalizing the most interactions for recent videos, minus user history`, + hidden: true + }, { label: $localize`:A variant of Trending videos based on the number of recent interactions:Hot`, iconName: 'flame', -- cgit v1.2.3