]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+videos/videos-routing.module.ts
Redesign account's channels page
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / videos-routing.module.ts
index e0e877fc673eba0c3781ccfa6f7ba9e01af5d5f7..16e3b9bb2670661fbb7fea7990f6df291f4d2784 100644 (file)
@@ -1,11 +1,11 @@
 import { NgModule } from '@angular/core'
 import { RouterModule, Routes } from '@angular/router'
+import { LoginGuard } from '@app/core'
 import { MetaGuard } from '@ngx-meta/core'
+import { VideoTrendingComponent } from './video-list'
 import { VideoOverviewComponent } from './video-list/overview/video-overview.component'
 import { VideoLocalComponent } from './video-list/video-local.component'
-import { VideoMostLikedComponent } from './video-list/video-most-liked.component'
 import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component'
-import { VideoTrendingComponent } from './video-list/video-trending.component'
 import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component'
 import { VideosComponent } from './videos.component'
 
@@ -20,7 +20,7 @@ const videosRoutes: Routes = [
         component: VideoOverviewComponent,
         data: {
           meta: {
-            title: 'Discover videos'
+            title: $localize`Discover videos`
           }
         }
       },
@@ -29,33 +29,20 @@ const videosRoutes: Routes = [
         component: VideoTrendingComponent,
         data: {
           meta: {
-            title: 'Trending videos'
-          },
-          reuse: {
-            enabled: true,
-            key: 'trending-videos-list'
+            title: $localize`Trending videos`
           }
         }
       },
       {
         path: 'most-liked',
-        component: VideoMostLikedComponent,
-        data: {
-          meta: {
-            title: 'Most liked videos'
-          },
-          reuse: {
-            enabled: true,
-            key: 'most-liked-videos-list'
-          }
-        }
+        redirectTo: 'trending?alg=most-liked'
       },
       {
         path: 'recently-added',
         component: VideoRecentlyAddedComponent,
         data: {
           meta: {
-            title: 'Recently added videos'
+            title: $localize`Recently added videos`
           },
           reuse: {
             enabled: true,
@@ -65,10 +52,11 @@ const videosRoutes: Routes = [
       },
       {
         path: 'subscriptions',
+        canActivate: [ LoginGuard ],
         component: VideoUserSubscriptionsComponent,
         data: {
           meta: {
-            title: 'Subscriptions'
+            title: $localize`Subscriptions`
           },
           reuse: {
             enabled: true,
@@ -81,7 +69,7 @@ const videosRoutes: Routes = [
         component: VideoLocalComponent,
         data: {
           meta: {
-            title: 'Local videos'
+            title: $localize`Local videos`
           },
           reuse: {
             enabled: true,
@@ -94,7 +82,7 @@ const videosRoutes: Routes = [
         loadChildren: () => import('@app/+videos/+video-edit/video-add.module').then(m => m.VideoAddModule),
         data: {
           meta: {
-            title: 'Upload a video'
+            title: $localize`Upload a video`
           }
         }
       },
@@ -103,7 +91,7 @@ const videosRoutes: Routes = [
         loadChildren: () => import('@app/+videos/+video-edit/video-update.module').then(m => m.VideoUpdateModule),
         data: {
           meta: {
-            title: 'Edit a video'
+            title: $localize`Edit a video`
           }
         }
       },